:root {
  --navy-900: #1C2737;
  --navy-800: #142D50;
  --navy-700: #344C6E;
  --gold-500: #DCBA74;
  --gold-600: #D0BD95;
  --beige-50: #F9F2E6;
  --beige-100: #F2E8D9;
  --white: #FFFFFF;
  --text: #1C2737;
  --muted: #5D6B7A;
  --ring: rgba(220, 186, 116, .35);
  --shadow: 0 14px 40px rgba(20, 45, 80, .18);
  --shadow-soft: 0 10px 26px rgba(20, 45, 80, .12);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --hfont: "Avenir Next", Avenir, "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --bfont: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--bfont);
  color: var(--text);
  background: var(--beige-50);
}

a {
  color: inherit;
  text-decoration: none
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.grid {
  display: grid;
  gap: 18px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(160%) blur(10px);
  background: rgba(249, 242, 230, .86);
  border-bottom: 1px solid rgba(20, 45, 80, .10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  height: 64px;
  width: auto;
  display: block;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1151px) {
  .nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
  }
}

.nav a {
  font-weight: 600;
  color: rgba(28, 39, 55, .92);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(220, 186, 116, .18);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  padding: 4px;
  z-index: 40;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--navy-800);
  border-radius: 4px;
  transition: all 0.3s linear;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 10px 22px rgba(220, 186, 116, .28);
}

.btn-primary:hover {
  background: #E4C584
}

.btn-ghost {
  background: transparent;
  border-color: rgba(20, 45, 80, .18);
  color: var(--navy-900);
}

.btn-ghost:hover {
  background: rgba(20, 45, 80, .06)
}

.btn-dark {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(20, 45, 80, .28);
}

.btn-dark:hover {
  background: #17335B
}

/* Hero */
.hero {
  padding: 44px 0 26px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(20, 45, 80, .96), rgba(20, 45, 80, .90));
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(700px 280px at 25% 20%, rgba(220, 186, 116, .18), transparent 60%),
    radial-gradient(560px 240px at 75% 15%, rgba(42, 108, 145, .22), transparent 55%),
    radial-gradient(900px 420px at 60% 100%, rgba(52, 76, 110, .20), transparent 62%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
  padding: 34px;
  position: relative;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(220, 186, 116, .20);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
  max-width: 100%;
  white-space: normal;
  text-align: left;
}

.kicker span {
  color: var(--gold-500)
}

h1 {
  font-family: var(--hfont);
  font-size: 42px;
  line-height: 1.12;
  margin: 14px 0 10px;
  letter-spacing: -.02em;
  word-wrap: break-word;
  hyphens: auto;
}

.lead {
  font-size: 16.6px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .90);
  margin: 0 0 18px;
  max-width: 56ch;
}

.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 22px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-top: 6px;
  flex: 0 0 auto;
}

/* Hero Lead Flow */
.hero-flow {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(20, 45, 80, 0.4);
  border: 1px solid rgba(220, 186, 116, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-flow::before {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 48px;
  width: 2px;
  background: linear-gradient(180deg, rgba(220, 186, 116, 0.8) 0%, rgba(220, 186, 116, 0.2) 100%);
  z-index: 0;
}

.flow-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-800);
  border: 2px solid var(--gold-500);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(220, 186, 116, 0.2);
  transition: all 0.3s ease;
}

.flow-item:hover .flow-item-icon {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: scale(1.05);
}

.flow-item-content {
  padding-top: 6px;
}

.flow-item-content h4 {
  margin: 0 0 6px 0;
  font-family: var(--hfont);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.flow-item-content p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .70);
  margin-top: 10px;
}

.mascot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 26px 26px 0;
}

.mascot-wrap:before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 24px;
  bottom: 0;
  background: var(--bg);
  border-radius: 38px 38px 140px 140px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.mascot {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .18));
}

/* Sections */
section {
  padding: 34px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section-title h2 {
  margin: 0;
  font-family: var(--hfont);
  font-size: 30px;
  letter-spacing: -.015em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.5;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid rgba(20, 45, 80, .10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.card.soft {
  background: linear-gradient(180deg, #FFFFFF, rgba(242, 232, 217, .55));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-800);
  background: rgba(220, 186, 116, .22);
  border: 1px solid rgba(220, 186, 116, .35);
  padding: 7px 10px;
  border-radius: 999px;
}

/* Audience */
.audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.aud {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(20, 45, 80, .08);
  border: 1px solid rgba(20, 45, 80, .12);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--navy-800);
}

.aud h3 {
  margin: 0 0 6px;
  font-family: var(--hfont);
  font-size: 18px;
}

.aud p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14.3px;
}

/* Steps */
.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step h3 {
  margin: 10px 0 6px;
  font-family: var(--hfont);
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

/* Categories */
.cats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.cat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  padding: 14px;
  border-radius: 16px;
  background: rgba(20, 45, 80, .04);
  border: 1px solid rgba(20, 45, 80, .10);
}

.cat b {
  font-size: 13.5px;
}

.cat small {
  color: var(--muted);
  line-height: 1.35;
}

/* Pricing */
.pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.tag {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
  background: var(--navy-800);
  padding: 7px 10px;
  border-radius: 999px;
}

.amount {
  font-family: var(--hfont);
  font-size: 34px;
  margin: 8px 0 0;
  letter-spacing: -.02em;
}

.list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.35;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(220, 186, 116, .25);
  border: 1px solid rgba(220, 186, 116, .40);
  margin-top: 2px;
  flex: 0 0 auto;
}

/* Cases */
.cases {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case {
  padding: 0;
  overflow: hidden;
}

.thumb {
  height: 120px;
  background:
    radial-gradient(280px 120px at 20% 30%, rgba(220, 186, 116, .55), transparent 60%),
    radial-gradient(240px 120px at 80% 40%, rgba(42, 108, 145, .35), transparent 55%),
    linear-gradient(135deg, rgba(20, 45, 80, .92), rgba(52, 76, 110, .85));
}

.case-body {
  padding: 14px 16px 16px;
}

.case h3 {
  margin: 0 0 6px;
  font-family: var(--hfont);
  font-size: 16px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12.8px;
}

.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.kv div {
  background: rgba(20, 45, 80, .04);
  border: 1px solid rgba(20, 45, 80, .08);
  border-radius: 14px;
  padding: 10px;
}

.kv small {
  display: block;
  color: var(--muted);
}

.kv b {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

/* Testimonials */
.test {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stars {
  letter-spacing: 2px;
  color: var(--gold-500);
  font-weight: 900;
}

.who {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(20, 45, 80, .12);
}

.who b {
  display: block;
  font-size: 13.5px;
}

.who small {
  display: block;
  color: var(--muted);
}

/* CTA */
.cta {
  background: linear-gradient(180deg, rgba(20, 45, 80, .97), rgba(20, 45, 80, .92));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(220, 186, 116, .22);
  box-shadow: var(--shadow);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 8px;
  font-family: var(--hfont);
  font-size: 26px;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
}

.form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

input {
  font: inherit;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  outline: none;
  min-width: 240px;
}

input:focus {
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(220, 186, 116, .55)
}

/* Footer */
footer {
  padding: 30px 0 46px;
  color: rgba(28, 39, 55, .78);
}

.foot img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.foot-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.foot a {
  display: block;
  padding: 6px 0;
  color: rgba(28, 39, 55, .78);
}

.foot a:hover {
  color: var(--navy-800)
}

.tiny {
  font-size: 12.5px;
  color: rgba(28, 39, 55, .62);
  margin-top: 14px;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 1150px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  h1 {
    font-size: 36px
  }

  .bullets {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .cats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cases {
    grid-template-columns: 1fr 1fr;
  }

  .test {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .form {
    justify-content: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu-wrapper {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100vw;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--gold-500);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .menu-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav a {
    text-align: center;
    padding: 14px;
    width: 100%;
    border-bottom: 1px solid rgba(20, 45, 80, 0.05);
  }

  .actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }

  .actions .btn {
    width: 100%;
    max-width: 320px;
    margin-bottom: 12px;
  }
}

.grid.cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}


.thumb.t1 {
  background: linear-gradient(135deg, rgba(220, 186, 116, .35), rgba(20, 45, 80, .20));
}

.thumb.t2 {
  background: linear-gradient(135deg, rgba(42, 108, 145, .35), rgba(20, 45, 80, .18));
}

.thumb.t3 {
  background: linear-gradient(135deg, rgba(13, 123, 87, .28), rgba(20, 45, 80, .18));
}

@media (max-width: 980px) {
  .grid.cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 32px;
  }

  .hero-flow {
    padding: 20px;
  }

  .hero-flow::before {
    left: 44px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .card.case {
    flex-direction: column !important;
  }

  .card.case .thumb {
    width: 100% !important;
    height: 200px;
  }

  .card.case .case-body {
    padding: 24px !important;
  }

  .mascot-wrap {
    padding: 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-item {
    gap: 14px;
  }

  .hero-flow::before {
    left: 40px;
  }

  .flow-item-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .card.price {
    padding: 18px 14px;
  }

  .card.price .notice {
    padding: 12px;
  }

  .price .list {
    grid-template-columns: 1fr !important;
  }

  .cta {
    padding: 20px 16px;
  }

  .cats {
    grid-template-columns: 1fr 1fr;
  }
}