* {
  box-sizing: border-box;
}

:root {
  --bg: #f1f2ec;
  --surface: #fffef9;
  --surface-alt: #f8f8f2;
  --ink: #0d2440;
  --muted: #5a7089;
  --line: rgba(13, 36, 64, 0.12);
  --blue: #1790e8;
  --blue-deep: #0f376b;
  --green: #24a541;
  --green-deep: #15702d;
  --sidebar: #0b2038;
  --sidebar-soft: #17385f;
  --sand: #d9ceb4;
  --shadow: 0 24px 70px rgba(11, 32, 56, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell-max: 1500px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(36, 165, 65, 0.12), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(23, 144, 232, 0.14), transparent 18%),
    linear-gradient(180deg, #fcfcf7 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

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

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

.page-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  max-width: var(--shell-max);
  margin: 0 auto;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 22px;
  background:
    radial-gradient(circle at top left, rgba(36, 165, 65, 0.24), transparent 26%),
    linear-gradient(180deg, var(--sidebar) 0%, var(--sidebar-soft) 100%);
  color: #fff;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.sidebar-brand img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px;
}

.sidebar-brand strong,
h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
}

.sidebar-brand strong {
  display: block;
  font-size: 2rem;
  line-height: 0.92;
}

.sidebar-brand span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.sidebar-nav a,
.sidebar-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.sidebar-nav a.primary-link,
.sidebar-nav button.primary-link {
  background: linear-gradient(135deg, #25d366, #149942);
  color: #fff;
}

.sidebar-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.sidebar-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.92rem;
}

.sidebar-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.content {
  padding: 26px 28px 40px;
}

.topbar {
  display: none;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  padding: 5px;
  box-shadow: var(--shadow);
}

.topbar-brand strong {
  display: block;
  font-size: 1.8rem;
  line-height: 0.92;
  color: var(--blue-deep);
}

.topbar-brand span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.mobile-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.mobile-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(19, 61, 122, 0.08);
  color: var(--blue-deep);
  font-weight: 700;
}

.hero-banner,
.section-card,
.hero-visual-card,
.line-card,
.cta-strip,
.feature-panel,
.form-panel,
.detail-panel,
.legal-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 244, 0.98)),
    linear-gradient(120deg, #f4f7fb, #ffffff);
  min-height: 470px;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c912f, #2ed45e);
  opacity: 0.96;
}

.hero-banner::after {
  content: "VC";
  position: absolute;
  right: 18px;
  bottom: -36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15rem;
  line-height: 1;
  color: rgba(15, 55, 107, 0.06);
  pointer-events: none;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 55, 107, 0.08);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-kicker {
  position: relative;
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  position: relative;
  margin: 10px 0 16px;
  font-size: clamp(3.3rem, 6.4vw, 5.9rem);
  line-height: 0.86;
  text-transform: uppercase;
  color: var(--blue-deep);
  max-width: 10ch;
}

.hero-banner p {
  position: relative;
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.button-row,
.page-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  position: relative;
  margin-top: 26px;
}

.hero-footnotes {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--blue-deep);
  font-weight: 800;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-footnotes div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 55, 107, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover,
.sidebar-nav a:hover,
.mobile-nav a:hover,
.inline-link:hover {
  transform: translateY(-1px);
}

.is-hidden {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #149843);
  color: #fff;
}

.btn-secondary {
  background: rgba(15, 55, 107, 0.08);
  color: var(--blue-deep);
}

.btn-dark {
  background: linear-gradient(135deg, #0f376b, #154d92);
  color: #fff;
}

.hero-visual-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(217, 206, 180, 0.18) 0%, rgba(255, 255, 255, 0.95) 100%),
    linear-gradient(160deg, #eef3f6, #fbfbf8);
}

.hero-visual-card img {
  width: 100%;
  border-radius: 22px;
  filter: saturate(1.02) contrast(1.02);
}

.metrics-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-top: 22px;
}

.cta-strip {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  background:
    radial-gradient(circle at top right, rgba(36, 165, 65, 0.28), transparent 28%),
    linear-gradient(135deg, #0e2a50, #143f77);
  color: #fff;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 3.2rem;
}

.cta-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-strip h2,
.feature-panel h2,
.section-card h2,
.page-hero h2,
.form-panel h2,
.detail-panel h2,
.legal-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: var(--blue-deep);
}

.cta-strip h2 {
  color: #fff;
}

.cta-strip p,
.section-card p,
.line-card p,
.feature-panel p,
.form-panel p,
.detail-panel p,
.legal-panel p,
.page-hero p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.86);
}

.section-card {
  padding: 30px;
  background: var(--surface);
  margin-top: 22px;
  border: 1px solid rgba(15, 55, 107, 0.07);
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(19, 61, 122, 0.08);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.line-grid,
.panel-grid,
.three-grid,
.two-grid {
  display: grid;
  gap: 18px;
}

.line-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.two-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

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

.line-card,
.feature-panel,
.form-panel,
.detail-panel,
.legal-panel {
  padding: 24px;
  background: linear-gradient(180deg, #fffef9, #f6f7f2);
  border: 1px solid var(--line);
}

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

.line-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--blue), #55b7ff);
}

.line-card.green-line::before {
  background: linear-gradient(90deg, var(--green), #4dd969);
}

.line-card.steel-line::before {
  background: linear-gradient(90deg, #274f7d, #6387ae);
}

.line-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 55, 107, 0.08);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--blue-deep);
}

h4 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--blue-deep);
}

.feature-list,
.compact-list {
  margin: 16px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--blue-deep);
  font-weight: 800;
}

.feature-panel.emphasis {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #167d2b, #25a443);
  color: #fff;
}

.feature-panel.emphasis h2,
.feature-panel.emphasis h3,
.feature-panel.emphasis p,
.feature-panel.emphasis li {
  color: #fff;
}

.feature-panel.emphasis .section-label {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.feature-panel.soft-blue {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #0f2d58, #194984);
  color: #fff;
}

.feature-panel.soft-blue h2,
.feature-panel.soft-blue h3,
.feature-panel.soft-blue p,
.feature-panel.soft-blue li {
  color: #fff;
}

.feature-panel.soft-blue .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-hero {
  padding: 6px 0 18px;
}

.page-hero p {
  max-width: 70ch;
}

.form-panel form,
.simple-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--blue-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

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

.hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.checklist div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 55, 107, 0.06);
  color: var(--blue-deep);
  font-weight: 700;
}

.notice {
  padding: 18px;
  border-radius: 16px;
  background: rgba(19, 61, 122, 0.06);
  color: var(--muted);
}

.legal-panel {
  background: #fff;
}

.legal-box {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(19, 61, 122, 0.05);
  border: 1px solid var(--line);
}

.footer-card {
  margin-top: 22px;
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffef9, #f8f8f2);
  box-shadow: var(--shadow);
}

.footer-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
}

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

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 24px 45px rgba(37, 211, 102, 0.38);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 1180px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .topbar {
    display: block;
    margin-bottom: 18px;
  }

  .content {
    padding-top: 20px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .metrics-strip,
  .two-grid,
  .line-grid,
  .three-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-icon {
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 760px) {
  .content {
    padding: 18px 14px 34px;
  }

  .hero-banner,
  .section-card,
  .cta-strip,
  .hero-visual-card,
  .line-card,
  .feature-panel,
  .form-panel,
  .detail-panel,
  .legal-panel,
  .footer-card {
    padding: 20px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  h3 {
    font-size: 1.7rem;
  }
}
