:root {
  --bg: #ffffff;
  --bg-soft: #f4f7f9;
  --ink: #1a2332;
  --muted: #5b6b7c;
  --line: #e3e9ef;
  --brand: #0b4f6c;
  --brand-dark: #083a50;
  --accent: #e8590c;
  --accent-hover: #d04e09;
  --teal: #0d7377;
  --ok: #0f766e;
  --warn: #c2410c;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(8, 58, 80, 0.12);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --shell: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.shell.narrow {
  width: min(100% - 2rem, 720px);
}

.center {
  text-align: center;
}

/* Header — Zoho-like sticky with dual CTA */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.nav {
  display: none;
  gap: 1.4rem;
  margin-left: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--brand);
}

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-text {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand);
}

.burger {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--ink);
}

@media (min-width: 920px) {
  .nav {
    display: flex;
  }
  .burger {
    display: none;
  }
}

.site-header.open .nav {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0 1rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.site-header.open .nav a {
  padding: 0.85rem 1.25rem;
}

/* Buttons — primary orange CTA like product sites, secondary outline */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-xl {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 89, 12, 0.28);
}

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

.btn-secondary {
  background: #fff;
  color: var(--brand);
  border-color: #c5d3de;
}

.btn-secondary:hover {
  border-color: var(--brand);
  background: var(--bg-soft);
}

.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stretch {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-row.center {
  justify-content: center;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(13, 115, 119, 0.1), transparent 50%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.badge {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 79, 108, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 14ch;
  animation: fadeUp 0.7s ease both;
}

.hero-desc {
  margin: 1.15rem 0 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  animation: fadeUp 0.7s 0.08s ease both;
}

.hero .cta-row {
  animation: fadeUp 0.7s 0.16s ease both;
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  animation: fadeUp 0.7s 0.22s ease both;
}

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

.hero-visual {
  animation: fadeUp 0.85s 0.12s ease both;
}

.ui-window {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ui-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.ui-bar i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d0d7de;
}

.ui-bar span {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.ui-content {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
}

.ui-side {
  padding: 1rem 0.7rem;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.ui-side strong {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.ui-side em {
  font-style: normal;
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
}

.ui-side .active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ui-main {
  padding: 1rem;
}

.ui-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.ui-metrics div {
  padding: 0.6rem;
  border-radius: 10px;
  background: var(--bg-soft);
}

.ui-metrics b {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.ui-metrics span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

.ui-list {
  display: grid;
  gap: 0.4rem;
}

.ui-list > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pill {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--brand);
  font-size: 0.68rem;
  white-space: nowrap;
}

.pill.amber {
  background: #ffedd5;
  color: var(--warn);
}

.pill.green {
  background: #dcfce7;
  color: var(--ok);
}

@media (max-width: 640px) {
  .ui-content {
    grid-template-columns: 1fr;
  }
  .ui-side {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ui-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

/* Trust bar */
.trust {
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.trust .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.trust p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

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

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section-head p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Feature trio */
.feature-trio {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-trio article {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-trio article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.icon-tile {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(11, 79, 108, 0.08);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.feature-trio h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.feature-trio p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Highlight band */
.highlight {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--teal));
  color: #fff;
}

.highlight-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .highlight-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.highlight h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.highlight > .shell > div > p:not(.eyebrow) {
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

.highlight .eyebrow {
  color: #f6c177;
}

.highlight-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.highlight-points li {
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.25rem;
}

.highlight-points strong {
  font-size: 1rem;
}

.highlight-points span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

/* Flow grid */
.flow-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.flow-grid article {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.flow-grid h3 {
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-size: 1.2rem;
}

.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Module rows */
.module-rows {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 760px) {
  .module-rows {
    grid-template-columns: 1fr 1fr;
  }
}

.module-rows article {
  padding: 1.5rem 1.4rem;
  background: #fff;
}

.module-rows h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.module-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Pillars + stats */
.pillar-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pillar-grid article {
  padding: 1.5rem 1.25rem 1.5rem;
  border-top: 3px solid var(--accent);
}

.pillar-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stats-row {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.stats-row div {
  text-align: center;
}

.stats-row b {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.stats-row span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 700px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Pricing */
.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.75rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}

.popular {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0.4rem 0 0;
  font-size: 1.4rem;
}

.price-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.price {
  margin: 0.4rem 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.price span {
  font-size: 1.2rem;
}

.price em {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
  font-size: 0.92rem;
}

.compare-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.compare-wrap th,
.compare-wrap td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.compare-wrap th {
  background: var(--bg-soft);
  font-weight: 800;
}

.compare-wrap tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 700;
  font-size: 1.02rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 800;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  padding-right: 2rem;
}

/* Company */
.company-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .company-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.company-grid h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
}

.company-grid > div > p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 36rem;
}

.contact-lines {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.contact-lines a {
  font-weight: 700;
  color: var(--brand);
}

.office-stack {
  display: grid;
  gap: 0.85rem;
}

.office-stack article {
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.office-stack h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.office-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Closing CTA band */
.cta-band {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(120deg, #062636, var(--brand) 55%, var(--teal));
  color: #fff;
}

.cta-band h2 {
  margin: 0 auto;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.025em;
  max-width: 18ch;
  line-height: 1.2;
}

.cta-band p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .cta-row {
  margin-top: 1.75rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #051821;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-row p {
  margin: 0;
}

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

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 520px) {
  .header-cta .btn-primary {
    display: none;
  }
}
