/* ==========================================================================
   W3P — World Wide Web Professionals
   Premium SaaS design system
   ========================================================================== */

:root {
  /* Brand palette */
  --c-primary: #4f46e5;
  --c-primary-dark: #4338ca;
  --c-primary-light: #6d6af8;
  --c-violet: #7c3aed;
  --c-cyan: #06b6d4;
  --c-teal: #14b8a6;
  --c-accent: #f97316;

  /* Gradient */
  --grad-brand: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #9333ea 100%);
  --grad-soft: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  --grad-text: linear-gradient(120deg, #4f46e5 0%, #7c3aed 60%, #0ea5e9 100%);

  /* Neutrals */
  --c-bg: #ffffff;
  --c-bg-soft: #f7f8fc;
  --c-bg-alt: #0b1220;
  --c-surface: #ffffff;
  --c-border: #e8eaf2;
  --c-border-strong: #d8dbe8;

  --c-text: #0b1220;
  --c-text-2: #4b5565;
  --c-text-3: #7b8497;
  --c-text-invert: #ffffff;
  --c-text-invert-muted: #a5b0c8;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06), 0 1px 3px rgba(11, 18, 32, 0.04);
  --shadow-md: 0 6px 16px -4px rgba(11, 18, 32, 0.1), 0 2px 6px rgba(11, 18, 32, 0.05);
  --shadow-lg: 0 24px 48px -16px rgba(11, 18, 32, 0.18), 0 8px 20px -8px rgba(11, 18, 32, 0.08);
  --shadow-brand: 0 12px 32px -10px rgba(79, 70, 229, 0.55);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Typography */
  --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s ease;
  --t-med: 0.3s var(--ease);
  --t-slow: 0.55s var(--ease);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: rgba(79, 70, 229, 0.18);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--c-text-2);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--c-text-2);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.16);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}

.section--soft {
  background: var(--c-bg-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head .lead {
  max-width: 620px;
  margin: 0 auto;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.section-head--left .lead {
  margin: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--r-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  position: relative;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(79, 70, 229, 0.7);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  color: var(--c-text);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border-strong);
}

.btn-ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost--light {
  color: var(--c-text-invert);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.btn-ghost--light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 18px 34px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med), background var(--t-med);
}

.site-header.is-scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 8px 24px -16px rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-brand);
  box-shadow: var(--shadow-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 20% 0%, rgba(255, 255, 255, 0.4), transparent 60%);
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text-3);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-2);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.main-nav a:hover {
  color: var(--c-primary);
  background: rgba(79, 70, 229, 0.06);
}

.main-nav a.is-active {
  color: var(--c-primary);
  font-weight: 600;
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-border-strong);
  background: var(--c-surface);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--c-text);
  transition: transform var(--t-med), opacity var(--t-med);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--t-med), opacity var(--t-med), visibility var(--t-med);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a.mobile-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-text);
  padding: 16px 4px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--t-fast);
}

.mobile-menu a.mobile-link:hover,
.mobile-menu a.mobile-link.is-active {
  color: var(--c-primary);
}

.mobile-menu a.mobile-link.is-active {
  color: var(--c-primary);
}

.mobile-menu .mobile-cta {
  margin-top: 28px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 6vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 15% -10%, rgba(79, 70, 229, 0.14), transparent 60%),
    radial-gradient(800px 420px at 90% 5%, rgba(124, 58, 237, 0.12), transparent 60%),
    radial-gradient(700px 400px at 50% 110%, rgba(6, 182, 212, 0.1), transparent 60%),
    var(--c-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 26px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.05); }
}

.hero h1 {
  margin-bottom: 22px;
}

.hero .lead {
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(1) { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #06b6d4, #14b8a6); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #f97316, #e11d48); }
.avatar-stack span:nth-child(4) { background: linear-gradient(135deg, #0ea5e9, #4f46e5); }

.hero-trust p {
  font-size: 0.85rem;
  color: var(--c-text-3);
  line-height: 1.45;
}

.hero-trust p strong {
  color: var(--c-text);
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #fbfbfe);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 18px 18px 22px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform var(--t-slow);
}

.dashboard-card:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

.dash-topbar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e5f0;
}

.dash-topbar i:nth-child(1) { background: #fda4af; }
.dash-topbar i:nth-child(2) { background: #fcd34d; }
.dash-topbar i:nth-child(3) { background: #86efac; }

.dash-topbar .dash-url {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--c-text-3);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.dash-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}

.dash-chart {
  background: var(--grad-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dash-chart-label {
  font-size: 0.7rem;
  color: var(--c-text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: auto;
}

.dash-chart .big-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.1;
}

.dash-chart .big-num small {
  font-size: 0.9rem;
  color: var(--c-teal);
  font-weight: 700;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  margin-top: 10px;
}

.bars span {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #6d6af8, #4f46e5);
  opacity: 0.85;
  animation: grow 0.9s var(--ease) backwards;
}

.bars span:nth-child(1) { height: 42%; animation-delay: 0.05s; }
.bars span:nth-child(2) { height: 68%; animation-delay: 0.12s; }
.bars span:nth-child(3) { height: 52%; animation-delay: 0.19s; }
.bars span:nth-child(4) { height: 84%; animation-delay: 0.26s; }
.bars span:nth-child(5) { height: 64%; animation-delay: 0.33s; }
.bars span:nth-child(6) { height: 96%; animation-delay: 0.4s; }

@keyframes grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}

.dash-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}

.dash-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}

.dash-item .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dash-item .ic svg {
  width: 17px;
  height: 17px;
}

.ic-violet { background: rgba(79, 70, 229, 0.12); color: var(--c-primary); }
.ic-cyan { background: rgba(6, 182, 212, 0.12); color: var(--c-cyan); }
.ic-teal { background: rgba(20, 184, 166, 0.12); color: var(--c-teal); }

.dash-item .meta {
  flex: 1;
  min-width: 0;
}

.dash-item .meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
}

.dash-item .meta small {
  font-size: 0.72rem;
  color: var(--c-text-3);
}

.dash-item .status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.status-ok { background: rgba(20, 184, 166, 0.12); color: var(--c-teal); }
.status-run { background: rgba(79, 70, 229, 0.12); color: var(--c-primary); }

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.float-chip .fc-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.float-chip .fc-ic svg {
  width: 19px;
  height: 19px;
}

.float-chip b {
  font-family: var(--font-display);
  font-size: 0.85rem;
  display: block;
  color: var(--c-text);
}

.float-chip small {
  font-size: 0.72rem;
  color: var(--c-text-3);
}

.chip-1 {
  top: -22px;
  left: -18px;
  animation-delay: 0s;
}

.chip-2 {
  bottom: 34px;
  right: -24px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-1 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 70%);
}

/* ==========================================================================
   Logo bar
   ========================================================================== */

.logo-bar {
  padding: 28px 0 64px;
  border-bottom: 1px solid var(--c-border);
}

.logo-bar p {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 28px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-text-3);
  opacity: 0.7;
  transition: opacity var(--t-fast), color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}

.logo-item svg {
  width: 22px;
  height: 22px;
}

.logo-item:hover {
  opacity: 1;
  color: var(--c-text);
  transform: translateY(-2px);
}

/* ==========================================================================
   Features
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--grad-soft);
  border: 1px solid rgba(79, 70, 229, 0.14);
  color: var(--c-primary);
  transition: transform var(--t-med);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   Products preview
   ========================================================================== */

.products-showcase {
  position: relative;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text-2);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border-strong);
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: all var(--t-med);
}

.product-tab svg {
  width: 17px;
  height: 17px;
}

.product-tab:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
}

.product-tab.is-active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.product-panel {
  display: none;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

.product-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: fadeUp 0.55s var(--ease);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 16px;
}

.product-copy p {
  margin-bottom: 22px;
}

.product-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.product-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--c-text-2);
}

.product-checklist li svg {
  width: 19px;
  height: 19px;
  color: var(--c-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-visual {
  position: relative;
}

/* App mockup */
.app-mockup {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  overflow: hidden;
}

.app-mockup .mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.app-mockup .mock-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2e5f0;
}

.app-mockup .mock-top i:nth-child(1) { background: #fda4af; }
.app-mockup .mock-top i:nth-child(2) { background: #fcd34d; }
.app-mockup .mock-top i:nth-child(3) { background: #86efac; }

.mock-body {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  min-height: 260px;
}

.mock-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-side i {
  height: 30px;
  border-radius: 8px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
}

.mock-side i:first-child {
  background: var(--grad-brand);
  border-color: transparent;
}

.mock-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-card.wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.mock-card i {
  height: 10px;
  border-radius: 5px;
  background: var(--c-bg-soft);
  display: block;
}

.mock-card i.sm { width: 55%; }
.mock-card i.md { width: 75%; }
.mock-card i.lg { width: 90%; }

.mock-card .mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: 4px;
}

.mock-card .mini-chart span {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, #6d6af8, #4f46e5);
  opacity: 0.8;
}

.mock-card .mini-chart span:nth-child(1) { height: 40%; }
.mock-card .mini-chart span:nth-child(2) { height: 70%; }
.mock-card .mini-chart span:nth-child(3) { height: 50%; }
.mock-card .mini-chart span:nth-child(4) { height: 90%; }
.mock-card .mini-chart span:nth-child(5) { height: 65%; }

.visual-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-bg-alt);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-tag svg {
  width: 15px;
  height: 15px;
  color: var(--c-cyan);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-section {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(124, 58, 237, 0.25), transparent 60%),
    linear-gradient(180deg, var(--c-bg-alt), #0d1526);
  color: #fff;
}

.stats-section .section-head h2 {
  color: #fff;
}

.stats-section .section-head .lead {
  color: var(--c-text-invert-muted);
}

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

.stat-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--c-text-invert-muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-card .step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  background: rgba(79, 70, 229, 0.1);
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.process-card .step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(79, 70, 229, 0.14);
  display: grid;
  place-items: center;
  color: var(--c-primary);
  margin-bottom: 18px;
}

.process-card .step-icon svg {
  width: 24px;
  height: 24px;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.process-card p {
  font-size: 0.9rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

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

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
}

.testimonial-card .stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  flex: 1;
}

.testimonial-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.6;
  color: var(--c-primary-light);
  opacity: 0.4;
  margin-bottom: 10px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}

.t-author .t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.t-author b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--c-text);
}

.t-author small {
  font-size: 0.8rem;
  color: var(--c-text-3);
}

.ta-1 { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.ta-2 { background: linear-gradient(135deg, #06b6d4, #14b8a6); }
.ta-3 { background: linear-gradient(135deg, #f97316, #e11d48); }
.ta-4 { background: linear-gradient(135deg, #0ea5e9, #4f46e5); }
.ta-5 { background: linear-gradient(135deg, #7c3aed, #e11d48); }
.ta-6 { background: linear-gradient(135deg, #14b8a6, #0ea5e9); }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(500px 300px at 95% 100%, rgba(6, 182, 212, 0.3), transparent 55%);
  pointer-events: none;
}

.cta-banner .container-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn-white {
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
  transform: translateY(-2px);
  background: #f1f0ff;
  color: var(--c-primary-dark);
  box-shadow: 0 18px 36px -12px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--c-bg-alt);
  color: var(--c-text-invert-muted);
  padding-top: clamp(56px, 7vw, 88px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-mark {
  box-shadow: 0 12px 28px -10px rgba(79, 70, 229, 0.6);
}

.footer-brand p {
  margin: 20px 0 24px;
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--c-text-invert-muted);
  transition: all var(--t-fast);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--c-text-invert-muted);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  margin-left: -22px;
  transition: all var(--t-fast);
}

.footer-col a:hover {
  color: #fff;
  padding-left: 22px;
}

.footer-col a:hover svg {
  opacity: 1;
  margin-left: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--c-primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--c-text-invert-muted);
  transition: color var(--t-fast);
}

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

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 20% 0%, rgba(79, 70, 229, 0.12), transparent 60%),
    radial-gradient(700px 380px at 85% 10%, rgba(6, 182, 212, 0.1), transparent 60%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero .lead {
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-text-3);
  margin-top: 24px;
}

.breadcrumb a {
  color: var(--c-primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   About page
   ========================================================================== */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.mission-copy .lead {
  margin-bottom: 20px;
}

.mission-copy p + p {
  margin-top: 16px;
}

.mission-visual {
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}

.value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(79, 70, 229, 0.14);
  display: grid;
  place-items: center;
  color: var(--c-primary);
  margin-bottom: 20px;
}

.value-card .value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92rem;
}

/* Journey timeline */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 8px 0 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary-light), rgba(124, 58, 237, 0.2));
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 72px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 15px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--c-primary);
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.12);
}

.timeline-item .t-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
}

/* ==========================================================================
   Products page
   ========================================================================== */

.product-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: 32px;
  transition: box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  overflow: hidden;
}

.product-full-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}

.product-full-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
}

.product-full-card:nth-child(even) .product-full-visual {
  order: 2;
}

.product-full-card:nth-child(even) .product-full-copy {
  order: 1;
}

.product-full-copy .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(79, 70, 229, 0.1);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.product-full-copy .product-kicker svg {
  width: 15px;
  height: 15px;
}

.product-full-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 14px;
}

.product-full-copy > p {
  margin-bottom: 22px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.product-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--c-border);
}

.contact-info-item:last-of-type {
  border-bottom: 1px solid var(--c-border);
}

.contact-info-item .ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(79, 70, 229, 0.14);
  display: grid;
  place-items: center;
  color: var(--c-primary);
  flex-shrink: 0;
}

.contact-info-item .ci-icon svg {
  width: 21px;
  height: 21px;
}

.contact-info-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--c-text);
  margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.92rem;
  color: var(--c-text-2);
}

.contact-info-item a:hover {
  color: var(--c-primary);
}

.response-card {
  background:
    radial-gradient(500px 260px at 90% 0%, rgba(124, 58, 237, 0.2), transparent 60%),
    var(--c-bg-alt);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff;
}

.response-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.response-card p {
  color: var(--c-text-invert-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.response-card .response-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.response-card .response-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--c-text-invert-muted);
}

.response-card .response-list li svg {
  width: 20px;
  height: 20px;
  color: var(--c-teal);
  flex-shrink: 0;
}

/* Form */
.contact-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
}

.form-field label span {
  color: #ef4444;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--c-text-3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237b8497' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--c-text-3);
  margin-top: 4px;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: #0f766e;
}

.form-success.is-visible {
  display: flex;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-error-msg {
  font-size: 0.8rem;
  color: #ef4444;
  min-height: 1.2em;
}

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-status {
  font-size: 0.88rem;
  color: var(--c-text-3);
}

.form-status.error {
  color: #ef4444;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item.is-open {
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--grad-soft);
  border: 1px solid rgba(79, 70, 229, 0.14);
  display: grid;
  place-items: center;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: transform var(--t-med), background var(--t-med), color var(--t-med);
}

.faq-question .faq-icon svg {
  width: 15px;
  height: 15px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad-brand);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Utilities & form helpers
   ========================================================================== */

.spin {
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.optional {
  font-size: 0.8rem;
  color: var(--c-text-3);
  font-weight: 400;
}

.skip-link:focus {
  left: 12px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

  .product-panel.is-active {
    grid-template-columns: 1fr;
  }

  .product-panel .product-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .product-full-card {
    grid-template-columns: 1fr;
  }

  .product-full-card:nth-child(even) .product-full-visual,
  .product-full-card:nth-child(even) .product-full-copy {
    order: initial;
  }

  .product-full-card .product-full-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav,
  .header-actions .btn-nav-cta {
    display: none;
  }

  .chip-1 {
    left: -8px;
    top: -16px;
  }

  .chip-2 {
    right: -8px;
  }

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

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

  .form-field.full {
    grid-column: auto;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-status {
    text-align: center;
  }
}

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

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

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

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

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

  .brand-tagline {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .product-tab {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Nav dropdown submenu (Products)
   ========================================================================== */

.nav-drop {
  position: relative;
}

.nav-drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-drop > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.nav-link .chev {
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast);
}

.nav-drop:hover > .nav-link .chev,
.nav-drop:focus-within > .nav-link .chev,
.nav-drop.is-open > .nav-link .chev {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 250px;
  width: max-content;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: 0 24px 48px -16px rgba(11, 18, 32, 0.2), 0 8px 20px -12px rgba(11, 18, 32, 0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med);
  z-index: 300;
}

.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 26px;
  border: 8px solid transparent;
  border-bottom-color: var(--c-border);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 12px !important;
  border-radius: var(--r-sm) !important;
  font-size: 0.9rem !important;
  white-space: nowrap;
  line-height: 1.35;
}

.nav-drop-menu a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--grad-brand);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.nav-drop-menu a:hover {
  background: rgba(79, 70, 229, 0.07) !important;
  color: var(--c-primary) !important;
  padding-left: 16px !important;
}

.nav-drop-menu a:hover::before {
  transform: scale(1.25);
}

.nav-drop-menu a.is-active {
  color: var(--c-primary);
  font-weight: 600;
  background: rgba(79, 70, 229, 0.06);
}

/* Mobile submenu */
.mobile-drop {
  border-bottom: 1px solid var(--c-border);
}

.mobile-drop > .mobile-link {
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-drop > .mobile-link .chev {
  width: 18px;
  height: 18px;
  color: var(--c-text-3);
  transition: transform var(--t-med);
}

.mobile-drop.is-open > .mobile-link .chev {
  transform: rotate(180deg);
}

.mobile-drop.is-open > .mobile-link {
  color: var(--c-primary);
}

.mobile-sub a.mobile-sub-link.is-active {
  color: var(--c-primary);
  font-weight: 700;
}

.mobile-sub {
  margin: 0 0 10px;
  padding: 6px 0 10px 18px;
  border-left: 2px solid rgba(79, 70, 229, 0.35);
}

.mobile-sub-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 6px;
}

.mobile-sub a.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--c-text-2);
  padding: 10px 4px;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.mobile-sub a.mobile-sub-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--grad-brand);
  flex-shrink: 0;
}

.mobile-sub a.mobile-sub-link:hover {
  color: var(--c-primary);
  padding-left: 10px;
}

/* ==========================================================================
   Products page — card grid
   ========================================================================== */

.products-page-section {
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(79, 70, 229, 0.1), transparent 60%),
    radial-gradient(800px 420px at 95% 20%, rgba(6, 182, 212, 0.08), transparent 60%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  --pc-accent: #4f46e5;
  --pc-accent-2: #7c3aed;
  --pc-soft: #eef2ff;
  --pc-soft-2: #f5f3ff;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.35);
}

.product-card:hover .pc-art-window {
  transform: perspective(1000px) rotateX(1.5deg) translateY(-3px);
}

/* accent variants */
.pc-accent-inv { --pc-accent: #06b6d4; --pc-accent-2: #2563eb; --pc-soft: #ecfeff; --pc-soft-2: #eff6ff; }
.pc-accent-dol { --pc-accent: #f43f5e; --pc-accent-2: #f59e0b; --pc-soft: #fff1f2; --pc-soft-2: #fffbeb; }
.pc-accent-tim { --pc-accent: #f59e0b; --pc-accent-2: #ef4444; --pc-soft: #fffbeb; --pc-soft-2: #fef2f2; }
.pc-accent-pha { --pc-accent: #10b981; --pc-accent-2: #0d9488; --pc-soft: #ecfdf5; --pc-soft-2: #f0fdfa; }
.pc-accent-lux { --pc-accent: #8b5cf6; --pc-accent-2: #e11d48; --pc-soft: #f5f3ff; --pc-soft-2: #fdf2f8; }

/* Art / visual area */
.pc-art {
  position: relative;
  padding: 26px 20px 0;
  background: linear-gradient(160deg, var(--pc-soft), var(--pc-soft-2));
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}

.pc-art::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pc-accent), transparent 70%);
  opacity: 0.16;
  pointer-events: none;
}

.pc-art-window {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -10px 30px -18px rgba(11, 18, 32, 0.3);
  overflow: hidden;
  transition: transform var(--t-med);
}

.pc-art-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--c-border);
  background: #fff;
}

.pc-art-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pc-art-top i:nth-child(1) { background: #fda4af; }
.pc-art-top i:nth-child(2) { background: #fcd34d; }
.pc-art-top i:nth-child(3) { background: #86efac; }

.pc-art-top .pc-art-url {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--c-text-3);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-weight: 500;
}

.pc-art-body {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #fbfbff, #fff);
  min-height: 172px;
}

.pc-art-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-art-side i {
  height: 26px;
  border-radius: 7px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
}

.pc-art-side i:first-child {
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
  border-color: transparent;
  opacity: 0.9;
}

.pc-art-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-art-main .pc-art-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-art-main .pc-art-row i {
  height: 9px;
  border-radius: 4px;
  background: var(--c-bg-soft);
  flex: 1;
}

.pc-art-main .pc-art-row i.short { flex: 0 0 46%; }
.pc-art-main .pc-art-row i.tint { background: linear-gradient(90deg, var(--pc-accent), var(--pc-accent-2)); opacity: 0.5; }

.pc-art-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  color: var(--pc-accent-2);
  align-self: flex-start;
  white-space: nowrap;
}

.pc-art-badge svg {
  width: 12px;
  height: 12px;
}

.pc-art-badge .qr-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: 14px;
  height: 14px;
}

.pc-art-badge .qr-mini i {
  background: var(--c-text);
  border-radius: 0;
}

.pc-art-badge .qr-mini i.on {
  background: transparent;
}

/* floating chip on art */
.pc-art-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  animation: float 5s ease-in-out infinite;
}

.pc-art-chip svg {
  width: 13px;
  height: 13px;
  color: var(--pc-accent-2);
}

.pc-art-chip.chip-a { top: 16px; right: 18px; }
.pc-art-chip.chip-b { bottom: 26px; left: 12px; animation-delay: 1.4s; }

/* Card body */
.pc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 28px;
}

.pc-cat {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-accent-2);
  background: var(--pc-soft);
  border: 1px solid color-mix(in srgb, var(--pc-accent) 22%, transparent);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.pc-cat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
}

.pc-body h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.pc-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-accent-2);
  margin-bottom: 12px;
}

.pc-desc {
  font-size: 0.94rem;
  line-height: 1.68;
  margin-bottom: 22px;
  flex: 1;
}

.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--pc-accent-2);
  transition: gap var(--t-fast), color var(--t-fast);
}

.pc-link svg {
  width: 17px;
  height: 17px;
}

.pc-link:hover {
  gap: 12px;
  color: var(--pc-accent);
}

/* ==========================================================================
   Products page — detail sections (anchor targets)
   ========================================================================== */

.product-detail {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: 32px;
  transition: box-shadow var(--t-med), border-color var(--t-med);
}

.product-detail-inner:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}

.product-detail-inner:nth-child(even) .pd-visual {
  order: 2;
}

.product-detail-inner:nth-child(even) .pd-copy {
  order: 1;
}

.pd-visual {
  position: relative;
}

.pd-visual .app-mockup {
  box-shadow: var(--shadow-md);
}

.pd-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 10px;
}

.pd-copy .pd-subtitle {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 14px;
}

.pd-copy p {
  margin-bottom: 20px;
}

.pd-copy .product-checklist {
  margin-bottom: 26px;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Products page responsive
   ========================================================================== */

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

  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .product-detail-inner:nth-child(even) .pd-visual,
  .product-detail-inner:nth-child(even) .pd-copy {
    order: initial;
  }

  .product-detail-inner .pd-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

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

  .pc-art-chip.chip-a {
    right: 12px;
  }

  .pc-art-chip.chip-b {
    left: 12px;
  }
}

@media (max-width: 768px) {
  .nav-drop-menu {
    display: none;
  }

  .mobile-sub {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0 0 0 18px;
    transition: max-height var(--t-med), opacity var(--t-med), padding var(--t-med), visibility var(--t-med);
  }

  .mobile-drop.is-open .mobile-sub {
    max-height: 620px;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    margin: 0 0 10px;
    padding: 6px 0 10px 18px;
  }
}

/* ==========================================================================
   Home — mini product preview grid
   ========================================================================== */

.mini-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-product-card {
  --mp-a: #4f46e5;
  --mp-a2: #7c3aed;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.mini-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--mp-a) 45%, var(--c-border));
}

.mini-product-card.mp-inv { --mp-a: #06b6d4; --mp-a2: #2563eb; }
.mini-product-card.mp-dol { --mp-a: #f43f5e; --mp-a2: #f59e0b; }
.mini-product-card.mp-tim { --mp-a: #f59e0b; --mp-a2: #ef4444; }
.mini-product-card.mp-pha { --mp-a: #10b981; --mp-a2: #0d9488; }
.mini-product-card.mp-lux { --mp-a: #8b5cf6; --mp-a2: #e11d48; }

.mp-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--mp-a), var(--mp-a2));
  color: #fff;
  box-shadow: 0 10px 20px -10px var(--mp-a);
}

.mp-icon svg {
  width: 24px;
  height: 24px;
}

.mp-body {
  flex: 1;
  min-width: 0;
}

.mp-body b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 2px;
}

.mp-body small {
  display: block;
  font-size: 0.8rem;
  color: var(--c-text-3);
}

.mp-arrow {
  width: 18px;
  height: 18px;
  color: var(--c-text-3);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
}

.mini-product-card:hover .mp-arrow {
  transform: translateX(4px);
  color: var(--mp-a2);
}

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

@media (max-width: 640px) {
  .mini-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Product detail pages
   ========================================================================== */

.pp-page {
  --pp-a: #4f46e5;
  --pp-a2: #7c3aed;
  --pp-soft: #eef2ff;
  --pp-soft2: #f5f3ff;
}

.pp-inv  { --pp-a: #06b6d4; --pp-a2: #2563eb; --pp-soft: #ecfeff; --pp-soft2: #eff6ff; }
.pp-sweet{ --pp-a: #f43f5e; --pp-a2: #f59e0b; --pp-soft: #fff1f2; --pp-soft2: #fffbeb; }
.pp-tim  { --pp-a: #f59e0b; --pp-a2: #ef4444; --pp-soft: #fffbeb; --pp-soft2: #fef2f2; }
.pp-pha  { --pp-a: #10b981; --pp-a2: #0d9488; --pp-soft: #ecfdf5; --pp-soft2: #f0fdfa; }
.pp-lux  { --pp-a: #8b5cf6; --pp-a2: #e11d48; --pp-soft: #f5f3ff; --pp-soft2: #fdf2f8; }

.pp-hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 18% 0%, color-mix(in srgb, var(--pp-a) 14%, transparent), transparent 60%),
    radial-gradient(700px 380px at 85% 12%, color-mix(in srgb, var(--pp-a2) 12%, transparent), transparent 60%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.pp-hero .pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pp-a2);
  background: var(--pp-soft);
  border: 1px solid color-mix(in srgb, var(--pp-a) 22%, transparent);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.pp-hero .pp-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pp-a), var(--pp-a2));
}

.pp-hero h1 {
  margin-bottom: 18px;
}

.pp-hero .lead {
  max-width: 700px;
  margin: 0 auto;
}

.pp-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pp-hero-mockup {
  margin-top: clamp(36px, 5vw, 56px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.pp-hero-mockup .app-mockup {
  box-shadow: var(--shadow-lg);
}

.pp-hero-mockup::before {
  content: "";
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(480px 220px at 50% 0%, color-mix(in srgb, var(--pp-a) 18%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pp-hero-mockup .app-mockup {
  position: relative;
  z-index: 1;
}

.pp-breadcrumb {
  margin-top: 22px;
}

.pp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pp-a2);
  background: var(--pp-soft);
  border: 1px solid color-mix(in srgb, var(--pp-a) 22%, transparent);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.pp-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pp-a), var(--pp-a2));
}

.pp-feature-icon {
  background: var(--pp-soft);
  border-color: color-mix(in srgb, var(--pp-a) 22%, transparent);
  color: var(--pp-a2);
}

.pp-feature-card:hover .pp-feature-icon {
  transform: scale(1.08) rotate(-4deg);
}

.pp-section-head .eyebrow {
  color: var(--pp-a2);
  background: var(--pp-soft);
  border-color: color-mix(in srgb, var(--pp-a) 22%, transparent);
}

.pp-section-head .eyebrow::before {
  background: linear-gradient(135deg, var(--pp-a), var(--pp-a2));
}

.pp-checklist li svg {
  color: var(--pp-a2);
}

.pp-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: 32px;
  transition: box-shadow var(--t-med), border-color var(--t-med);
}

.pp-detail-inner:hover {
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--pp-a) 30%, var(--c-border));
}

.pp-detail-inner:nth-child(even) .pp-visual {
  order: 2;
}

.pp-detail-inner:nth-child(even) .pp-copy {
  order: 1;
}

.pp-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 10px;
}

.pp-copy p {
  margin-bottom: 20px;
}

.pp-visual .app-mockup {
  box-shadow: var(--shadow-md);
}

.pp-cta {
  background: linear-gradient(135deg, var(--pp-a), var(--pp-a2));
}

.pp-stat-num {
  background: linear-gradient(120deg, #fff, color-mix(in srgb, var(--pp-a2) 45%, #fff));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pp-cta-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--c-text-3);
}

@media (max-width: 1024px) {
  .pp-detail-inner {
    grid-template-columns: 1fr;
  }

  .pp-detail-inner:nth-child(even) .pp-visual,
  .pp-detail-inner:nth-child(even) .pp-copy {
    order: initial;
  }

  .pp-detail-inner .pp-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}


/* ---------- Legal pages ---------- */
.legal-page {
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 12% 0%, rgba(108, 76, 255, .10), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(64, 196, 255, .08), transparent 28%),
    #fff;
}
.legal-hero {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -2px;
}
.legal-hero h1 span {
  background: linear-gradient(90deg, #5b3df5, #8b35ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.75;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(91,61,245,.12);
  border-radius: 999px;
  background: #faf9ff;
  color: #64748b;
  font-size: 13px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.legal-sidebar {
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid #e9eaf3;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 35px rgba(24, 27, 51, .06);
}
.legal-sidebar strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}
.legal-sidebar a {
  display: block;
  padding: 8px 0;
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
}
.legal-sidebar a:hover { color: #5b3df5; }
.legal-card {
  padding: 38px 42px;
  border: 1px solid #e9eaf3;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(24, 27, 51, .07);
}
.legal-card section {
  scroll-margin-top: 100px;
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid #eef0f5;
}
.legal-card section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.legal-card h2 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.3;
}
.legal-card p,
.legal-card li {
  color: #64748b;
  line-height: 1.8;
  font-size: 15px;
}
.legal-card ul { padding-left: 20px; }
.legal-contact {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f5ff, #faf9ff);
  border: 1px solid #e8e2ff;
}
.legal-contact strong { color: #111827; }
@media (max-width: 800px) {
  .legal-page { padding: 58px 0 70px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-card { padding: 28px 22px; }
  .legal-hero h1 { letter-spacing: -1px; }
}


/* ---------- Payment page ---------- */
.payment-page {
  padding: 82px 0 100px;
  background:
    radial-gradient(circle at 10% 0%, rgba(108, 76, 255, .11), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(64, 196, 255, .09), transparent 30%),
    #fff;
}
.payment-hero {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}
.payment-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.payment-hero h1 span {
  background: linear-gradient(90deg, #5b3df5, #8b35ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.payment-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.75;
}
.payment-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.payment-card {
  padding: 34px;
  border: 1px solid #e7e9f2;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 55px rgba(24,27,51,.08);
}
.payment-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.payment-card-head h2 {
  margin: 0 0 5px;
  font-size: 22px;
}
.payment-card-head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}
.payment-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #eeeaff, #f7efff);
  color: #5b3df5;
  font-weight: 800;
  font-size: 15px;
}
.payment-details {
  border: 1px solid #edf0f5;
  border-radius: 16px;
  overflow: hidden;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  border-bottom: 1px solid #edf0f5;
}
.payment-row:last-child { border-bottom: 0; }
.payment-row span {
  color: #64748b;
  font-size: 14px;
}
.payment-row strong {
  color: #111827;
  font-size: 14px;
  text-align: right;
}
.qr-code-box {
  width: 280px;
  min-height: 280px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid #e7e9f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 27, 51, .07);
}
.payment-qr-image {
  display: block;
  width: 100%;
  max-width: 256px;
  height: auto;
  border-radius: 12px;
}
.upi-details {
  display: grid;
  gap: 12px;
}
.upi-field {
  padding: 16px 18px;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  background: #fbfcff;
}
.upi-field span {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
}
.upi-field strong {
  color: #111827;
  font-size: 15px;
}
.payment-note {
  max-width: 1050px;
  margin: 28px auto 0;
  padding: 24px 28px;
  border: 1px solid #e8e2ff;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7f5ff, #fbfaff);
}
.payment-note strong { color: #111827; }
.payment-note p {
  margin: 7px 0 12px;
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}
.payment-contact {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.payment-contact a { color: #5b3df5; text-decoration: none; font-weight: 600; }
@media (max-width: 800px) {
  .payment-page { padding: 58px 0 70px; }
  .payment-grid { grid-template-columns: 1fr; }
  .payment-card { padding: 25px 20px; }
  .payment-hero h1 { letter-spacing: -1px; }
}

.payment-upi-under-bank {
  margin-top: 14px;
}
.payment-upi-under-bank .payment-row {
  background: #fbfaff;
}


/* ---------- Floating WhatsApp + Back to Top ---------- */
.w3p-whatsapp-widget,
.w3p-back-to-top {
  position: fixed;
  right: 24px;
  z-index: 9999;
  border: 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .18);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.w3p-whatsapp-widget {
  bottom: 86px;
  min-width: 148px;
  height: 58px;
  padding: 0 19px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.w3p-whatsapp-widget:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .24);
  color: #fff;
}

.w3p-whatsapp-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #fff;
  color: #25D366;
}

.w3p-whatsapp-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.w3p-whatsapp-label {
  white-space: nowrap;
}

.w3p-back-to-top {
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b3df5, #8b35ef);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  font-size: 24px;
  font-weight: 700;
}

.w3p-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.w3p-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(91, 61, 245, .28);
}

@media (max-width: 600px) {
  .w3p-whatsapp-widget {
    right: 16px;
    bottom: 78px;
    min-width: 132px;
    height: 52px;
    padding: 0 15px 0 11px;
    font-size: 15px;
    gap: 8px;
  }

  .w3p-whatsapp-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .w3p-whatsapp-icon svg {
    width: 21px;
    height: 21px;
  }

  .w3p-back-to-top {
    right: 19px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

/* w3p-mobile-submenu-click-fix */
@media (max-width: 900px) {
  .mobile-drop > .mobile-sub {
    display: none;
    overflow: hidden;
  }

  .mobile-drop.is-open > .mobile-sub {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 900px !important;
  }

  .mobile-drop.is-open > .mobile-submenu-toggle .chev {
    transform: rotate(180deg);
  }

  .mobile-submenu-toggle {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}
/* end w3p-mobile-submenu-click-fix */


/* W3P mobile dropdown final interaction fix */
@media (max-width: 768px) {
  .mobile-menu {
    z-index: 99999 !important;
    pointer-events: auto !important;
  }

  .mobile-menu .mobile-drop {
    position: relative;
    z-index: 2;
  }

  .mobile-menu .mobile-drop > .mobile-link {
    position: relative;
    z-index: 3;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

  .mobile-menu .mobile-sub {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none !important;
  }

  .mobile-menu .mobile-drop.is-open > .mobile-sub {
    max-height: 800px !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding-top: 6px !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
    pointer-events: auto !important;
  }

  .mobile-menu .mobile-drop.is-open > .mobile-link .chev {
    transform: rotate(180deg) !important;
  }
}
/* end W3P mobile dropdown final interaction fix */


/* ==========================================================================
   School ERP Plans & Feature Comparison
   ========================================================================== */

.erp-pricing-section {
  background: var(--c-bg);
}

.erp-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 46px;
}

.erp-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 22px;
  padding: 30px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.erp-plan-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.28);
}

.erp-plan-card--popular {
  border-color: rgba(79, 70, 229, 0.45);
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.95), var(--c-surface));
  box-shadow: 0 18px 50px rgba(79, 70, 229, 0.12);
}

.erp-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.erp-plan-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.erp-plan-top h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.erp-plan-top p {
  min-height: 74px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.erp-plan-price {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.erp-plan-price-note {
  min-height: 22px;
  color: var(--c-text-3);
  font-size: 0.75rem;
}

.erp-plan-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.erp-plan-list li {
  position: relative;
  padding-left: 24px;
  color: var(--c-text-2);
  font-size: 0.86rem;
  line-height: 1.45;
}

.erp-plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-primary);
  font-weight: 900;
}

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

.erp-plan-btn svg {
  width: 17px;
  height: 17px;
}

.erp-custom-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 243, 255, 0.96), var(--c-surface));
  box-shadow: var(--shadow-sm);
}

.erp-custom-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--c-primary);
}

.erp-custom-icon svg {
  width: 27px;
  height: 27px;
}

.erp-custom-content .eyebrow {
  margin-bottom: 6px;
}

.erp-custom-content h3 {
  margin-bottom: 7px;
}

.erp-custom-content > p {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.erp-custom-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.erp-custom-points span {
  padding: 7px 10px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--c-text-2);
  font-size: 0.76rem;
  font-weight: 650;
}

.erp-custom-note {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  color: var(--c-text-3);
  font-size: 0.78rem !important;
}

.erp-custom-btn {
  white-space: nowrap;
}

.erp-custom-btn svg {
  width: 17px;
  height: 17px;
}

.erp-comparison-wrap {
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: 24px;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
}

.erp-comparison-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 30px 24px;
  border-bottom: 1px solid var(--c-border);
}

.erp-comparison-head h3 {
  margin-top: 8px;
}

.erp-comparison-head p {
  max-width: 380px;
  font-size: 0.9rem;
}

.erp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.erp-comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  text-align: left;
}

.erp-comparison-table th,
.erp-comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  font-size: 0.84rem;
  line-height: 1.45;
}

.erp-comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--c-surface);
  color: var(--c-text);
  font-weight: 800;
  white-space: nowrap;
}

.erp-comparison-table thead th:not(:first-child) {
  text-align: center;
}

.erp-comparison-table tbody th {
  width: 21%;
  color: var(--c-text);
  font-weight: 750;
}

.erp-comparison-table tbody td {
  color: var(--c-text-2);
}

.erp-comparison-table tbody td:not(:first-child) {
  text-align: center;
}

.erp-comparison-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.035);
}

.erp-comparison-table tbody tr:last-child th,
.erp-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.erp-comparison-note {
  margin: 0;
  padding: 18px 30px 22px;
  border-top: 1px solid var(--c-border);
  font-size: 0.8rem;
  color: var(--c-text-3);
}

@media (max-width: 1100px) {
  .erp-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .erp-custom-box {
    grid-template-columns: auto 1fr;
  }

  .erp-custom-btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .erp-plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .erp-plan-card {
    padding: 26px 22px 22px;
  }

  .erp-plan-top p {
    min-height: 0;
  }

  .erp-comparison-head {
    display: block;
    padding: 25px 20px 20px;
  }

  .erp-comparison-head p {
    margin-top: 10px;
  }

  .erp-comparison-table th,
  .erp-comparison-table td {
    padding: 13px 14px;
  }

  .erp-comparison-note {
    padding: 16px 20px 20px;
  }
}
