:root {
  --orange: #ff8a00;
  --orange-dark: #ff7300;
  --navy: #0f1a2a;
  --charcoal: #111827;
  --muted: #5a6273;
  --card: #ffffff;
  --bg: #f6f8fb;
  --border: #e6e8ef;
  --accent: #e7f0ff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: radial-gradient(circle at 20% 20%, #f2f6ff 0, transparent 25%), radial-gradient(circle at 80% 0%, #f0f7ff 0, transparent 28%), #ffffff;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.35);
  outline-offset: 3px;
}

section[id],
form[id] {
  scroll-margin-top: 110px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.container-wide {
  width: 100%;
  margin: 0;
}

main {
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 232, 239, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  color: var(--navy);
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.35);
}

.logo-img {
  height: 90px;
  width: auto;
  border-radius: 12px;
}

nav {
  min-width: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.nav-dropdown-details {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 180px;
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 5;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown-details[open] > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.nav-dropdown-details[open] > .nav-dropdown-toggle {
  color: var(--navy);
}

.nav-dropdown-details[open] > .nav-dropdown-toggle .nav-caret {
  transform: rotate(-135deg) translateY(1px);
}

nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--navy);
}

.nav-list > li > a[aria-current="page"],
.nav-dropdown.is-current .nav-dropdown-toggle {
  color: var(--navy);
  position: relative;
}

.nav-list > li > a[aria-current="page"]::after,
.nav-dropdown.is-current .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.nav-submenu a[aria-current="page"] {
  background: rgba(255, 138, 0, 0.12);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.45);
}

.btn.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--charcoal);
  font-family: 'Poppins', 'Inter', sans-serif;
}

.section h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subheading {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
}

.desc {
  margin: 0;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.dashboard {
  position: relative;
  width: min(520px, 96%);
  background: linear-gradient(145deg, #0f172a, #0b1221);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 25px 65px rgba(12, 20, 38, 0.55);
  overflow: hidden;
  isolation: isolate;
}

.dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.25), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 35%);
  z-index: 0;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfd8f3;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.dash-graph {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.dash-graph img {
  border-radius: 12px;
  filter: saturate(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.15);
  display: grid;
  gap: 6px;
  min-width: 170px;
  animation: float 6s ease-in-out infinite;
}

.floating-card.small {
  min-width: 140px;
  padding: 10px 12px;
}

.floating-card h4 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f7f3ff;
  color: #5b21b6;
  font-weight: 700;
  font-size: 0.85rem;
}

.price-chip {
  position: absolute;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 15px 38px rgba(17, 24, 39, 0.18);
  animation: float 7s ease-in-out infinite;
}

.highlights-section {
  background: var(--bg);
  padding: 30px 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 10px 0 10px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f7f9ff);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.12), rgba(15, 23, 42, 0.08));
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
}

.highlight-title {
  font-weight: 800;
  color: var(--navy);
}

.highlight-desc {
  color: var(--muted);
  font-weight: 600;
}

.metrics-section {
  background: #ffffff;
  padding: 40px 0;
}

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.08), rgba(16, 24, 40, 0.08));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  width: 100%;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-note {
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.pricing-page {
  background: #ffffff;
}

.pricing-hero {
  padding: 80px 0 40px;
  background: radial-gradient(circle at 20% 10%, rgba(255, 138, 0, 0.08), transparent 32%), radial-gradient(circle at 80% 0%, rgba(15, 23, 42, 0.08), transparent 28%), #ffffff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pricing-hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.hero-copy,
.page-hero .container,
.pricing-hero-inner > div:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: start;
  text-align: left;
}

.pricing-hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 12px;
}

.pricing-visual {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(255, 138, 0, 0.35);
}

.pricing-visual .price-chip {
  position: absolute;
}

.pricing-visual .price-chip.alt {
  top: 58%;
  left: 8%;
  background: #fff7ed;
  color: var(--navy);
}

.pricing-visual .price-chip {
  top: 16%;
  right: 14%;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.1);
  position: relative;
  display: grid;
  gap: 14px;
  height: 100%;
  text-align: left;
}

.price-card.accent {
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 18px 44px rgba(255, 138, 0, 0.18);
}

.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.price-top {
  display: grid;
  gap: 6px;
}

.price-plan {
  font-weight: 800;
  color: var(--navy);
}

.price-cost {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.price-cost span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

.price-sub {
  color: var(--muted);
  font-weight: 600;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 2px 0;
}

.price-features {
  display: grid;
  gap: 8px;
}

.price-feature {
  color: var(--navy);
  font-weight: 700;
}

.price-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.price-tagline {
  color: var(--muted);
  font-weight: 700;
}

.trust {
  padding: 30px 0 40px;
  display: grid;
  gap: 16px;
  justify-items: center;
  color: var(--muted);
  font-weight: 700;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  width: 100%;
  align-items: center;
  justify-items: center;
}

.mono-logo {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  width: 100%;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.section {
  padding: 60px 0;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--charcoal);
}

.section p.desc,
.section .desc {
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  justify-items: stretch;
  align-items: stretch;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  height: 100%;
  text-align: left;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.12);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #dfe8ff);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 200;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.how-section {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.12), rgba(255, 115, 0, 0.2));
}

.how-section .card {
  text-align: center;
}

.how-section .card p {
  text-align: center;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.step-head .step-number {
  margin: 0;
}

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

.steps .card p {
  margin-top: 10px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  flex-shrink: 0;
  margin-bottom: 12px;
}

.deep-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  margin-top: 40px;
}

.deep-img {
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.deep-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.18), transparent 42%);
  z-index: 0;
}

.deep-img img {
  border-radius: 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.sticky-media {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 138, 0, 0.3);
  flex-shrink: 0;
}

.credibility {
  background: var(--bg);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.cred-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.1);
  display: grid;
  gap: 8px;
}

.cred-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.15), rgba(17, 24, 39, 0.05));
  font-weight: 900;
}

.cred-title {
  font-weight: 800;
  color: var(--navy);
}

.cred-desc {
  color: var(--muted);
  font-weight: 600;
}

.testimonial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  justify-items: stretch;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  text-align: left;
}

.testimonial-card .quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  margin: 10px 0;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.7em * 4);
}

.testimonial-card.is-expanded .quote {
  display: block;
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.review-toggle {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0;
  margin: 0 0 6px;
}

.review-toggle[hidden] {
  display: none;
}

.testimonial-meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
}

.testimonial-section {
  padding: 40px 0;
}

.testimonial-section .illustration img {
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 920px;
  margin: 28px auto 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 138, 0, 0.08), rgba(255, 255, 255, 0.9));
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.07);
}

.faq-question {
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 700;
  color: var(--navy);
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  gap: 12px;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.faq-answer[hidden] {
  display: none;
}

.faq-item.open .toggle {
  background: var(--navy);
  color: #fff;
}

.toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.illustration {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(135deg, #f3f6ff, #fdfbff);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.integrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.int-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.int-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}

.cta-final {
  background: linear-gradient(135deg, #0f172a, #111827);
  border-radius: 22px;
  padding: 40px;
  color: #fff;
  display: grid;
  gap: 20px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(12, 20, 38, 0.55);
  position: relative;
  overflow: hidden;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.45), transparent 40%);
  opacity: 0.65;
}

.cta-final h3 {
  margin: 0;
  font-size: 1.9rem;
  position: relative;
  z-index: 1;
}

.cta-final p {
  margin: 0;
  color: #e5e7eb;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin: 0 auto;

  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.parallax-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255, 138, 0, 0.35), rgba(15, 23, 42, 0.25));
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.orb-a { width: 260px; height: 260px; top: -60px; left: -40px; }
.orb-b { width: 220px; height: 220px; bottom: -80px; right: -30px; }
.orb-c { width: 180px; height: 180px; top: 20px; right: 20%; }
.orb-d { width: 200px; height: 200px; bottom: -60px; left: 18%; }

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

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  text-align: left;
}

.page-shell {
  background: #ffffff;
}

.page-hero {
  padding: 88px 0 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-body {
  padding: 28px 0 72px;
  background: var(--bg);
}

.legal .container {
  display: grid;
  gap: 16px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  height: 100%;
  text-align: left;
}

.page-card h3,
.contact-card h3,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--navy);
  font-family: 'Poppins', 'Inter', sans-serif;
}

.page-card p,
.contact-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(255, 138, 0, 0.3);
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  min-height: 24px;
}

.contact-side {
  display: grid;
  gap: 12px;
  width: min(360px, 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: 24px;
}

.page-callout {
  margin-top: 24px;
}

footer {
  padding: 50px 0 24px;
  background: #0b1324;
  color: #e5e7eb;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-link {
  color: #cbd5f5;
  margin: 6px 0;
  display: block;
  font-weight: 600;
}

.footer-link[aria-current="page"] {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 97%);
  padding-top: 16px;
  color: #cbd5f5;
  font-weight: 600;
}

.reveal-ready .card,
.reveal-ready .deep-img,
.reveal-ready .testimonial-card,
.reveal-ready .illustration,
.reveal-ready .int-card,
.reveal-ready .cta-final,
.reveal-ready .stat-card,
.reveal-ready .highlight-card,
.reveal-ready .cred-card,
.reveal-ready .price-card,
.reveal-ready .contact-card,
.reveal-ready .page-card {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 960px) {
  .logo-img {
    height: 54px;
  }
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 14px;
    padding: 10px 0;
  }
  .logo {
    min-width: 0;
  }
  nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
  }
  .nav-list {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  }
  .nav-list > li {
    width: 100%;
  }
  .nav-list > li > a,
  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
  }
  .nav-list > li > a[aria-current="page"]::after,
  .nav-dropdown.is-current .nav-dropdown-toggle::after {
    display: none;
  }
  .nav-list > li > a[aria-current="page"],
  .nav-dropdown.is-current .nav-dropdown-toggle {
    background: rgba(255, 138, 0, 0.12);
  }
  .nav-submenu {
    position: static;
    min-width: 0;
    display: none;
    margin-top: 6px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(231, 240, 255, 0.55);
    border: 1px solid rgba(230, 232, 239, 0.9);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-submenu a {
    white-space: normal;
  }
  .nav-dropdown-details[open] > .nav-submenu {
    display: grid;
  }
  .nav-actions {
    display: none;
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
    grid-column: 1 / -1;
  }
  .menu-toggle {
    display: flex;
    margin-left: 0;
    width: 48px;
    height: 48px;
    justify-self: end;
  }
  .nav.open nav {
    display: block;
  }
  .nav.open .nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav.open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero-inner,
  .pricing-hero-inner,
  .deep-section,
  .testimonial,
  .faq {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero {
    padding: 72px 0 56px;
  }
  .hero-visual {
    min-height: 360px;
  }
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form,
  .contact-side {
    width: 100%;
  }
  .contact-side {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .faq {
    margin-top: 24px;
  }
  header {
    position: sticky;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }
  .logo-img {
    height: 55px;
  }
  .nav {
    padding: 12px 0;
    row-gap: 12px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    padding: 9px;
  }
  h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 1.08;
  }
  .section {
    padding: 48px 0;
  }
  .section h2 {
    font-size: 1.7rem;
  }
  .page-hero {
    padding: 72px 0 20px;
  }
  .page-body {
    padding: 20px 0 56px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
  }
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open .nav-actions {
    grid-template-columns: 1fr;
  }
  .nav.open .nav-actions .btn,
  .cta-row .btn,
  .cta-actions .btn {
    width: 100%;
  }
  .dashboard {
    width: 100%;
    padding: 16px;
  }
  .hero {
    padding: 56px 0 40px;
  }
  .hero-inner {
    gap: 24px;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .card {
    padding: 18px;
  }
  .contact-card {
    align-items: flex-start;
    padding: 20px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .features-grid,
  .steps,
  .integrations,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pricing-visual {
    min-height: 150px;
  }
  .floating-card,
  .price-chip {
    display: none;
  }
  .orb-a, .orb-b, .orb-c, .orb-d {
    opacity: 0.35;
  }
  .sticky-media {
    position: static;
  }
}
