:root {
  --navy: #081a34;
  --navy-soft: #12315c;
  --blue: #1267e8;
  --green: #119b67;
  --gold: #d9b24c;
  --ink: #13233c;
  --muted: #60738a;
  --line: #dbe5f0;
  --paper: #f6faff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 26, 52, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 48%, #f9fcff 100%);
}

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

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 229, 240, 0.95);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding-right: 18px;
  border-right: 1px solid #dfe7f1;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 7px 7px 0 rgba(18, 103, 232, 0.07);
}

.brand-copy strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-toggle {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-links > a,
.nav-toggle {
  min-height: 38px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: color 180ms ease;
}

.nav-item {
  position: relative;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  max-width: 320px;
  padding: 0;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dfe7f1;
  border-top: 2px solid var(--blue);
  box-shadow: 0 16px 38px rgba(8, 26, 52, 0.10);
  display: none;
  z-index: 30;
  overflow: hidden;
}

.menu-panel[hidden] {
  display: none !important;
}

.nav-item.is-open .menu-panel {
  display: block;
}

.nav-item.is-open .nav-toggle,
.nav-toggle:hover,
.nav-links > a:hover {
  color: var(--blue);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-col {
  border-radius: 0;
  padding: 8px 8px 10px;
}

.menu-heading {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.menu-link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.menu-link:hover,
.menu-link:focus-visible {
  background: #eef5ff;
  color: var(--blue);
  padding-left: 16px;
}

.menu-link-group {
  display: grid;
  gap: 2px;
}

.submenu-item {
  position: relative;
}

.submenu-toggle {
  width: 100%;
  min-height: 42px;
  padding: 11px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.submenu-item:hover .submenu-toggle,
.submenu-item:focus-within .submenu-toggle {
  background: #eef5ff;
  color: var(--blue);
  padding-left: 16px;
}

.submenu-flyout {
  position: absolute;
  top: -6px;
  left: calc(100% + 8px);
  min-width: 240px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid #dfe7f1;
  border-top: 2px solid var(--blue);
  box-shadow: 0 16px 38px rgba(8, 26, 52, 0.10);
  display: none;
  z-index: 35;
}

.submenu-item:hover .submenu-flyout,
.submenu-item:focus-within .submenu-flyout,
.submenu-item.is-open .submenu-flyout {
  display: block;
}

.submenu-item.is-open .submenu-toggle {
  background: #eef5ff;
  color: var(--blue);
  padding-left: 16px;
}

.submenu-flyout .menu-link {
  padding-left: 12px;
}

.submenu-flyout .menu-link:hover,
.submenu-flyout .menu-link:focus-visible {
  padding-left: 16px;
}

.nav-cta {
  text-decoration: none;
  background: #1e2430;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(14, 22, 35, 0.16);
  min-width: 118px;
  justify-content: center;
}

.nav-links .btn.btn-secondary {
  min-height: 38px;
  min-width: 138px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #1e2430;
  color: #1e2430;
  font-size: 14px;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(8, 26, 52, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 76px;
  background:
    radial-gradient(circle at 86% 8%, rgba(39, 216, 238, 0.18), transparent 22%),
    radial-gradient(circle at 12% 12%, rgba(18, 103, 232, 0.16), transparent 18%),
    linear-gradient(145deg, #07162b 0%, #0b2140 58%, #12315c 100%);
  color: var(--white);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
  opacity: 0.55;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-a {
  width: 260px;
  height: 260px;
  top: 110px;
  right: 10%;
  background: radial-gradient(circle, rgba(37, 220, 232, 0.36) 0%, rgba(37, 220, 232, 0.02) 72%);
}

.orb-b {
  width: 200px;
  height: 200px;
  bottom: 70px;
  left: 5%;
  background: radial-gradient(circle, rgba(18, 103, 232, 0.28) 0%, rgba(18, 103, 232, 0.02) 72%);
  animation-delay: -3s;
}

.orb-c {
  width: 160px;
  height: 160px;
  top: 40px;
  left: 42%;
  background: radial-gradient(circle, rgba(217, 178, 76, 0.22) 0%, rgba(217, 178, 76, 0.02) 72%);
  animation-delay: -6s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #9fe9ff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -1.8px;
}

.hero p {
  margin: 0;
  color: #cbdbef;
  font-size: 19px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 15px 20px;
  font-weight: 900;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.hero-card img {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-compact {
  padding: 44px 0 56px;
}

.hero-compact h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.98;
}

.hero-compact p {
  max-width: 760px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 18px;
  backdrop-filter: blur(8px);
  min-height: 164px;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
  line-height: 1.08;
  word-break: keep-all;
}

.stat-card span {
  color: #c9dbef;
  font-weight: 700;
  line-height: 1.35;
}

.stat-card strong[data-suffix=" platforms"] {
  font-size: 28px;
  letter-spacing: -0.02em;
}

.stat-card strong.is-ready {
  animation: riseIn 600ms ease;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

section {
  padding: 72px 0;
}

.logo-section {
  padding-top: 8px;
}

.logo-strip-head {
  margin-bottom: 20px;
}

.logo-strip-head span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 13px;
  display: block;
}

.logo-strip-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.invoice-layout-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.invoice-layout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.invoice-layout-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.invoice-layout-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.invoice-layout-paper {
  height: 170px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  border: 1px solid #e3eaf4;
  overflow: hidden;
}

.invoice-layout-bar {
  height: 18px;
  width: 68%;
  border-radius: 999px;
  margin-bottom: 14px;
  background: #dbe6f7;
}

.invoice-layout-lines {
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9e4f4 0%, #eef4fb 88%);
}

.invoice-layout-lines.short {
  width: 74%;
}

.invoice-layout-card.classic .invoice-layout-paper {
  border-top: 6px solid #1b63e0;
}

.invoice-layout-card.modern .invoice-layout-paper {
  background: linear-gradient(180deg, #17345f, #eff5ff);
}

.invoice-layout-card.modern .invoice-layout-bar {
  background: rgba(255, 255, 255, 0.85);
}

.invoice-layout-card.modern .invoice-layout-lines {
  background: linear-gradient(90deg, rgba(255,255,255,0.82) 0%, #d6e6ff 88%);
}

.invoice-layout-card.minimal .invoice-layout-paper {
  border-radius: 10px;
}

.invoice-layout-card.boxed .invoice-layout-paper {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fffdf5, #ffffff);
}

.invoice-layout-card.compact .invoice-layout-paper {
  width: 82%;
  margin-left: auto;
  margin-right: auto;
}

.section-actions {
  margin-top: 22px;
}

.solution-anchors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.anchor-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(8, 26, 52, 0.06);
}

.anchor-card strong {
  color: var(--navy);
  font-size: 16px;
}

.anchor-card span {
  color: var(--muted);
  line-height: 1.5;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.section-head {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-head span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 13px;
}

.section-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.4px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.grid-3,
.grid-4,
.pricing-grid,
.contact-grid,
.feature-grid {
  display: grid;
  gap: 20px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 0.9fr 1.1fr; }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.8;
}

.card ul {
  margin: 14px 0 0 18px;
  padding: 0;
}

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

.shot {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot-top {
  padding: 16px 18px;
  font-weight: 900;
  color: var(--navy);
  background: #eef4fb;
  border-bottom: 1px solid var(--line);
}

.shot-body {
  padding: 18px;
}

.shot-body img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.compare {
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.compare table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare th {
  background: #eef4fb;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ok { color: var(--green); font-weight: 900; }
.no { color: #c94a5b; font-weight: 900; }

.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border-color: rgba(18, 103, 232, 0.26);
  transform: translateY(-8px);
}

.pricing-hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(88, 79, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--ink);
  overflow: hidden;
}

.pricing-hero .eyebrow {
  background: rgba(99, 91, 255, 0.08);
  border-color: rgba(99, 91, 255, 0.16);
  color: #5a51e6;
}

.pricing-hero p {
  color: var(--muted);
}

.guarantee-line {
  color: #5a51e6;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 300;
}

.guarantee-line strong {
  display: block;
  color: #1f2937;
  max-width: 1120px;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -2px;
  text-wrap: balance;
}

.pricing-showcase {
  background: var(--white);
  border: 1px solid #e7edf6;
  border-radius: 34px;
  box-shadow: 0 28px 72px rgba(8, 26, 52, 0.08);
  overflow: hidden;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 32px 34px 36px;
  min-height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.plan-card + .plan-card {
  border-left: 1px solid #eceffc;
}

.plan-card.popular {
  border: 3px solid #8b7cff;
  margin: -1px 0;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(139, 124, 255, 0.08);
}

.plan-top {
  min-height: 142px;
  margin-bottom: 20px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ff654a;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  position: absolute;
  top: 28px;
  right: 28px;
}

.plan-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.plan-name {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -1px;
}

.plan-name.diamond { color: #e36a15; }
.plan-name.platinum { color: #5866c8; }
.plan-name.enterprise { color: #0db58d; }

.plan-subtitle {
  margin-top: 10px;
  color: #544cf0;
  font-size: 18px;
  line-height: 1.6;
  min-height: 58px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 10px;
}

.price-old {
  font-size: 30px;
  font-weight: 800;
  color: #1f2937;
  text-decoration: line-through;
}

.price-new {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 900;
  color: #1f2937;
  letter-spacing: -1px;
}

.price-period {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 8px;
}

.annual-line {
  color: #243042;
  font-size: 17px;
  line-height: 1.6;
  min-height: 52px;
}

.annual-line .strike {
  text-decoration: line-through;
}

.plan-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: 24px;
  background: #fbfcff;
  border: 1px solid #e6ecf7;
  display: grid;
  gap: 12px;
}

.plan-cta {
  width: 100%;
  border-radius: 18px;
  padding: 16px 18px;
  background: #24364d;
  color: var(--white);
  box-shadow: none;
}

.plan-cta.green {
  background: #4c5ad5;
}

.plan-cta-light {
  background: var(--white);
  color: #4c5ad5;
  border: 1px solid #d9e3f3;
}

.plan-details {
  margin-top: 18px;
  padding: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
}

.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  color: #223249;
  line-height: 1.75;
  font-weight: 600;
  font-size: 16px;
}

.plan-list-check li::before,
.plan-list-plus li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.plan-list-check li::before {
  content: "\2713";
  color: var(--green);
}

.plan-list-plus li::before {
  content: "+";
  color: var(--blue);
}

.plan-divider {
  height: 1px;
  background: #e7edf6;
  margin: 26px 0 18px;
}

.plan-detail-title {
  margin: 0 0 18px;
  font-size: 22px;
  color: var(--ink);
}

.browser-strip {
  margin-top: 24px;
}

.app-feature-list {
  margin-top: 10px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-weight: 800;
}

.carousel-shell {
  display: grid;
  gap: 20px;
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 48px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.industry-card {
  min-height: 100%;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.price {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  margin: 12px 0;
}

.price small {
  font-size: 16px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-list,
.detail-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.plan-list li,
.detail-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
}

.plan-list li::before,
.detail-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 11px;
}

.contact-point {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #f9fbff;
  margin-top: 14px;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #bfd0e3;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
}

.demo-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.mini-hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.mini-hero-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.video-card {
  overflow: hidden;
}

.video-card > video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #061426;
}

.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #061426;
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #061426;
}

.video-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-pill {
  padding: 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-pill strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-pill span {
  color: var(--muted);
  line-height: 1.6;
}

.tab-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tab-button {
  border: 1px solid var(--line);
  background: #f7faff;
  color: var(--navy);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}

.testimonial-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(232, 241, 252, 0.68) 100%);
}

.testimonial-shell {
  display: grid;
  gap: 22px;
}

.testimonial-track {
  position: relative;
  min-height: 290px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(30px) scale(0.98);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.testimonial-card p {
  margin: 18px 0 24px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 700;
  max-width: 900px;
}

.testimonial-card strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eaf6ef;
  color: var(--green);
  font-weight: 900;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: #bfd0e5;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.testimonial-dot.is-active {
  background: var(--blue);
  transform: scale(1.15);
}

.tab-button.is-active {
  background: linear-gradient(135deg, #0f8f67, #1267e8);
  border-color: transparent;
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.panel-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.05;
}

.panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.panel-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.panel-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 700;
}

.panel-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 11px;
}

.panel-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.panel-media img {
  width: 100%;
  display: block;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfdff;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1267e8, #27d8ee);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex: 0 0 auto;
}

.feature-row h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.note-banner {
  border: 1px solid rgba(18, 103, 232, 0.18);
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  border-radius: 20px;
  padding: 18px 20px;
  color: var(--ink);
}

.note-banner strong {
  color: var(--navy);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.link-list a {
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
}

.cta-band {
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 209, 238, 0.18), transparent 20%),
    linear-gradient(145deg, #07162b 0%, #0b2140 58%, #12315c 100%);
  color: var(--white);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 30px 90px rgba(8, 26, 52, 0.18);
}

.cta-band p {
  color: #cbdcf1;
  font-size: 18px;
  line-height: 1.8;
}

.footer {
  background: var(--navy);
  color: #c1d4ea;
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #e2edf8;
}

@keyframes riseIn {
  from {
    opacity: 0.3;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.06); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .pricing-grid,
  .feature-grid,
  .gallery,
  .contact-grid,
  .pricing-plans,
  .trust-strip,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip,
  .solution-anchors,
  .invoice-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card + .plan-card {
    border-left: 0;
    border-top: 1px solid #eceffc;
  }

  .menu-panel {
    min-width: 320px;
  }

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

  .carousel-track {
    grid-auto-columns: minmax(260px, 82%);
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-track {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
  }

  .menu-panel {
    position: static;
    margin-top: 10px;
    min-width: 100%;
  }

  .submenu-flyout {
    position: static;
    min-width: 100%;
    margin-top: 6px;
  }

  .carousel-head {
    align-items: flex-start;
  }

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

  .testimonial-track {
    min-height: 420px;
  }

  .testimonial-card {
    padding: 26px;
  }

  .testimonial-card p {
    font-size: 22px;
  }
}

@media (max-width: 620px) {
  .stats-strip,
  .solution-anchors,
  .invoice-layout-grid {
    grid-template-columns: 1fr;
  }

  .nav-links .btn.btn-secondary,
  .nav-cta {
    min-width: 100%;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    min-height: 480px;
  }
}
