/* Strict Wisconsin law-firm: navy / charcoal / muted bronze */
:root {
  --blue: #0e4b8e;
  --blue-deep: #012f5d;
  --blue-mid: #0a3d73;
  --accent: #9a7b2f;
  --accent-soft: #b8953e;
  --dark: #1a1a1a;
  --text: #555555;
  --text-dark: #333333;
  --muted: #f5f5f5;
  --line: #e5e5e5;
  --white: #ffffff;
  --font: "Open Sans", Arial, sans-serif;
  --display: "PT Serif", Georgia, serif;
  --container: 1170px;
  --radius: 0;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  /* aliases for existing rules */
  --gold: var(--accent);
  --gold-bright: var(--blue-mid);
  --gold-hover: var(--blue-deep);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-left: 1.15rem !important;
  padding-right: 1.15rem !important;
  padding-inline: 1.15rem !important;
  box-sizing: border-box;
}

.narrow {
  max-width: 820px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow--hero {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero__accent {
  color: #ffffff !important;
  font-style: italic;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #272727;
  position: relative;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  max-width: 560px;
  margin: 0 auto 0;
  color: var(--text);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head .section-title {
  display: inline-block;
  padding-bottom: 0.85rem;
}

.section-head .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
}

.section-head--light .section-title,
.section-head--light p {
  color: var(--white);
}

.section-head--light .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 5rem 0;
}

.section--muted {
  background: var(--muted);
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(1, 47, 93, 0.92), rgba(14, 75, 142, 0.88)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=70")
      center/cover;
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 5px 22px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
}

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

.btn--primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--gold {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn--full {
  width: 100%;
}

/* Top bar */
.top-bar {
  background: var(--dark);
  color: #ddd;
  font-size: 0.875rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}

.top-bar__contacts,
.top-bar__social {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar a:hover {
  color: var(--gold);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  color: var(--blue);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.logo__text small {
  color: #9e9e9e;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

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

.nav a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
}

.nav a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 0.55rem 1rem;
  background: var(--blue);
  color: var(--white) !important;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-size: 12px !important;
}

.nav__cta:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white) !important;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--blue);
  background: transparent;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(1, 47, 93, 0.92) 0%,
    rgba(14, 75, 142, 0.78) 48%,
    rgba(34, 34, 34, 0.55) 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 0.75rem;
}

.hero__facts li {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.hero__facts strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero__facts span {
  color: var(--white);
  font-weight: 600;
}

.hero__note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
}

.hero__form-card {
  background: var(--white);
  color: var(--text);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  animation: formRise 0.8s ease both;
}

.hero__form-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.hero__form-card > p {
  margin-bottom: 1.25rem;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes formRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust strip */
.trust-strip {
  background: var(--dark);
  color: var(--white);
  margin-top: -1px;
}

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

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip__item:last-child {
  border-right: 0;
}

.trust-strip__item h2 {
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.trust-strip__item p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.trust-strip__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(213, 172, 99, 0.45);
  color: var(--accent);
  font-size: 1.2rem;
}

/* Forms */
.form {
  display: grid;
  gap: 0.75rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--dark);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 75, 142, 0.12);
  background: var(--white);
}

.form__legal {
  margin: 0;
  font-size: 0.75rem;
  color: #9e9e9e;
  text-align: center;
}

.form--light h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

/* Split about */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.15rem;
  display: grid;
  gap: 0.15rem;
}

.split__badge strong {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.split__badge span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.check-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
  border-radius: 1px;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.9);
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

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

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(14, 75, 142, 0.08);
  color: var(--blue);
  font-size: 1.2rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Tabs — hardcoded navy, no bright accents, beat theme/Elementor */
.applaw-landing .tabs {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.applaw-landing .tabs__nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
  background: #f7f7f7;
}

.applaw-landing .tabs__nav button,
.applaw-landing .tabs__nav button:link,
.applaw-landing .tabs__nav button:visited,
.applaw-landing .tabs__nav button:hover,
.applaw-landing .tabs__nav button:active,
.applaw-landing .tabs__nav button:focus,
.applaw-landing .tabs__nav button:focus-visible,
.applaw-landing .tabs__nav button.is-active {
  flex: 1;
  min-width: 140px;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  border-right: 1px solid #e5e5e5 !important;
  border-bottom: 2px solid #e5e5e5 !important;
  background: #f7f7f7 !important;
  background-image: none !important;
  padding: 1rem 1.1rem !important;
  font-family: "Open Sans", Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333333 !important;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  accent-color: #0e4b8e;
  filter: none !important;
  opacity: 1 !important;
}

.applaw-landing .tabs__nav button:last-child {
  border-right: 0 !important;
}

.applaw-landing .tabs__nav button:hover,
.applaw-landing .tabs__nav button:focus,
.applaw-landing .tabs__nav button:focus-visible {
  background: #eeeeee !important;
  color: #012f5d !important;
}

.applaw-landing .tabs__nav button.is-active,
.applaw-landing .tabs__nav button.is-active:hover,
.applaw-landing .tabs__nav button.is-active:focus,
.applaw-landing .tabs__nav button.is-active:focus-visible {
  color: #ffffff !important;
  background: #012f5d !important;
  border-bottom-color: #012f5d !important;
}

.applaw-landing .tabs__panel {
  display: none;
  padding: 1.75rem 1.5rem 2rem;
  background: #ffffff;
}

.applaw-landing .tabs__panel.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.applaw-landing .tabs__panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #012f5d;
}

.applaw-landing {
  accent-color: #0e4b8e;
  overflow-x: hidden;
  max-width: 100%;
}

/* Elementor wrappers shouldn't eat side gutters */
.elementor-widget-shortcode,
.elementor-shortcode {
  max-width: 100%;
  overflow-x: hidden;
}

.applaw-landing button:focus,
.applaw-landing button:focus-visible,
.applaw-landing a:focus,
.applaw-landing a:focus-visible {
  outline: 2px solid #0e4b8e !important;
  outline-offset: 2px;
}

.bullet-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.bullet-list li {
  padding-left: 1rem;
  position: relative;
}

.bullet-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panels who/req */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
}

.panel h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

/* Documents */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.docs-col {
  background: var(--muted);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--blue);
}

.docs-col--accent {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.88);
  border-top-color: var(--gold);
}

.docs-col--accent h3 {
  color: var(--white);
}

.docs-col h3 {
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
}

.doc-list {
  display: grid;
  gap: 0.7rem;
}

.doc-list li {
  padding-left: 1.25rem;
  position: relative;
}

.doc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.steps li {
  background: var(--white);
  padding: 1.5rem 1.15rem;
  border-top: 3px solid var(--gold);
  position: relative;
}

.steps__num {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.steps h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.steps p {
  margin: 0;
  font-size: 0.9rem;
}

.center-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin-inline: auto;
}

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

.applaw-landing .wpcf7 form {
  display: grid;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.applaw-landing .wpcf7 p {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.applaw-landing .wpcf7 label {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 0.88rem;
  color: #555;
  box-sizing: border-box;
}

.applaw-landing .wpcf7 .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
}

.applaw-landing .wpcf7 input[type="text"],
.applaw-landing .wpcf7 input[type="email"],
.applaw-landing .wpcf7 input[type="tel"],
.applaw-landing .wpcf7 textarea {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 0.85rem 1rem;
  font: inherit;
  border-radius: 2px;
  margin: 0.35rem 0 0;
}

.applaw-landing .wpcf7 textarea {
  min-height: 110px;
  resize: vertical;
}

.applaw-landing .wpcf7 input[type="text"]:focus,
.applaw-landing .wpcf7 input[type="email"]:focus,
.applaw-landing .wpcf7 input[type="tel"]:focus,
.applaw-landing .wpcf7 textarea:focus {
  border-color: #0e4b8e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 75, 142, 0.12);
  background: #fff;
}

.applaw-landing .wpcf7 .wpcf7-acceptance,
.applaw-landing .wpcf7 .wpcf7-list-item {
  display: block;
  margin: 0;
}

.applaw-landing .wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #666;
}

.applaw-landing .wpcf7 .wpcf7-list-item input[type="checkbox"] {
  width: auto !important;
  max-width: none !important;
  display: inline-block !important;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
}

.applaw-landing .wpcf7 input.wpcf7-submit {
  background: #0e4b8e;
  color: #fff;
  border: 1px solid #0e4b8e;
  min-height: 48px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  margin: 0.25rem 0 0;
  transition: all 0.5s ease;
}

.applaw-landing .wpcf7 input.wpcf7-submit:hover {
  background: #012f5d;
  border-color: #012f5d;
}

.applaw-landing .wpcf7-response-output {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.contact__form-wrap,
.hero__form-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.contact__form-wrap .wpcf7,
.hero__form-card .wpcf7 {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.price-card--featured {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.88);
  border-color: var(--blue-deep);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.price-card--featured h3,
.price-card--featured .price-card__label {
  color: var(--white);
}

.price-card--featured .price-card__label {
  color: var(--accent);
}

.price-card__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-card h3 {
  font-size: 2rem;
}

.price-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
  flex: 1;
}

.price-card li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
}

/* Reviews */
.slider {
  max-width: 720px;
  margin: 0 auto;
}

.slider__track {
  position: relative;
  min-height: 240px;
}

.review {
  display: none;
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.review.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.review__text {
  font-size: 1.15rem;
  color: var(--dark);
  font-family: var(--display);
  line-height: 1.45;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.review__author strong {
  display: block;
  color: var(--blue-deep);
}

.review__author span {
  font-size: 0.85rem;
  color: #9e9e9e;
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}

.slider__btn svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.slider__btn:hover {
  background: var(--blue);
  color: var(--white);
}

.slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 42px;
}

.slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.slider__dots button.is-active {
  background: var(--gold);
}

/* SEO */
.seo-text {
  font-size: 1.02rem;
}

.seo-text__note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--muted);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: #777;
}

/* FAQ / accordion */
.faq {
  display: grid;
  gap: 0.85rem;
}

.faq__item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  color: #012f5d;
  position: relative;
  padding-right: 2.75rem;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0e4b8e;
  font-size: 1.25rem;
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0;
  padding: 0 1.35rem 1.25rem !important;
  color: #555;
}

.faq__item .bullet-list {
  margin: 0 !important;
  padding: 0.25rem 1.35rem 1.35rem 1.35rem !important;
  gap: 0.65rem;
}

.faq__item .bullet-list li {
  padding-left: 1.15rem !important;
  line-height: 1.5;
  color: #555;
}

#requirements > .container > p {
  margin-bottom: 1.15rem !important;
  padding: 0 0.15rem;
}

/* Contact */
.contact {
  background:
    linear-gradient(120deg, rgba(1, 47, 93, 0.94), rgba(14, 75, 142, 0.9)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=70")
      center/cover;
  padding: 5rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.contact__list {
  display: grid;
  gap: 1.1rem;
}

.contact__list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact__list a,
.contact__list p {
  color: var(--white);
  margin: 0;
  font-weight: 600;
}

.contact__form-wrap {
  background: var(--white);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Footer */
.footer {
  background: #060606;
  color: #aaa;
  padding-top: 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer h3 {
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer ul {
  display: grid;
  gap: 0.5rem;
}

.footer a:hover {
  color: var(--gold);
}

.logo--footer .logo__text strong {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.85rem;
}

.footer__bottom p {
  margin: 0;
}

/* Toast */
.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  background: var(--blue-deep);
  color: var(--white);
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

/* Reveal — visible by default; JS only enhances */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid,
  .split,
  .cards-3,
  .cards-3--8,
  .grid-2,
  .docs-grid,
  .pricing,
  .pricing--2,
  .contact__grid,
  .footer__grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-3--8 {
    grid-template-columns: 1fr 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding: 2.5rem 0 2.75rem;
  }

  .hero__form-card,
  .contact__form-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
  }

  .nav {
    position: fixed;
    inset: 124px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .burger {
    display: inline-flex;
  }

  .split__media img {
    height: 380px;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-inline: 1rem !important;
  }

  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.55rem 0;
  }

  .hero__facts,
  .cards-3,
  .cards-3--8 {
    grid-template-columns: 1fr;
  }

  .applaw-landing .tabs__nav button {
    flex: 1 1 50%;
  }

  .section {
    padding: 3.25rem 0;
  }

  .faq__item summary {
    padding: 1rem 1.15rem;
    padding-right: 2.5rem;
    font-size: 0.95rem;
  }

  .faq__item p,
  .faq__item .bullet-list {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  .faq__item .bullet-list {
    padding-bottom: 1.2rem !important;
  }

  .faq__item .bullet-list li {
    font-size: 0.95rem;
  }

  .hero__form-card,
  .contact__form-wrap {
    padding: 1.25rem;
  }

  .docs-col,
  .panel,
  .card,
  .price-card {
    padding: 1.35rem 1.15rem;
  }

  .steps li {
    padding: 1.25rem 1rem;
  }

  .narrow {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100%;
  }

  .header__inner {
    min-height: 68px;
  }
}
