/* ===== LeadFlow Media - Global Stylesheet ===== */
:root {
  --navy: #1B4F8C;
  --navy-deep: #123A6B;
  --navy-ink: #0C2748;
  --orange: #F26522;
  --orange-soft: #FF7C3D;
  --ink: #11233B;
  --slate: #5A6B82;
  --mist: #F4F7FB;
  --cloud: #EAF1F9;
  --white: #FFFFFF;
  --line: #E2EAF3;
  --shadow: 0 18px 50px -22px rgba(18, 58, 107, .45);
  --shadow-sm: 0 8px 24px -14px rgba(18, 58, 107, .4);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--navy-ink)
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem)
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem)
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem)
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px
}

.lead {
  font-size: 1.12rem;
  color: var(--slate);
  max-width: 60ch
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .95rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform .35s var(--ease)
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(242, 101, 34, .7)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -12px rgba(242, 101, 34, .8)
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px)
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(27, 79, 140, .7)
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: var(--navy-deep)
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .4s var(--ease);
  background-color: #fff;
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -18px rgba(18, 58, 107, .5);
  padding: 10px 0
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy-ink)
}

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

.brand .lf {
  color: var(--navy)
}

.brand .m {
  color: var(--orange)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem
}

.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding: .3rem 0;
  transition: color .3s
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .35s var(--ease)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.has-drop {
  position: relative
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .7rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap
}

.dropdown a::after {
  display: none
}

.dropdown a:hover {
  background: var(--mist);
  color: var(--orange)
}

.dropdown a .dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--orange);
  flex-shrink: 0
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px
}

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy-ink);
  border-radius: 2px;
  transition: .3s
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
  background: linear-gradient(160deg, #0C2748 0%, #1B4F8C 55%, #123A6B 100%)
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0
}

.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5
}

.hero-bg .b1 {
  width: 520px;
  height: 520px;
  background: var(--orange);
  top: -160px;
  right: -120px;
  animation: float1 14s ease-in-out infinite
}

.hero-bg .b2 {
  width: 420px;
  height: 420px;
  background: #2E6FBF;
  bottom: -180px;
  left: -100px;
  animation: float2 16s ease-in-out infinite
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%)
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-40px, 40px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(40px, -30px)
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center
}

.hero h1 {
  color: #fff
}

.hero h1 .accent {
  color: var(--orange-soft)
}

.hero .eyebrow {
  color: #FFB089
}

.hero .eyebrow::before {
  background: var(--orange-soft)
}

.hero p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.15rem;
  margin: 1.4rem 0 2.2rem;
  max-width: 52ch
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 3rem;
  flex-wrap: wrap
}

.hero-stats .stat strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: #fff;
  display: block;
  line-height: 1
}

.hero-stats .stat span {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  font-weight: 600
}

.hero-visual {
  position: relative
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
}

.hero-card .ring {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 18px
}

.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.hero-card-row:last-child {
  border: none
}

.hero-card-row .label {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  font-weight: 600
}

.hero-card-row .bar {
  flex: 1;
  height: 7px;
  margin: 0 14px;
  background: rgba(255, 255, 255, .14);
  border-radius: 4px;
  overflow: hidden
}

.hero-card-row .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  border-radius: 4px
}

.hero-card-row .val {
  color: #fff;
  font-weight: 700;
  font-size: .9rem
}

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy-ink)
}

.float-badge .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--mist)
}

.float-badge.b-top {
  top: -22px;
  right: 30px;
  animation: bob 5s ease-in-out infinite
}

.float-badge.b-bot {
  bottom: -22px;
  left: -22px;
  animation: bob 5s ease-in-out infinite .8s
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ===== Section frame ===== */
.section {
  padding: 100px 0
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px
}

.section-head.center {
  margin: 0 auto 56px;
  text-align: center
}

.section-head.center .lead {
  margin: 0 auto
}

.section-head h2 {
  margin: .7rem 0 1rem
}

/* ===== Marquee ===== */
.marquee {
  background: var(--navy-ink);
  padding: 22px 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 26s linear infinite;
  width: max-content
}

.marquee span {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  gap: 60px
}

.marquee span::after {
  content: "✦";
  color: var(--orange)
}

@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}

/* ===== Feature cards ===== */
.grid {
  display: grid;
  gap: 28px
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease)
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.card:hover::before {
  transform: scaleX(1)
}

.card .ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mist);
  margin-bottom: 20px;
  transition: .4s
}

.card:hover .ico {
  background: var(--orange);
  transform: rotate(-6deg)
}

.card .ico svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
  transition: .4s
}

.card:hover .ico svg {
  color: #fff
}

.card h3 {
  margin-bottom: .6rem
}

.card p {
  color: var(--slate);
  font-size: .96rem
}

.card .more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--orange)
}

.card .more svg {
  width: 16px;
  height: 16px;
  transition: transform .3s
}

.card:hover .more svg {
  transform: translateX(4px)
}

/* service card with image */
.svc-card {
  padding: 0;
  overflow: hidden
}

.svc-card .thumb {
  height: 190px;
  overflow: hidden;
  position: relative
}

.svc-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.svc-card:hover .thumb img {
  transform: scale(1.08)
}

.svc-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 39, 72, .5))
}

.svc-card .body {
  padding: 28px
}

.svc-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
  letter-spacing: .04em
}

/* ===== Stats band ===== */
.stats-band {
  background: linear-gradient(135deg, var(--navy-ink), var(--navy));
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden
}

.stats-band::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--orange);
  filter: blur(90px);
  opacity: .25;
  top: -150px;
  right: -80px
}

.stats-band .stat {
  position: relative;
  z-index: 2;
  text-align: center
}

.stats-band .stat strong {
  font-family: var(--serif);
  font-size: 3rem;
  color: #fff;
  display: block;
  line-height: 1
}

.stats-band .stat span {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  font-size: .92rem
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step
}

.step {
  position: relative;
  padding-top: 20px
}

.step .num {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--cloud);
  font-weight: 700;
  line-height: 1
}

.step h3 {
  margin: .3rem 0 .6rem
}

.step p {
  color: var(--slate);
  font-size: .94rem
}

.step::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 64px;
  right: -12px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cloud) 0 8px, transparent 8px 16px)
}

.step:last-child::before {
  display: none
}

/* ===== Split / about ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.split-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.split-img.deco::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 24px;
  margin: 14px;
  pointer-events: none
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--ink)
}

.check-list li svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px
}

/* ===== CTA ===== */
.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  border-radius: 30px;
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12)
}

.cta-band::before {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -80px
}

.cta-band::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  right: -60px
}

.cta-band h2 {
  color: #fff;
  position: relative;
  z-index: 2
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  position: relative;
  z-index: 2;
  max-width: 50ch;
  margin: 1rem auto 2rem;
  font-size: 1.1rem
}

.cta-band .btn-light {
  background: #fff;
  color: var(--orange);
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 36px -16px rgba(0, 0, 0, .4)
}

.cta-band .btn-light:hover {
  transform: translateY(-3px)
}

/* ===== Testimonials ===== */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  transition: .4s
}

.quote-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px)
}

.quote-card .stars {
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 2px
}

.quote-card p {
  color: var(--ink);
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 20px
}

.quote-card .who {
  display: flex;
  align-items: center;
  gap: .8rem
}

.quote-card .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--serif)
}

.quote-card .who b {
  display: block;
  font-size: .95rem;
  color: var(--navy-ink)
}

.quote-card .who span {
  font-size: .82rem;
  color: var(--slate)
}

/* ===== Page hero (interior) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(150deg, #0C2748, #1B4F8C);
  overflow: hidden
}

.page-hero .hero-bg {
  z-index: 0
}

.page-hero .inner {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.page-hero h1 {
  color: #fff
}

.page-hero p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.15rem;
  margin-top: 1.2rem;
  max-width: 60ch
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.4rem
}

.breadcrumb a:hover {
  color: var(--orange-soft)
}

.breadcrumb span {
  color: var(--orange-soft)
}

/* ===== Forms ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-sm)
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--navy-ink)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--mist);
  transition: .3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, .1)
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-note {
  font-size: .82rem;
  color: var(--slate);
  margin-top: 10px
}

.form-success {
  background: #E7F6EC;
  border: 1px solid #B6E2C3;
  color: #1E7A3D;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: .92rem;
  margin-top: 14px;
  display: none
}

.form-success.show {
  display: block
}

/* contact info tiles */
.info-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: .3s
}

.info-tile:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px)
}

.info-tile .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.info-tile .ic svg {
  width: 22px;
  height: 22px;
  color: var(--orange)
}

.info-tile h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
  color: var(--navy-ink)
}

.info-tile p {
  color: var(--slate);
  font-size: .92rem
}

/* ===== Service detail ===== */
.svc-detail {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 50px;
  align-items: flex-start
}

.svc-body h2 {
  margin: 2rem 0 1rem
}

.svc-body h2:first-child {
  margin-top: 0
}

.svc-body p {
  color: var(--slate);
  margin-bottom: 1rem
}

.svc-body .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 1.5rem 0
}

.svc-body .feature {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--mist);
  padding: 18px;
  border-radius: 14px
}

.svc-body .feature svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px
}

.svc-body .feature b {
  display: block;
  color: var(--navy-ink);
  font-size: .95rem;
  margin-bottom: .2rem
}

.svc-body .feature span {
  font-size: .86rem;
  color: var(--slate)
}

.svc-side {
  position: sticky;
  top: 100px
}

.side-card {
  background: linear-gradient(150deg, var(--navy-ink), var(--navy));
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px
}

.side-card h3 {
  color: #fff;
  margin-bottom: .6rem
}

.side-card p {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  margin-bottom: 1.4rem
}

.side-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px
}

.side-list h4 {
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy-ink)
}

.side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  transition: .3s
}

.side-list a:last-child {
  border: none
}

.side-list a:hover {
  color: var(--orange);
  padding-left: 6px
}

.side-list a svg {
  width: 16px;
  height: 16px;
  color: var(--orange)
}

/* ===== Career ===== */
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: .35s;
  flex-wrap: wrap
}

.job:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
  border-color: transparent
}

.job .meta h3 {
  margin-bottom: .4rem
}

.job .tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.job .tags span {
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--navy)
}

.perk {
  text-align: center;
  padding: 30px
}

.perk .ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--mist);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  transition: .4s
}

.perk:hover .ic {
  background: var(--orange)
}

.perk .ic svg {
  width: 30px;
  height: 30px;
  color: var(--navy);
  transition: .4s
}

.perk:hover .ic svg {
  color: #fff
}

.perk h3 {
  margin-bottom: .5rem
}

.perk p {
  color: var(--slate);
  font-size: .92rem
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-ink);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--orange);
  filter: blur(120px);
  opacity: .12;
  top: -200px;
  left: 10%
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  position: relative;
  z-index: 2
}

.footer .brand {
  color: #fff;
  margin-bottom: 1rem
}

.footer .brand img {
  /* filter: brightness(0) invert(1) */
  height: auto;
  border-radius: 20px;
  padding: 10px;
  background-color: #fff;
}

.footer p {
  font-size: .92rem;
  line-height: 1.7;
  max-width: 34ch
}

.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: .02em
}

.footer-col a {
  display: block;
  padding: .4rem 0;
  font-size: .92rem;
  transition: .3s
}

.footer-col a:hover {
  color: var(--orange-soft);
  padding-left: 5px
}

.footer .socials {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem
}

.footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: .3s
}

.footer .socials a:hover {
  background: var(--orange);
  transform: translateY(-3px)
}

.footer .socials svg {
  width: 18px;
  height: 18px;
  color: #fff
}

.newsletter {
  display: flex;
  gap: .5rem;
  margin-top: 1rem
}

.newsletter input {
  flex: 1;
  padding: .8rem 1rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: var(--sans);
  font-size: .9rem
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, .4)
}

.newsletter input:focus {
  outline: none;
  border-color: var(--orange)
}

.newsletter button {
  padding: .8rem 1.2rem;
  border-radius: 11px;
  border: none;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .3s
}

.newsletter button:hover {
  background: var(--orange-soft)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  position: relative;
  z-index: 2
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

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

.reveal.d1 {
  transition-delay: .1s
}

.reveal.d2 {
  transition-delay: .2s
}

.reveal.d3 {
  transition-delay: .3s
}

.reveal.d4 {
  transition-delay: .4s
}

/* ===== Responsive ===== */
@media(max-width:1024px) {

  .hero-inner,
  .split,
  .svc-detail {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .svc-side {
    position: static
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .step::before {
    display: none
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 44px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px;
    gap: 1.4rem;
    box-shadow: -20px 0 50px -20px rgba(0, 0, 0, .3);
    transition: right .4s var(--ease);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    font-size: 1.05rem
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    grid-template-columns: 1fr;
    padding: 0 0 0 14px;
    min-width: auto;
    display: none
  }

  .has-drop.expand .dropdown {
    display: grid
  }

  .burger {
    display: flex;
    z-index: 1002
  }

  .nav-cta .btn:not(.burger) {
    display: none
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-4,
  .steps,
  .stats-band,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .form-row,
  .svc-body .feature-row {
    grid-template-columns: 1fr
  }

  .section {
    padding: 70px 0
  }

  .cta-band,
  .stats-band {
    padding: 40px 28px
  }

  .hero {
    padding: 140px 0 80px
  }

  .float-badge {
    display: none
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 39, 72, .4);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible
}