﻿:root {
  --blue: #223f63;
  --blue-900: #0f2238;
  --blue-100: #eaf1f8;
  --orange: #ff6b01;
  --orange-100: #fff0e6;
  --teal: #13b8a6;
  --lime: #d7f75b;
  --light: #f5f7fb;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #687381;
  --dark: #142033;
  --line: #e6ebf2;
  --shadow: 0 18px 48px rgba(15, 34, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.alt {
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(230, 235, 242, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  height: auto;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-menu a:not(.btn):not(.header-contact) {
  position: relative;
}

.nav-menu a:not(.btn):not(.header-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 0.2s ease;
}

.nav-menu a:not(.btn):not(.header-contact):hover::after,
.nav-menu a:not(.btn):not(.header-contact).active::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  white-space: nowrap;
}

.contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #18a85f;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-label,
.contact-number {
  display: block;
  line-height: 1.12;
}

.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-number {
  margin-top: 2px;
  color: var(--blue-900);
  font-size: 1.02rem;
  font-weight: 900;
}

.header-contact:hover .contact-icon {
  background: #128f50;
  box-shadow: 0 10px 22px rgba(24, 168, 95, 0.28);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 34, 56, 0.12);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
}

.btn-accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8b2d);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(34, 63, 99, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.light-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: auto;
  padding: 72px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(19, 184, 166, 0.16), transparent 26%),
    radial-gradient(circle at 62% 72%, rgba(255, 107, 1, 0.1), transparent 24%),
    linear-gradient(135deg, #fbfaf7 0%, #ffffff 55%, #f3f7fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -18%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(19, 184, 166, 0.08);
}


.services-intro-band {
  padding: 54px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 184, 166, 0.22), transparent 30%),
    linear-gradient(135deg, var(--blue-900), #1f456c);
}

.services-intro-content {
  display: grid;
  gap: 12px;
  text-align: center;
}

.services-intro-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.08;
}

.services-intro-content p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-grid,
.bi-grid,
.about-grid,
.contact-grid,
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.74fr);
  gap: 64px;
}

.hero-simple {
  align-items: center;
}

.hero-content h1,
.section h2 {
  margin: 12px 0 18px;
  color: var(--blue-900);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 790px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
  margin-top: 0;
  color: var(--blue);
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 690px;
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-lead-form {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(221, 230, 241, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-lead-form::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 8px;
  background: var(--orange);
}

.hero-form-offer h2 {
  margin: 4px 0 6px;
  color: var(--blue-900);
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  line-height: 1.12;
}

.hero-form-offer p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-form-fields {
  display: grid;
  gap: 7px;
}

.hero-form-fields label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-form-fields input,
.hero-form-fields select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--muted);
  background: var(--white);
  font: inherit;
  font-weight: 400;
}

.hero-form-fields input:focus,
.hero-form-fields select:focus {
  outline: 3px solid rgba(255, 107, 1, 0.17);
  border-color: var(--orange);
}

.hero-form-fields .btn {
  width: 100%;
  min-height: 40px;
  margin-top: 9px;
  margin-bottom: 2px;
}

.hero-summary {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(221, 230, 241, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-summary::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 4px;
  border-radius: 8px;
  background: var(--orange);
}

.summary-kicker {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-summary h2 {
  margin: 12px 0 14px;
  color: var(--blue-900);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.15;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding-left: 24px;
  color: var(--blue);
  font-weight: 800;
}

.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.summary-cta {
  width: 100%;
  margin-top: 20px;
}

.summary-note {
  margin: 5px 0 0;
  color: #7a8492;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.privacy-note {
  margin: 0;
  color: #7a8492;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.privacy-note a {
  color: var(--orange);
  font-weight: 850;
}

.section-heading {
  width: min(790px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.plan-card,
.method-step,
.proof-grid article,
.bi-panel,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 34, 56, 0.06);
}

.service-card,
.plan-card,
.method-step,
.proof-grid article,
.bi-panel {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.service-card h3 {
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.service-card::before,
.plan-card::before,
.method-step::before,
.proof-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover,
.plan-card:hover,
.method-step:hover,
.proof-grid article:hover,
.service-card,
.plan-card,
.method-step,
.proof-grid article {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.plan-card:hover,
.method-step:hover,
.proof-grid article:hover {
  border-color: rgba(255, 107, 1, 0.42);
  box-shadow: 0 22px 54px rgba(15, 34, 56, 0.13);
  transform: translateY(-8px);
}

.service-card:hover::before,
.plan-card:hover::before,
.method-step:hover::before,
.proof-grid article:hover::before,
.service-card.featured::before,
.plan-card.highlighted::before {
  opacity: 1;
}

.service-card ul,
.plan-card ul,
.check-list {
  padding-left: 20px;
  color: var(--muted);
}

.service-card li,
.plan-card li,
.check-list li {
  margin-bottom: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-card:hover .text-link,
.plan-card:hover .text-link {
  color: #e85f00;
  transform: translateX(4px);
}

.clients-section {
  background: var(--paper);
}

.clients-section .section-heading {
  margin-bottom: 28px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.method-section {
  background: var(--white);
}

.method-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.method-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.method-step h3,
.proof-grid h3 {
  margin-bottom: 10px;
  color: var(--blue-900);
}

.method-step p,
.proof-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.proof-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.client-logo-card {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 34, 56, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.client-logo-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.client-logo-card.wide-logo img {
  max-height: 58px;
}

.client-logo-card:hover {
  border-color: rgba(255, 107, 1, 0.32);
  box-shadow: 0 22px 48px rgba(15, 34, 56, 0.12);
  transform: translateY(-6px);
}

.bi-section,
.about-section,
.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(19, 184, 166, 0.18), transparent 30%),
    linear-gradient(135deg, var(--blue-900), #1f456c);
}

.team-section .section-heading {
  margin-bottom: 28px;
}

.team-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(820px, 100%);
  gap: 20px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 34, 56, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}


.team-card:hover {
  border-color: rgba(255, 107, 1, 0.36);
  box-shadow: 0 24px 58px rgba(15, 34, 56, 0.14);
  transform: translateY(-8px);
}

.team-photo {
  overflow: hidden;
  width: 100%;
  height: 300px;
  background: var(--blue-100);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.35s ease;
}

.team-photo .ken-photo {
  object-position: center 8%;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-copy {
  display: grid;
  align-content: start;
  padding: 20px 22px 22px;
}

.team-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}

.team-copy h3 {
  margin: 0 0 6px;
  color: var(--blue-900);
  font-size: 1.26rem;
}

.role {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.team-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.linkedin-link {
  flex: 0 0 auto;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: #0a66c2;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.linkedin-link:hover {
  background: #084f96;
  box-shadow: 0 10px 22px rgba(10, 102, 194, 0.24);
  transform: translateY(-2px);
}

.bi-section h2,
.about-section h2,
.contact-section h2,
.bi-section p,
.about-section p,
.contact-section p {
  color: var(--white);
}

.bi-copy p {
  max-width: 620px;
}

.bi-showcase {
  position: relative;
  display: grid;
  justify-items: end;
}

.bi-image {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.bi-panel {
  width: min(92%, 420px);
  margin-top: -74px;
  margin-right: 24px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 46px rgba(15, 34, 56, 0.2);
  backdrop-filter: blur(12px);
}

.bi-panel h3 {
  color: var(--blue-900);
}

.bi-panel .check-list {
  color: var(--muted);
}
.plan-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-grid {
  align-items: start;
}

.narrow {
  width: min(900px, calc(100% - 40px));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--blue);
  font-weight: 900;
}

.faq-list p {
  margin-top: 0;
  padding-bottom: 18px;
}

.contact-grid {
  align-items: start;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-direct a {
  display: inline-flex;
  width: fit-content;
  color: var(--white);
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-direct a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--muted);
  background: var(--white);
  font: inherit;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 107, 1, 0.17);
  border-color: var(--orange);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
}

.form-note a {
  color: var(--orange);
  font-weight: 850;
}

.contact-form .privacy-note {
  color: #7a8492;
}

.contact-form .privacy-note a {
  color: var(--orange);
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-status[data-status="success"] {
  color: #137a45;
  font-weight: 850;
}

.form-status[data-status="error"] {
  color: #b42318;
  font-weight: 850;
}

.form-status[data-status="warning"] {
  color: var(--orange);
  font-weight: 850;
}

.site-footer {
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  background: #101f33;
}

.site-footer p,
.site-footer a,
.site-footer h3 {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.text-link:hover {
  color: var(--orange);
}

.site-footer .footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 360px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding-top: 20px;
  padding-right: 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom a {
  color: var(--orange);
  font-weight: 850;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: #18a85f;
  box-shadow: 0 14px 34px rgba(24, 168, 95, 0.26);
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-contact:hover {
  background: #128f50;
  box-shadow: 0 18px 42px rgba(24, 168, 95, 0.36);
  transform: translateY(-3px);
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-modal.is-open {
  display: flex;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 56, 0.56);
  backdrop-filter: blur(6px);
}

.success-modal__dialog {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 430px);
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(15, 34, 56, 0.28);
  text-align: center;
}

.success-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.success-modal__mark {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: #18a85f;
  font-size: 1.75rem;
  font-weight: 900;
}

.success-modal h2 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.55rem;
  line-height: 1.15;
}

.success-modal p {
  margin: 0 0 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1020px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .header-contact {
    justify-content: flex-start;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-grid,
  .bi-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .team-heading {
    width: 100%;
    text-align: left;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-content h1 {
    max-width: 880px;
  }

  .three,
  .six,
  .method-grid,
  .proof-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

.legal-section {
  background: var(--paper);
}

.legal-content {
  width: min(860px, calc(100% - 40px));
}

.legal-content h1 {
  margin: 12px 0 20px;
  color: var(--blue-900);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--blue-900);
  font-size: 1.28rem;
  line-height: 1.2;
}

.legal-content p {
  max-width: 760px;
}

.legal-content a:not(.btn) {
  color: var(--orange);
  font-weight: 850;
}

.legal-content .btn {
  margin-top: 18px;
}

.legal-footer {
  padding-right: 0;
}

.privacy-nav {
  justify-content: flex-end;
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .services-intro-band {
    padding: 42px 0;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 50px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .team-profile {
    grid-template-columns: 1fr;
  }

  .team-photo {
    height: 300px;
  }

  .three,
  .six,
  .method-grid,
  .proof-grid,
  .contact-form,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-card {
    min-height: 116px;
  }
.team-card {
    padding: 0;
  }

  .service-card,
  .plan-card,
  .method-step,
  .proof-grid article,
  .bi-panel,
  .contact-form {
    padding: 24px;
  }

  .hero-lead-form {
    padding: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }
}


@media (max-width: 1020px) {
  .bi-showcase {
    justify-items: start;
  }

  .bi-image {
    width: 100%;
  }

  .bi-panel {
    margin-right: 0;
  }
}

@media (max-width: 680px) {
.bi-panel {
    width: 100%;
    margin-top: 14px;
  }
}
