@charset "UTF-8";
:root {
  --primary: #009245;
  --primary-deep: #007a39;
  --primary-dark: #004d24;
  --accent: #f88c3d;
  --accent-deep: #e07020;
  --ink: #121212;
  --slate: #4a5560;
  --mist: #f3f7f4;
  --line: #d7e5dc;
  --paper: #ffffff;
  --black: #0a0a0a;
  --white: #ffffff;
  --navy: var(--primary);
  --navy-deep: var(--primary-dark);
  --gold: var(--accent);
  --gold-deep: var(--accent-deep);
  --brand-green: var(--primary);
  --brand-peach: var(--accent);
  --radius: 14px;
  --max: 1120px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  font-weight: 600;
}

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

section {
  padding: 4.5rem 0;
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
}
.eyebrow:before {
  content: "◇";
  font-size: 0.7rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.8rem;
}
.section-head p {
  color: var(--slate);
  margin-top: 0.9rem;
}

.section-head--value {
  max-width: min(1100px, 100%);
  margin-bottom: 2.2rem;
}
.section-head--value h2 {
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: none;
}

.title-accent {
  color: var(--primary);
}

.section-head__body {
  margin-top: 1.4rem;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-head__body p + p {
  margin-top: 1rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.8rem;
}

.header {
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
}

.header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-logo--footer {
  height: 56px;
  max-width: 240px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.15rem 0.35rem;
  margin-left: auto;
}

.nav-link,
.nav-more-btn {
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover,
.nav-link.active,
.nav-more-btn:hover {
  color: var(--navy);
  background: var(--mist);
}

.nav-more {
  position: relative;
}

.nav-more-btn {
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.caret {
  font-size: 0.75rem;
  opacity: 0.8;
}

.dropdown {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  min-width: 220px;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: auto;
  box-shadow: 0 12px 30px rgba(15, 39, 64, 0.12);
  z-index: 60;
}
.dropdown.is-open {
  display: flex;
}
.dropdown a {
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown a:hover {
  background: var(--mist);
  color: var(--navy);
}

.nav-cta {
  margin-left: 0.55rem;
  padding: 0.55rem 1.15rem !important;
  font-size: 0.88rem !important;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 6px 18px rgba(248, 140, 61, 0.35);
}
.btn-gold:hover {
  background: var(--accent-deep);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-navy {
  background: var(--primary);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 5.5rem 0 5rem;
  background: radial-gradient(900px 420px at 85% -10%, rgba(248, 140, 61, 0.22), transparent 55%), linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 58%, var(--primary-deep) 100%);
}
.hero h1 {
  max-width: 640px;
}
.hero p.sub {
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.hero--cover {
  color: var(--ink);
  min-height: clamp(560px, 72vw, 720px);
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3.5rem;
  background-color: #f7faf8;
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.hero--cover .container {
  max-width: 1320px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}
.hero--cover .hero-copy {
  max-width: min(560px, 48%);
}
.hero--cover h1 {
  max-width: none;
  font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.hero--cover p.sub {
  color: var(--slate);
  max-width: 34rem;
  margin-top: 1.15rem;
  font-size: 1.08rem;
  line-height: 1.65;
}
.hero--cover .btn-gold {
  color: var(--white);
}
.hero--cover .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--white);
}
.hero--cover .btn-outline:hover {
  background: var(--mist);
  border-color: var(--primary-deep);
  color: var(--primary-deep);
}

.hero--cards {
  overflow: visible;
  background-color: #fff;
  background-position: 62% center;
  background-size: cover;
}
.hero--cards.hero, .hero--cards.hero--cover {
  overflow: visible;
}
.hero--cards .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: center;
}
.hero--cards .hero-copy {
  max-width: none;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 52vw, 560px);
  z-index: 1;
  overflow: visible;
}

.hero-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 39, 64, 0.1);
  border: 1px solid rgba(215, 229, 220, 0.7);
}

.hero-card__title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-card--automations {
  position: absolute;
  top: 8%;
  left: 0;
  width: min(260px, 48%);
  padding: 1rem 1.05rem 0.85rem;
  z-index: 3;
}

.hero-automations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-automations__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.hero-automations__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-automations__icon svg {
  width: 15px;
  height: 15px;
}

.hero-automations__label {
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.25;
}

.hero-automations__status {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.hero-automations__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 0.3rem;
  vertical-align: middle;
}

.hero-card--integrations {
  position: absolute;
  top: 12%;
  right: -10rem;
  width: min(220px, 42%);
  padding: 0.75rem 0.85rem;
  z-index: 3;
}

.hero-integrations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.hero-integrations__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0.15rem 0.3rem;
  background: var(--mist);
  border-radius: 6px;
}
.hero-integrations__logo img {
  max-height: 14px;
  max-width: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-integrations__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #eef3f0;
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-card--tech {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 18%;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.1rem;
  z-index: 3;
}

.hero-card--tech__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 146, 69, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-card--tech__icon svg {
  width: 18px;
  height: 18px;
}

.hero-card--tech__body {
  min-width: 0;
}
.hero-card--tech__body strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink);
}
.hero-card--tech__body p {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--slate);
}

.hero-partners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1.35rem;
  max-width: 100%;
}

.hero-partners__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 11rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 39, 64, 0.08);
}

.hero-partners__logo {
  max-height: 26px;
  max-width: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-partners__text {
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--slate);
}

.hero-ctas {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  display: flex;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 4.5rem 0;
}
.page-hero.page-hero--image {
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero.page-hero--image .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero.page-hero--image .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero.page-hero--image .page-hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 50, 24, 0.92) 0%, rgba(0, 146, 69, 0.72) 55%, rgba(0, 146, 69, 0.45) 100%);
}
.page-hero.page-hero--image .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 780px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 660px;
  margin-top: 1rem;
  font-size: 1.05rem;
}
.page-hero .btn {
  margin-top: 1.8rem;
}
.page-hero .eyebrow {
  color: var(--accent);
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.media-split--reverse .media-split__image {
  order: 2;
}
.media-split--reverse .media-split__copy {
  order: 1;
}

.media-split__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.media-split__copy h2 {
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.media-split__copy p {
  color: var(--slate);
}

.section-figure {
  margin: 0 auto 2.4rem;
  max-width: 920px;
}
.section-figure img {
  width: 100%;
  height: clamp(200px, 32vw, 340px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.section-figure figcaption {
  color: var(--slate);
  font-size: 0.85rem;
  margin-top: 0.55rem;
  text-align: center;
}
.section-figure--diagram {
  max-width: 1040px;
  margin-bottom: 1.6rem;
}
.section-figure--diagram img {
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.card-media {
  margin: -1.7rem -1.7rem 1.1rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.case-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.grid {
  gap: 1.3rem;
  display: grid;
}

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 39, 64, 0.1);
}
.card .icon {
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}
.card .icon--svg {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--primary);
  background: var(--mist);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.card .icon--svg svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.card h3 {
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.card-link {
  display: block;
}
.card-link .more {
  color: var(--gold-deep);
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-block;
}

.bg-mist {
  background: var(--mist);
}

.metrics {
  background: var(--navy);
  color: #fff;
  padding: 3.2rem 0;
}

.metrics-grid {
  text-align: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  display: grid;
}

.metric b {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.7rem;
  display: block;
}
.metric span {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.35rem;
  font-size: 0.83rem;
  line-height: 1.45;
  display: block;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  transition: background 0.2s;
}
.client-card:hover {
  background: var(--mist);
}

.client-card__logo {
  max-width: 160px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-card__logo--light {
  filter: brightness(50%);
  opacity: 0.35;
}

.client-card__name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  max-width: 12rem;
}

.quote {
  background: var(--mist);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin: 0 1.5rem 1.5rem;
  padding: 1rem 1.2rem;
  font-size: 0.93rem;
}
.quote footer {
  color: var(--slate);
  margin-top: 0.5rem;
  font-size: 0.83rem;
  font-weight: 600;
}

.steps {
  counter-reset: step;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  display: grid;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
}
.step:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
}
.step h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--slate);
  font-size: 0.92rem;
}

.cta-band {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  max-width: 680px;
  margin: 0 auto;
}
.cta-band p {
  color: #c8d4e2;
  max-width: 560px;
  margin: 1rem auto 2rem;
}

.prose {
  max-width: 760px;
}
.prose p + p {
  margin-top: 1rem;
}
.prose p {
  color: var(--slate);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}
.contact-aside h3 {
  color: var(--navy);
}

.form {
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  max-width: 760px;
  display: grid;
}

.field {
  flex-direction: column;
  gap: 0.35rem;
  display: flex;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.form-alert {
  background: #fff4e5;
  border: 1px solid #f0c989;
  color: #7a4e00;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  grid-column: 1/-1;
}

.form-alert--success {
  background: #e8f7ef;
  border-color: #98d9b4;
  color: #006130;
}

.form-alert--error {
  background: #fef3f2;
  border-color: #fecdca;
  color: #b42318;
}

.cms-form-section {
  scroll-margin-top: 6rem;
}

.form-note {
  color: var(--slate);
  margin-top: 0.6rem;
  display: block;
  font-size: 0.85rem;
}

.errorlist {
  color: #b42318;
  font-size: 0.82rem;
  list-style: none;
}

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

.turnstile-field {
  min-height: 65px;
}

.footer {
  background: var(--navy-deep);
  color: #b7c6d7;
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

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

.footer h4 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.footer a {
  padding: 0.18rem 0;
  display: block;
}
.footer a:hover {
  color: var(--gold);
}

.footer-badges {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-display);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  color: #7f93a9;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  font-size: 0.82rem;
}

.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.admin-float,
.wa-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.admin-float svg,
.wa-float svg {
  width: 30px;
  height: 30px;
}
.admin-float:hover,
.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
}

.admin-float {
  background: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(0, 77, 36, 0.4);
}
.admin-float .bx {
  font-size: 1.7rem;
  line-height: 1;
}
.admin-float:hover {
  box-shadow: 0 14px 32px rgba(0, 77, 36, 0.5);
}

.wa-float {
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}
.wa-float:hover {
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  pointer-events: none;
}
.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__dialog {
  pointer-events: auto;
  width: 100%;
  max-height: min(70vh, 520px);
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(15, 39, 64, 0.12);
  outline: none;
}

.cookie-consent__inner {
  width: min(var(--max), 100% - 2.5rem);
  margin: 0 auto;
  padding: 1.25rem 0 1.35rem;
}

.cookie-consent__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
}

.cookie-consent__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-consent__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.cookie-consent__intro {
  color: var(--slate);
  font-size: 0.9rem;
  max-width: 52rem;
  margin: 0;
}

.cookie-consent__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.cookie-consent__group h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.cookie-consent__group p {
  color: var(--slate);
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}
.cookie-consent__group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.cookie-consent__group li {
  font-size: 0.82rem;
  color: var(--ink);
  padding-left: 0.65rem;
  border-left: 2px solid var(--line);
}
.cookie-consent__group code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8em;
  background: var(--mist);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-consent__btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.cookie-consent__btn--reject {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.cookie-consent__btn--reject:hover {
  border-color: var(--slate);
  background: var(--mist);
}
.cookie-consent__btn--accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-consent__btn--accept:hover {
  background: var(--primary-deep);
}

.cookie-consent__reopen {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--slate);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 39, 64, 0.08);
}
.cookie-consent__reopen:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
}
.cookie-consent__reopen[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .cookie-consent__top {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-consent__actions {
    width: 100%;
    justify-content: stretch;
  }
  .cookie-consent__actions .cookie-consent__btn {
    flex: 1 1 auto;
    text-align: center;
  }
  .cookie-consent__groups {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cookie-consent__inner {
    width: calc(100% - 1.5rem);
    padding: 1.1rem 0 1.2rem;
  }
}
@media (max-width: 980px) {
  .media-split,
  .media-split--reverse {
    grid-template-columns: 1fr;
  }
  .media-split--reverse .media-split__image,
  .media-split--reverse .media-split__copy {
    order: initial;
  }
  .media-split__image img {
    height: 260px;
  }
  .hero--cover {
    min-height: auto;
    align-items: flex-start;
    padding: 2rem 0 2rem;
    background-image: var(--hero-bg-mobile, var(--hero-bg));
    background-position: center 40%;
    background-size: cover;
  }
  .hero--cover .hero-copy {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 1.2rem 1.15rem 1.35rem;
    box-shadow: 0 10px 28px rgba(15, 39, 64, 0.08);
  }
  .hero--cover h1 {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
  }
  .hero--cover p.sub {
    font-size: 0.98rem;
    margin-top: 0.85rem;
  }
  .hero--cards {
    background-image: var(--hero-bg-mobile, var(--hero-bg));
    background-repeat: no-repeat;
    background-position: 70% 55%;
    background-size: cover;
    background-color: #f7faf8;
    min-height: auto;
    padding: 1.75rem 0 1.5rem;
    overflow: hidden;
  }
  .hero--cards .hero-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
  }
  .hero--cards .hero-copy {
    background: rgba(255, 255, 255, 0.94);
  }
  .hero--cards .hero-ctas {
    margin-top: 1.25rem;
    gap: 0.65rem;
  }
  .hero--cards .hero-partners {
    max-width: none;
    margin-top: 1rem;
    gap: 0.5rem;
  }
  .hero--cards .hero-partners__item {
    flex: 1 1 calc(50% - 0.25rem);
    padding: 0.55rem 0.65rem;
  }
  .hero--cards .hero-partners__text {
    font-size: 0.72rem;
  }
  .hero--cards .hero-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
    background-image: none;
    padding-top: 0;
  }
  .hero--cards .hero-card {
    position: static;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 22px rgba(15, 39, 64, 0.1);
  }
  .hero--cards .hero-card--automations,
  .hero--cards .hero-card--integrations,
  .hero--cards .hero-card--tech {
    width: 100%;
    padding: 0.85rem 0.95rem;
  }
  .hero--cards .hero-card__title {
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
  }
  .hero--cards .hero-automations__label {
    font-size: 0.75rem;
  }
  .hero--cards .hero-automations__status {
    font-size: 0.68rem;
  }
  .hero--cards .hero-integrations__logo {
    height: 22px;
  }
  .hero--cards .hero-integrations__logo img {
    max-height: 12px;
    max-width: 42px;
  }
  .hero--cards .hero-card--tech__body strong {
    font-size: 0.85rem;
  }
  .hero--cards .hero-card--tech__body p {
    font-size: 0.75rem;
  }
  .nav {
    border-bottom: 1px solid var(--line);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 1.25rem 1.35rem;
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    box-shadow: 0 16px 28px rgba(15, 39, 64, 0.08);
  }
  .nav.open {
    display: flex;
  }
  .nav-cta {
    margin-left: 0;
    justify-content: center;
    margin-top: 0.35rem;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0.15rem 0 0.15rem 0.6rem;
    min-width: 0;
  }
  .dropdown.is-open {
    display: flex;
  }
  .burger {
    display: inline-flex;
  }
  .grid-3,
  .steps,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .steps,
  .form,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .client-card {
    min-height: 110px;
    padding: 1.25rem 0.85rem;
  }
  section {
    padding: 3.2rem 0;
  }
  .brand-logo {
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/*# sourceMappingURL=main.css.map */
