@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f8fcfb;
  --bg-soft: #eef8f6;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #f3fbfa;
  --surface: rgba(255, 255, 255, 0.82);
  --line: rgba(37, 115, 122, 0.14);
  --text: #213138;
  --muted: #62757e;
  --accent: #17b4c8;
  --accent-strong: #0f99ac;
  --accent-alt: #8bcf46;
  --accent-blue: #62d0f5;
  --danger: #ff786a;
  --shadow: 0 22px 60px rgba(29, 73, 80, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23, 180, 200, 0.14), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(98, 208, 245, 0.2), transparent 24%),
    radial-gradient(circle at 15% 75%, rgba(139, 207, 70, 0.14), transparent 22%),
    linear-gradient(180deg, #fbfefd 0%, #f5fbfa 48%, #eef8f6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 146, 154, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 146, 154, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  pointer-events: none;
}

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

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

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

.topbar {
  border-bottom: 1px solid rgba(37, 115, 122, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar span strong {
  color: var(--text);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 252, 251, 0.84);
  border-bottom: 1px solid rgba(37, 115, 122, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
}

.brand img {
  width: clamp(150px, 18vw, 230px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 179, 87, 0.18), rgba(61, 211, 181, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong {
  display: none;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-mobile-summary {
  display: none;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent), #86e5b9);
  color: #062031;
  box-shadow: 0 18px 40px rgba(61, 211, 181, 0.25);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 115, 122, 0.14);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(29, 73, 80, 0.08);
}

.button-whatsapp {
  background: linear-gradient(135deg, #1fc76a, #9cf29e);
  color: #082015;
  border: 0;
  box-shadow: 0 18px 40px rgba(31, 199, 106, 0.2);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: #1f5963;
  background: rgba(23, 180, 200, 0.09);
  border: 1px solid rgba(23, 180, 200, 0.16);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 1.2rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 span,
.section-title span,
.page-hero h1 span {
  color: var(--accent-alt);
}

.hero p,
.page-hero p,
.section-intro,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.stat-card,
.service-card,
.feature-card,
.info-card,
.faq-card,
.metric-panel,
.timeline-card,
.contact-card,
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 1.15rem 1.2rem;
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  font-family: "Space Grotesk", sans-serif;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.5;
}

.orb-one {
  inset: 3% auto auto 10%;
  width: 240px;
  height: 240px;
  background: rgba(23, 180, 200, 0.26);
}

.orb-two {
  inset: auto 0 10% auto;
  width: 260px;
  height: 260px;
  background: rgba(139, 207, 70, 0.22);
}

.visual-shell {
  position: absolute;
  inset: 2.5rem 0 0 1rem;
  padding: 1rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 250, 249, 0.94)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 115, 122, 0.1);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  padding: 1rem 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 115, 122, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(29, 73, 80, 0.12);
}

.floating-card small,
.panel-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
}

.floating-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.2rem;
}

.floating-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.visual-primary {
  top: 2.2rem;
  left: 1.8rem;
  right: 1.8rem;
  min-height: 310px;
}

.visual-primary .grid-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.preview-card {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 252, 251, 0.98), rgba(236, 248, 246, 0.98));
  border: 1px solid rgba(37, 115, 122, 0.1);
}

.bars {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bar {
  display: grid;
  gap: 0.35rem;
}

.bar span {
  font-size: 0.85rem;
  color: var(--muted);
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 180, 200, 0.1);
  overflow: hidden;
}

.bar-track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
}

.visual-secondary {
  left: 0;
  bottom: 6rem;
  width: 52%;
}

.visual-tertiary {
  right: 0;
  bottom: 1rem;
  width: 48%;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badge-cloud span,
.mini-tag {
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 115, 122, 0.12);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.mini-tag {
  font-size: 0.8rem;
}

section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0.7rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-grid,
.feature-grid,
.info-grid,
.testimonial-grid,
.contact-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-grid-wide {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
}

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

.tool-card {
  position: relative;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tool-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -45% auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 180, 200, 0.12), transparent 70%);
}

.tool-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
  align-items: start;
}

.tool-form-card,
.tool-result-card {
  padding: 1.45rem;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.tool-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.tool-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.tool-form input,
.tool-form select,
.tool-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 115, 122, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}

.tool-form input:focus,
.tool-form select:focus,
.tool-form textarea:focus {
  border-color: rgba(23, 180, 200, 0.48);
  box-shadow: 0 0 0 4px rgba(23, 180, 200, 0.1);
}

.tool-form button {
  border: 0;
  cursor: pointer;
}

.result-stack {
  display: grid;
  gap: 1rem;
}

.result-panel {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(248, 252, 251, 0.95);
  border: 1px solid rgba(37, 115, 122, 0.1);
}

.result-panel h3,
.result-panel h4 {
  margin: 0 0 0.5rem;
}

.result-value {
  display: block;
  margin-top: 0.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: #177f8f;
}

.allocation-grid {
  display: grid;
  gap: 0.85rem;
}

.allocation-row {
  display: grid;
  gap: 0.45rem;
}

.allocation-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.allocation-meta strong {
  font-size: 0.95rem;
}

.allocation-meta span {
  color: #1b6f7a;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.allocation-track {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(23, 180, 200, 0.1);
}

.allocation-track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
}

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

.metric-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
}

.metric-chip {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 115, 122, 0.1);
  box-shadow: 0 12px 26px rgba(29, 73, 80, 0.08);
}

.metric-chip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: #177f8f;
}

.metric-chip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.tool-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.schedule-table th,
.schedule-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(37, 115, 122, 0.1);
  font-size: 0.92rem;
}

.schedule-table th {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.schedule-table td {
  color: var(--muted);
}

.result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.result-steps {
  counter-reset: tool-step;
}

.result-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.result-steps li {
  padding-left: 2.4rem;
}

.result-steps li::before {
  counter-increment: tool-step;
  content: counter(tool-step);
  top: 0.2rem;
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  color: #0d4d58;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(61, 211, 181, 0.08);
}

.result-callout {
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(23, 180, 200, 0.06);
  border: 1px solid rgba(23, 180, 200, 0.12);
  color: var(--text);
}

.service-card,
.feature-card,
.info-card,
.faq-card,
.timeline-card,
.contact-card,
.testimonial-card,
.metric-panel {
  padding: 1.45rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 180, 200, 0.12), transparent 70%);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(23, 180, 200, 0.12), rgba(139, 207, 70, 0.1));
  border: 1px solid rgba(37, 115, 122, 0.12);
  font-family: "Space Grotesk", sans-serif;
  color: #1e7782;
}

.service-card h3,
.feature-card h3,
.info-card h3,
.faq-card h3,
.timeline-card h3,
.contact-card h3,
.testimonial-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.12rem;
}

.service-card p,
.feature-card p,
.info-card p,
.faq-card p,
.timeline-card p,
.contact-card p,
.testimonial-card p,
.service-points li,
.detail-list li,
.mini-list li {
  color: var(--muted);
  line-height: 1.75;
}

.service-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: #177f8f;
  font-weight: 700;
}

.dark-band {
  background: linear-gradient(180deg, rgba(23, 180, 200, 0.04), rgba(139, 207, 70, 0.02));
}

.split-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.metric-panel strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.detail-list,
.service-points,
.mini-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.detail-list li,
.service-points li,
.mini-list li {
  position: relative;
  padding-left: 1.3rem;
}

.detail-list li::before,
.service-points li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(61, 211, 181, 0.08);
}

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

.timeline-card span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(23, 180, 200, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.page-hero {
  padding: 3.8rem 0 2.2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  align-items: center;
}

.breadcrumb {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 6.8rem;
}

.cta-panel {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(98, 208, 245, 0.12), rgba(139, 207, 70, 0.08));
  border: 1px solid rgba(37, 115, 122, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-visual {
  position: relative;
  min-height: 360px;
  padding: 1.2rem;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(23, 180, 200, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(245, 252, 251, 0.98), rgba(236, 248, 246, 0.98));
  border: 1px solid rgba(37, 115, 122, 0.1);
  box-shadow: var(--shadow);
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 115, 122, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 115, 122, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.service-screen,
.signal-card,
.flow-step,
.status-list,
.service-orbit {
  position: relative;
  z-index: 1;
}

.service-screen {
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 115, 122, 0.1);
  backdrop-filter: blur(16px);
}

.service-screen h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1.02rem;
}

.service-screen p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.signal-card {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 115, 122, 0.1);
  animation: floatSoft 6s ease-in-out infinite;
}

.signal-card:nth-child(2) {
  animation-delay: 0.8s;
}

.signal-card:nth-child(3) {
  animation-delay: 1.6s;
}

.signal-card:nth-child(4) {
  animation-delay: 2.4s;
}

.signal-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.signal-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.flow-track {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.flow-step {
  flex: 1;
  padding: 0.85rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 115, 122, 0.1);
  text-align: center;
}

.flow-step strong {
  display: block;
  font-size: 0.96rem;
}

.flow-step span {
  color: var(--muted);
  font-size: 0.8rem;
}

.flow-line {
  flex: 0 0 34px;
  height: 2px;
  overflow: hidden;
  background: rgba(23, 180, 200, 0.12);
  border-radius: 999px;
}

.flow-line::after {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanFlow 2.4s linear infinite;
}

.status-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.status-item {
  position: relative;
  padding: 0.9rem 0.95rem 0.9rem 2.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 115, 122, 0.1);
}

.status-item::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(61, 211, 181, 0.08);
  animation: pulseGlow 2.3s ease-in-out infinite;
}

.status-item strong {
  display: block;
  font-size: 0.98rem;
}

.status-item span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.ledger-bars {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.ledger-bar {
  display: grid;
  gap: 0.35rem;
}

.ledger-bar strong {
  font-size: 0.85rem;
}

.ledger-bar span {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 180, 200, 0.1);
}

.ledger-bar span i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  animation: riseGlow 3.2s ease-in-out infinite;
  transform-origin: left center;
}

.service-orbit {
  position: absolute;
  right: -50px;
  top: -35px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  border: 1px solid rgba(37, 115, 122, 0.08);
  background: radial-gradient(circle, rgba(98, 208, 245, 0.18), transparent 65%);
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-orbit::before {
  inset: 22px;
  border: 1px dashed rgba(37, 115, 122, 0.16);
  animation: spinRing 16s linear infinite;
}

.service-orbit::after {
  width: 14px;
  height: 14px;
  left: 50%;
  top: 10px;
  margin-left: -7px;
  background: var(--accent-alt);
  box-shadow: 0 0 0 10px rgba(255, 179, 87, 0.08);
  animation: orbitDot 7s linear infinite;
  transform-origin: 0 80px;
}

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

.priority-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 115, 122, 0.1);
}

.priority-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

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

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.72; }
}

@keyframes scanFlow {
  from { transform: translateX(-160%); }
  to { transform: translateX(320%); }
}

@keyframes riseGlow {
  0%, 100% { transform: scaleX(0.96); filter: brightness(1); }
  50% { transform: scaleX(1); filter: brightness(1.15); }
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitDot {
  from { transform: rotate(0deg) translateX(72px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(72px) rotate(-360deg); }
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.quote-mark {
  color: var(--accent-alt);
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.cta-band {
  padding: 2rem 0 4.5rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 115, 122, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 211, 181, 0.48);
  box-shadow: 0 0 0 4px rgba(61, 211, 181, 0.1);
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.pdf-export-actions {
  margin-top: 0.35rem;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(177, 92, 70, 0.18);
  background: rgba(255, 244, 240, 0.92);
  color: #8f402b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-card {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 115, 122, 0.1);
  box-shadow: var(--shadow);
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 340px;
  border-radius: 22px;
}

.stack {
  display: grid;
  gap: 1rem;
}

.cta-wrapper {
  padding: 2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(98, 208, 245, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 248, 0.96));
  border: 1px solid rgba(37, 115, 122, 0.1);
  box-shadow: var(--shadow);
}

.cta-wrapper h2 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid rgba(37, 115, 122, 0.08);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: liftIn 700ms ease forwards;
}

.reveal.delay-1 {
  animation-delay: 120ms;
}

.reveal.delay-2 {
  animation-delay: 220ms;
}

.reveal.delay-3 {
  animation-delay: 320ms;
}

@keyframes liftIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .page-shell,
  .split-grid,
  .detail-grid,
  .services-grid,
  .tools-grid,
  .feature-grid,
  .info-grid,
  .testimonial-grid,
  .related-grid,
  .contact-grid,
  .contact-grid-wide,
  .tool-shell,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

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

  .section-head,
  .site-header .container,
  .topbar .container {
    align-items: start;
  }

  .sticky-panel {
    position: static;
    top: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 0.6rem;
    padding: 1rem 1rem 1.2rem;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    background: rgba(248, 252, 251, 0.98);
    border-bottom: 1px solid rgba(37, 115, 122, 0.1);
    box-shadow: 0 18px 40px rgba(29, 73, 80, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav .button-secondary,
  .main-nav .button {
    width: 100%;
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .home-page .topbar {
    display: none;
  }

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

  .hero,
  section,
  .page-hero {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .visual-shell {
    inset: 1.25rem 0 0;
  }

  .comparison-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: auto;
    padding: 0.9rem;
    border-radius: 24px;
  }

  .visual-primary,
  .visual-secondary,
  .visual-tertiary {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin-bottom: 1rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .section-title {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    line-height: 1.04;
  }

  .hero p,
  .page-hero p,
  .section-intro,
  .lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .topbar .container {
    gap: 0.35rem;
    font-size: 0.82rem;
  }

  .topbar .container,
  .site-footer .container {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0;
  }

  .brand {
    gap: 0.7rem;
    flex: 1;
    min-width: 0;
  }

  .brand img {
    width: clamp(122px, 42vw, 170px);
    max-height: 54px;
  }

  .brand-copy {
    display: none;
  }

  .nav-toggle {
    align-self: center;
    flex: 0 0 auto;
    min-height: 44px;
  }

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

  .button,
  .button-secondary {
    width: 100%;
    min-height: 52px;
  }

  .hero-stats {
    gap: 0.85rem;
    margin-top: 1.25rem;
  }

  .home-page .hero {
    padding-top: 1.6rem;
  }

  .home-page .hero-grid {
    gap: 1.25rem;
  }

  .home-page .hero-visual {
    display: none;
  }

  .home-page .eyebrow {
    max-width: 100%;
    line-height: 1.4;
  }

  .home-page .home-mobile-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .home-page .hero-stats .stat-card {
    padding: 1rem;
  }

  .home-page .hero-stats .stat-card strong {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .home-page .hero-stats .stat-card span {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .section-head {
    gap: 0.8rem;
    margin-bottom: 1.35rem;
  }

  .tool-form-card,
  .tool-result-card,
  .tool-card,
  .service-card,
  .info-card,
  .faq-card,
  .contact-card,
  .timeline-card,
  .testimonial-card,
  .stat-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-screen {
    padding: 0.95rem;
  }

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

  .flow-track {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-line {
    width: 2px;
    height: 26px;
    flex: 0 0 auto;
    margin: 0 auto;
  }

  .flow-line::after {
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
  }

  .status-item {
    padding: 0.8rem 0.85rem 0.8rem 2rem;
  }

  .status-item::before {
    left: 0.82rem;
    top: 1rem;
  }

  .map-embed {
    min-height: 280px;
  }

  .schedule-table {
    min-width: 480px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.7rem 0.55rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .home-page .site-header {
    position: relative;
  }

  .home-page .hero {
    padding-top: 1.35rem;
    padding-bottom: 2rem;
  }

  .hero,
  section,
  .page-hero {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 0.42rem 0.72rem;
  }

  .hero h1,
  .page-hero h1 {
    margin-top: 0.9rem;
    font-size: clamp(1.95rem, 11vw, 2.65rem);
  }

  .home-page .hero h1 {
    font-size: clamp(1.88rem, 10.2vw, 2.45rem);
    line-height: 1.03;
  }

  .hero p,
  .page-hero p,
  .section-intro,
  .lead {
    font-size: 0.94rem;
  }

  .home-page .hero p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .home-page .eyebrow {
    font-size: 0.69rem;
    padding: 0.4rem 0.68rem;
  }

  .home-page .hero-stats {
    margin-top: 1rem;
  }

  .home-page .stat-card {
    border-radius: 18px;
  }

  .home-page .mini-tag {
    font-size: 0.76rem;
    padding: 0.48rem 0.65rem;
  }

  .tool-form-card,
  .tool-result-card {
    padding: 1rem 0.9rem;
  }

  .tool-form label,
  .contact-form label {
    font-size: 0.88rem;
  }

  .card-icon {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
  }

  .service-screen h3,
  .tool-card h3,
  .service-card h3,
  .info-card h3,
  .faq-card h3,
  .timeline-card h3 {
    font-size: 0.98rem;
  }

  .signal-card,
  .flow-step,
  .status-item {
    border-radius: 16px;
  }
}
