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

:root {
  --flux-cyan: #00c8f0;
  --flux-void: #0c0f17;
  --flux-cloud: #ecf0ff;
  --flux-gold: #f0a500;
  --flux-surface: #1a2030;
  --flux-header-black: #0e0f11;
  --flux-border: rgba(236, 240, 255, 0.14);
  --flux-border-strong: rgba(236, 240, 255, 0.24);
  --flux-muted: #b6c0de;
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-strong: #f0f5fa;
  --ink: #031326;
  --ink-soft: #35516b;
  --primary: #1fcad3;
  --primary-deep: #0f3f7b;
  --accent: #14b2cc;
  --line: #d5e2ef;
  --danger: #b42318;
  --success: #027a48;
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --shadow-soft: 0 20px 50px rgba(5, 24, 53, 0.12);
  --shadow-card: 0 10px 35px rgba(5, 24, 53, 0.09);
  --max-width: 1160px;
  --font-heading: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --fs-body: clamp(1rem, 0.16vw + 0.96rem, 1.08rem);
  --fs-lead: clamp(1.08rem, 0.48vw + 0.98rem, 1.26rem);
  --fs-h1: clamp(2.1rem, 5vw, 3.7rem);
  --fs-h2: clamp(1.62rem, 3.3vw, 2.45rem);
  --fs-h3: clamp(1.14rem, 1.1vw, 1.34rem);
  --lh-body: 1.68;
  --lh-tight: 1.1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: radial-gradient(circle at 8% 12%, #d5fbff 0, #d5fbff 9%, transparent 33%),
    radial-gradient(circle at 92% 0%, #d9e6ff 0, #d9e6ff 10%, transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 48%, #ecf4fa 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 2.2rem));
  margin-inline: auto;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0e0f11;
  border-bottom: 1px solid rgba(236, 240, 255, 0.14);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.topbar.scrolled {
  box-shadow: 0 10px 24px rgba(2, 6, 12, 0.35);
  background: #0e0f11;
}

.nav {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: fit-content;
}

.brand img {
  width: 190px;
  height: auto;
}

.menu {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.menu a,
.drop-trigger {
  color: rgba(236, 240, 255, 0.9);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.6rem 0.85rem;
  border-radius: 0.65rem;
  transition: background 0.2s ease, color 0.2s ease;
  border: 0;
  background: transparent;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.menu a:hover,
.menu a.active,
.drop-trigger:hover,
.drop:hover > .drop-trigger,
.drop:focus-within > .drop-trigger {
  background: rgba(236, 240, 255, 0.12);
  color: var(--flux-cloud);
}

.drop {
  position: relative;
}

.dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.dropdown a {
  padding: 0.65rem 0.8rem;
  border-radius: 0.65rem;
  font-size: 0.97rem;
}

.dropdown a:hover,
.dropdown a.active {
  background: #ecf5ff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(120deg, var(--primary-deep), var(--accent));
  color: #fff;
  font-weight: 600;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 63, 123, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 63, 123, 0.35);
}

.mobile-toggle {
  display: none;
  width: 2.7rem;
  aspect-ratio: 1;
  border-radius: 0.6rem;
  border: 1px solid rgba(236, 240, 255, 0.2);
  background: rgba(236, 240, 255, 0.08);
  font-size: 1.3rem;
  color: var(--flux-cloud);
}

main {
  padding-bottom: 4rem;
}

.hero {
  padding-top: clamp(2.6rem, 5vw, 5rem);
  padding-bottom: clamp(2.6rem, 5vw, 5.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #b8d8fb;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  color: #0e4a84;
  background: #eff7ff;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-heading);
  margin: 0 0 0.9rem;
  font-size: var(--fs-h1);
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
}

.kicker + h1 {
  margin-top: 0.9rem;
}

.lead {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.72;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  border-radius: 0.9rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary-deep), #1477bf 52%, var(--primary));
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 60, 118, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(10, 60, 118, 0.28);
}

.btn-outline {
  border-color: #b2cbeb;
  color: #06376a;
  background: #fff;
}

.btn-outline:hover {
  background: #f4f9ff;
}

.hero-panel {
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(8, 43, 82, 0.94), rgba(17, 70, 132, 0.91));
  color: #fff;
  padding: clamp(1.2rem, 3.4vw, 2.2rem);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-visual {
  border-radius: var(--radius-xl);
  border: 1px solid #c6d8ea;
  background: radial-gradient(circle at 50% 30%, #eef6ff 0%, #dcecff 42%, #c9e2fb 100%);
  min-height: clamp(420px, 52vw, 560px);
  padding: clamp(0.8rem, 2.5vw, 1.5rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(12, 56, 103, 0.22));
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 202, 211, 0.52), transparent 70%);
  bottom: -80px;
  right: -50px;
}

.hero-panel h2 {
  font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.trust-list,
.process-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.68rem;
}

.trust-list li,
.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.95);
}

.trust-list li::before,
.check-list li::before,
.process-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: linear-gradient(120deg, #3cd8e0, #a8f3ff);
  box-shadow: 0 0 0 5px rgba(146, 247, 255, 0.2);
}

.section {
  padding-block: clamp(2rem, 4.8vw, 4rem);
}

.section-title {
  max-width: 70ch;
}

.section h2,
.page-hero h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.section p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.2vw + 0.97rem, 1.08rem);
  line-height: 1.72;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 33, 64, 0.15);
}

.card h3 {
  margin-top: 0.15rem;
  margin-bottom: 0.58rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
}

.card p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.meta-chip {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  background: #ebf5ff;
  color: #033e78;
  border: 1px solid #bdd8f4;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 500;
}

.card-link {
  color: #0859a8;
  font-weight: 600;
  font-size: 0.95rem;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fcfeff, #f6fbff);
  padding: clamp(1rem, 3vw, 2rem);
}

.two-col {
  margin-top: 1.3rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-list li {
  position: relative;
  padding-left: 0.5rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-band {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}

.band-card {
  background: linear-gradient(135deg, #052f62, #0a4d8f 58%, #0ca8bf);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-soft);
}

.band-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}

.contact-pill {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  margin-right: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

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

.metric {
  border-radius: var(--radius-lg);
  border: 1px solid #cfe2f7;
  background: #ffffff;
  padding: 1rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: #0a4383;
}

.metric span {
  color: #3d5a75;
  font-size: 0.9rem;
}

.page-hero {
  padding-top: clamp(2.4rem, 5vw, 4.3rem);
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #44607b;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.breadcrumbs a {
  color: #0357a4;
}

.service-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 1fr;
}

.service-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

.service-block h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
}

.service-block p,
.service-block li {
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.service-block li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.service-block li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: linear-gradient(120deg, #0f4a8a, #1fcad3);
}

.notice {
  background: #eff9ff;
  border: 1px solid #c4e4f8;
  border-radius: 0.85rem;
  color: #0a4e87;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
}

.form-shell {
  display: grid;
  gap: 0.9rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: #1b436a;
  font-weight: 500;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #bad2ea;
  border-radius: 0.7rem;
  padding: 0.75rem 0.78rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #1b89d4;
  box-shadow: 0 0 0 4px rgba(27, 137, 212, 0.14);
}

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

.form-message {
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.94rem;
  display: none;
}

.form-message.error {
  display: block;
  border: 1px solid #f5c2c0;
  background: #fff1f1;
  color: var(--danger);
}

.form-message.success {
  display: block;
  border: 1px solid #8ce2bc;
  background: #ecfff6;
  color: var(--success);
}

footer {
  border-top: 1px solid rgba(236, 240, 255, 0.12);
  padding-block: 2.2rem;
  background: #0e0f11;
  color: var(--flux-cloud);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-brand img {
  width: 170px;
}

.footer-brand p {
  color: rgba(236, 240, 255, 0.72);
}

.footer-title {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--flux-cloud);
}

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

.footer-list a {
  color: rgba(236, 240, 255, 0.82);
}

.footer-list a:hover {
  color: #c1f7ff;
}

.footer-note {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(236, 240, 255, 0.1);
  padding-top: 1rem;
  color: rgba(236, 240, 255, 0.65);
  font-size: 0.9rem;
}

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

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

.stack-top {
  margin-top: 1.3rem;
}

.error-layout {
  max-width: 680px;
}

.error-card {
  text-align: center;
}

.error-brand {
  margin: 0 auto 1rem;
  width: 220px;
}

.error-code {
  font-family: var(--font-heading);
}

@media (max-width: 1000px) {
  .hero-grid,
  .service-layout,
  .contact-band,
  .footer-grid,
  .card-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .metric-box {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand img {
    width: 168px;
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .menu-wrap {
    position: fixed;
    inset: 4.95rem 0 auto;
    background: #0e0f11;
    border-bottom: 1px solid rgba(236, 240, 255, 0.16);
    padding: 0.8rem 1rem 1rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-wrap.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .menu a,
  .drop-trigger,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .drop {
    width: 100%;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0.3rem 0 0.3rem 0.65rem;
    min-width: 100%;
    display: none;
  }

  .drop.open .dropdown {
    display: grid;
  }

  .drop:hover .dropdown,
  .drop:focus-within .dropdown {
    transform: none;
  }

  .nav {
    height: 5rem;
  }

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

  .hero-visual img {
    width: min(100%, 360px);
  }

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

@media (max-width: 620px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.3rem));
  }

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

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

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

  .metric-box {
    grid-template-columns: 1fr;
  }

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

  .hero-visual img {
    width: min(100%, 300px);
  }
}

/* ===============================
   Home Premium Redesign (B2B AI)
   =============================== */
.home-page {
  background:
    radial-gradient(1200px 620px at 82% -15%, rgba(0, 200, 240, 0.14), transparent 70%),
    radial-gradient(760px 540px at 10% 8%, rgba(240, 165, 0, 0.08), transparent 72%),
    linear-gradient(180deg, #0b0e15 0%, #0c0f17 44%, #0a0d14 100%);
  color: var(--flux-cloud);
}

.home-page .page-shell {
  background: transparent;
}

.home-page main {
  padding-bottom: 0;
}

.home-page a,
.home-page button {
  -webkit-tap-highlight-color: transparent;
}

.home-page a:focus-visible,
.home-page button:focus-visible {
  outline: 2px solid var(--flux-cyan);
  outline-offset: 3px;
}

.home-page .topbar {
  background: #0e0f11;
  border-bottom: 1px solid rgba(236, 240, 255, 0.1);
}

.home-page .topbar.scrolled {
  background: #0e0f11;
  border-bottom-color: rgba(236, 240, 255, 0.16);
  box-shadow: 0 8px 24px rgba(1, 3, 8, 0.38);
}

.home-page .nav {
  height: 5.45rem;
  gap: 1.5rem;
}

.home-page .brand {
  background: #0e0f11;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.home-page .brand img {
  width: 202px;
}

.home-page .menu {
  gap: 0.42rem;
}

.home-page .menu a,
.home-page .drop-trigger {
  color: rgba(236, 240, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.56rem 0.84rem;
  border-radius: 0.7rem;
  transition: background-color 260ms ease, color 260ms ease;
}

.home-page .menu a:hover,
.home-page .menu a.active,
.home-page .drop-trigger:hover,
.home-page .drop:hover > .drop-trigger,
.home-page .drop:focus-within > .drop-trigger {
  color: var(--flux-cloud);
  background: rgba(236, 240, 255, 0.11);
}

.home-page .dropdown {
  min-width: 292px;
  background: rgba(20, 25, 38, 0.98);
  border: 1px solid rgba(236, 240, 255, 0.14);
  box-shadow: 0 20px 34px rgba(2, 5, 11, 0.42);
}

.home-page .dropdown a {
  color: rgba(236, 240, 255, 0.86);
}

.home-page .dropdown a:hover,
.home-page .dropdown a.active {
  color: var(--flux-cloud);
  background: rgba(0, 200, 240, 0.12);
}

.home-page .nav-cta {
  background: linear-gradient(130deg, #0cc3ea, #00c8f0);
  color: #08121e;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.68rem 1.04rem;
  box-shadow: 0 10px 20px rgba(0, 200, 240, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.home-page .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 200, 240, 0.28);
}

.home-page .mobile-toggle {
  background: rgba(236, 240, 255, 0.08);
  color: var(--flux-cloud);
  border: 1px solid rgba(236, 240, 255, 0.18);
}

.home-page .home-hero {
  position: relative;
  padding-top: clamp(4.2rem, 8vw, 6.4rem);
  padding-bottom: clamp(1.15rem, 2.6vw, 2rem);
}

.home-page .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.3rem, 3.4vw, 2.8rem);
  align-items: center;
}

.home-page .hero-copy {
  max-width: 720px;
}

.home-page .eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 200, 240, 0.32);
  border-radius: 999px;
  background: rgba(0, 200, 240, 0.1);
  color: #9feeff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.78rem;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--flux-cloud);
}

.home-page h1 {
  margin-top: 1rem;
  font-size: clamp(2.52rem, 5.5vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.home-page .hero-lead {
  margin: 1.2rem 0 0;
  font-size: clamp(1.26rem, 1.5vw, 1.37rem);
  line-height: 1.5;
  color: var(--flux-muted);
  max-width: 58ch;
}

.home-page .hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
}

.home-page .premium-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.86rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  padding: 0.84rem 1.14rem;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease,
    color 260ms ease, box-shadow 260ms ease;
}

.home-page .premium-button.is-primary {
  background: linear-gradient(135deg, #0ec2e8, #00c8f0);
  color: #08121c;
  box-shadow: 0 10px 20px rgba(0, 200, 240, 0.22);
}

.home-page .premium-button.is-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 200, 240, 0.29);
}

.home-page .premium-button.is-secondary {
  border-color: rgba(236, 240, 255, 0.3);
  color: var(--flux-cloud);
  background: rgba(236, 240, 255, 0.02);
}

.home-page .premium-button.is-secondary:hover {
  border-color: rgba(236, 240, 255, 0.56);
  background: rgba(236, 240, 255, 0.08);
}

.home-page .hero-visual {
  border-radius: 1.35rem;
  border: 1px solid var(--flux-border);
  background:
    linear-gradient(175deg, rgba(35, 42, 62, 0.95), rgba(23, 28, 43, 0.98)),
    radial-gradient(circle at 82% 14%, rgba(0, 200, 240, 0.16), transparent 64%);
  box-shadow: 0 24px 42px rgba(2, 5, 12, 0.42);
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  min-height: 540px;
}

.home-page .hero-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.home-page .badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 240, 0.35);
  color: #9feeff;
  background: rgba(0, 200, 240, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.3rem 0.64rem;
}

.home-page .badge.is-gold {
  border-color: rgba(240, 165, 0, 0.45);
  color: #ffd482;
  background: rgba(240, 165, 0, 0.12);
}

.home-page .visual-status {
  font-size: 0.83rem;
  color: rgba(236, 240, 255, 0.82);
}

.home-page .hero-architecture {
  position: relative;
  border: 1px solid var(--flux-border);
  border-radius: 1rem;
  background: rgba(12, 15, 23, 0.62);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "crm hub whatsapp"
    "erp hub api"
    "slack hub notion"
    "gmail hub .";
  gap: 0.72rem;
  padding: 0.85rem;
  min-height: 320px;
}

.home-page .hero-architecture::before,
.home-page .hero-architecture::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 240, 0.28), transparent);
  pointer-events: none;
}

.home-page .hero-architecture::before {
  height: 1px;
  left: 14%;
  right: 14%;
  top: 50%;
}

.home-page .hero-architecture::after {
  width: 1px;
  top: 16%;
  bottom: 16%;
  left: 50%;
  transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent, rgba(0, 200, 240, 0.3), transparent);
}

.home-page .flow-pill {
  place-self: center;
  border-radius: 0.72rem;
  border: 1px solid rgba(236, 240, 255, 0.16);
  background: rgba(236, 240, 255, 0.04);
  color: rgba(236, 240, 255, 0.92);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.44rem 0.66rem;
  min-width: 92px;
  text-align: center;
}

.home-page .flow-hub {
  grid-area: hub;
  place-self: center;
  border-radius: 0.84rem;
  border: 1px solid rgba(0, 200, 240, 0.44);
  background: rgba(0, 200, 240, 0.12);
  color: var(--flux-cloud);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  width: min(190px, 100%);
  padding: 0.6rem 0.6rem;
  box-shadow: inset 0 0 0 1px rgba(236, 240, 255, 0.08);
}

.home-page .p-crm {
  grid-area: crm;
}

.home-page .p-erp {
  grid-area: erp;
}

.home-page .p-whatsapp {
  grid-area: whatsapp;
}

.home-page .p-gmail {
  grid-area: gmail;
}

.home-page .p-api {
  grid-area: api;
}

.home-page .p-slack {
  grid-area: slack;
}

.home-page .p-notion {
  grid-area: notion;
}

.home-page .hero-visual-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.home-page .visual-panel {
  border: 1px solid var(--flux-border);
  border-radius: 0.9rem;
  background: rgba(236, 240, 255, 0.03);
  padding: 0.7rem;
}

.home-page .visual-panel p {
  margin: 0;
  color: var(--flux-muted);
  font-size: 0.82rem;
}

.home-page .visual-panel strong {
  display: block;
  margin-top: 0.34rem;
  color: var(--flux-cloud);
  font-size: 0.93rem;
  line-height: 1.36;
}

.home-page .home-section {
  padding: clamp(3.1rem, 6vw, 5rem) 0;
}

.home-page .home-hero + .home-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.home-page .section-header {
  max-width: 800px;
}

.home-page .section-header h2 {
  margin-top: 0.95rem;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
}

.home-page .section-header p {
  margin: 0.95rem 0 0;
  color: var(--flux-muted);
  font-size: clamp(1.06rem, 0.95vw, 1.16rem);
  line-height: 1.55;
}

.home-page .feature-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.88rem;
}

.home-page .feature-card {
  border: 1px solid var(--flux-border);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(26, 32, 48, 0.86), rgba(20, 25, 38, 0.92));
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.home-page .feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--flux-border-strong);
}

.home-page .feature-card h3 {
  font-size: clamp(1.42rem, 1.8vw, 1.86rem);
  line-height: 1.06;
}

.home-page .feature-card p {
  margin: 0;
  color: var(--flux-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.home-page .feature-card .feature-outcome {
  color: rgba(236, 240, 255, 0.94);
  font-weight: 500;
}

.home-page .service-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.88rem;
}

.home-page .service-card {
  border: 1px solid var(--flux-border);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(26, 32, 48, 0.9), rgba(18, 23, 35, 0.95));
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 100%;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.home-page .service-card:hover {
  transform: translateY(-3px);
  border-color: var(--flux-border-strong);
}

.home-page .service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.54rem;
  flex-wrap: wrap;
}

.home-page .service-time {
  color: rgba(236, 240, 255, 0.78);
  font-size: 0.8rem;
}

.home-page .service-card h3 {
  font-size: clamp(1.42rem, 1.75vw, 1.82rem);
  line-height: 1.06;
}

.home-page .service-card > p {
  margin: 0;
  color: var(--flux-muted);
  line-height: 1.52;
}

.home-page .service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.home-page .service-list li {
  position: relative;
  margin: 0;
  padding-left: 1.06rem;
  color: rgba(236, 240, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.45;
}

.home-page .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--flux-cyan);
}

.home-page .service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #8defff;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: border-color 260ms ease, color 260ms ease;
}

.home-page .service-link:hover {
  color: #c4f8ff;
  border-color: rgba(196, 248, 255, 0.7);
}

.home-page .differential-stack {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.72rem;
}

.home-page .differential-row {
  border: 1px solid var(--flux-border);
  border-radius: 0.95rem;
  background: linear-gradient(110deg, rgba(26, 32, 48, 0.85), rgba(15, 20, 31, 0.92));
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  transition: border-color 260ms ease, transform 260ms ease;
}

.home-page .differential-row:hover {
  border-color: var(--flux-border-strong);
  transform: translateY(-2px);
}

.home-page .differential-row h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  line-height: 1.08;
}

.home-page .differential-row p {
  margin: 0;
  color: var(--flux-muted);
  line-height: 1.52;
}

.home-page .process-stepper {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.74rem;
}

.home-page .process-step {
  position: relative;
  border: 1px solid var(--flux-border);
  border-radius: 0.95rem;
  background: rgba(26, 32, 48, 0.9);
  padding: 0.86rem;
  display: grid;
  gap: 0.52rem;
  min-height: 170px;
}

.home-page .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.56rem;
  right: -0.54rem;
  width: 0.5rem;
  height: 1px;
  background: rgba(236, 240, 255, 0.32);
}

.home-page .step-number {
  font-family: var(--font-heading);
  color: #83ecff;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.home-page .process-step h3 {
  font-size: clamp(1.34rem, 1.7vw, 1.54rem);
  line-height: 1.08;
}

.home-page .process-step p {
  margin: 0;
  color: var(--flux-muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.home-page .cta-section {
  border: 1px solid rgba(0, 200, 240, 0.3);
  border-radius: 1.2rem;
  background:
    radial-gradient(920px 330px at 88% -20%, rgba(0, 200, 240, 0.24), transparent 60%),
    linear-gradient(140deg, rgba(26, 32, 48, 0.92), rgba(15, 20, 31, 0.95));
  padding: clamp(1.05rem, 3.2vw, 2rem);
}

.home-page .cta-section h2 {
  margin-top: 0.95rem;
  font-size: clamp(1.94rem, 3.7vw, 2.86rem);
  line-height: 1.03;
}

.home-page .cta-section p {
  margin: 0.95rem 0 0;
  color: var(--flux-muted);
  line-height: 1.52;
  font-size: clamp(1.04rem, 0.85vw, 1.14rem);
  max-width: 70ch;
}

.home-page .footer-premium {
  border-top: 1px solid rgba(236, 240, 255, 0.1);
  background: #0e0f11;
  padding: 3rem 0 2.1rem;
}

.home-page .footer-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.72fr));
}

.home-page .footer-brand-block img {
  width: 186px;
}

.home-page .footer-brand-block p {
  margin: 0.95rem 0 0;
  color: var(--flux-muted);
  max-width: 36ch;
  line-height: 1.56;
}

.home-page .footer-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.15;
}

.home-page .footer-list {
  margin-top: 0.7rem;
}

.home-page .footer-list a {
  color: rgba(236, 240, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
}

.home-page .footer-list a:hover {
  color: #c1f7ff;
}

.home-page .footer-note {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(236, 240, 255, 0.08);
  padding-top: 0.95rem;
  color: rgba(236, 240, 255, 0.65);
  font-size: 0.88rem;
}

.home-page .reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(5px);
  transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease;
}

.home-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1120px) {
  .home-page .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page h1 {
    max-width: 15ch;
  }

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

  .home-page .feature-grid,
  .home-page .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .process-stepper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .process-step:nth-child(3)::after,
  .home-page .process-step:nth-child(5)::after {
    display: none;
  }

  .home-page .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-page .topbar {
    background: #0e0f11;
  }

  .home-page .menu-wrap {
    background: #0e0f11;
    border-bottom-color: rgba(236, 240, 255, 0.14);
  }

  .home-page .menu {
    gap: 0.45rem;
  }

  .home-page .menu a,
  .home-page .drop-trigger,
  .home-page .nav-cta {
    justify-content: flex-start;
  }

  .home-page .dropdown {
    border: 0;
    box-shadow: none;
  }

  .home-page .hero-architecture {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "hub hub"
      "crm whatsapp"
      "erp api"
      "gmail slack"
      "notion notion";
  }

  .home-page .hero-architecture::before,
  .home-page .hero-architecture::after {
    display: none;
  }

  .home-page .hero-visual-panels,
  .home-page .feature-grid,
  .home-page .service-grid,
  .home-page .process-stepper,
  .home-page .footer-layout {
    grid-template-columns: 1fr;
  }

  .home-page .differential-row {
    grid-template-columns: 1fr;
  }

  .home-page .process-step {
    min-height: auto;
  }

  .home-page .process-step:not(:last-child)::after {
    width: 1px;
    height: 0.55rem;
    right: auto;
    left: 1.4rem;
    top: auto;
    bottom: -0.56rem;
  }
}

@media (max-width: 620px) {
  .home-page .home-hero {
    padding-top: 3.7rem;
    padding-bottom: 1rem;
  }

  .home-page .eyebrow {
    font-size: 0.77rem;
  }

  .home-page h1 {
    font-size: clamp(2.52rem, 12.8vw, 3rem);
  }

  .home-page .section-header h2,
  .home-page .cta-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.12rem);
  }

  .home-page .hero-actions,
  .home-page .premium-button {
    width: 100%;
  }

  .home-page .premium-button {
    justify-content: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  .home-page .reveal,
  .home-page .reveal.visible {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }

  .home-page .premium-button,
  .home-page .service-card,
  .home-page .feature-card,
  .home-page .differential-row,
  .home-page .nav-cta {
    transition: none;
  }
}
