/* Premium legal landing styles */
:root {
  --bg: #101318;
  --bg-deep: #080a0d;
  --surface: #171c23;
  --surface-soft: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f1e8;
  --muted: #b6b0a3;
  --muted-dark: #6f746f;
  --accent: #c9a24d;
  --accent-bright: #e7bf68;
  --cream: #f4efe4;
  --graphite: #20252d;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 82px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 162, 77, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(122, 144, 144, 0.12), transparent 30rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.dark-section {
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.4), rgba(8, 10, 13, 0.92)),
    var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(11, 13, 17, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 77, 0.55);
  border-radius: 50%;
  color: var(--accent-bright);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.05);
}

.logo-text {
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width 0.25s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.header-phone {
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid rgba(201, 162, 77, 0.25);
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.08);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  position: relative;
}

.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, top 0.25s ease;
}

.burger span:first-child {
  top: 16px;
}

.burger span:last-child {
  top: 25px;
}

.burger.active span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.burger.active span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 70px) 0 70px;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.92), rgba(8, 10, 13, 0.55), rgba(8, 10, 13, 0.78)),
    url("assets/img/photo-1589829545856-d10d557cf95f-e9e51c06.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(201, 162, 77, 0.18), transparent 28rem),
    rgba(0, 0, 0, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: end;
}

.hero-content {
  max-width: 940px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-bright);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-heading);
  line-height: 1.06;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.45rem, 4.3vw, 3.35rem);
  max-width: 980px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  max-width: 920px;
  margin-bottom: 20px;
}

h3 {
  line-height: 1.2;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  color: rgba(245, 241, 232, 0.78);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #111318;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 20px 42px rgba(201, 162, 77, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 26px 56px rgba(201, 162, 77, 0.34);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(201, 162, 77, 0.55);
  background: rgba(201, 162, 77, 0.1);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 20, 26, 0.72);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 0.9;
  margin: 18px 0 16px;
  color: var(--accent-bright);
}

.hero-card p {
  color: rgba(245, 241, 232, 0.72);
  margin-bottom: 22px;
}

.hero-card a {
  display: inline-flex;
  color: var(--accent-bright);
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 580px;
}

.about-media img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  filter: saturate(0.85) contrast(1.05);
}

.experience-badge {
  position: absolute;
  right: -26px;
  bottom: 42px;
  width: 190px;
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--cream);
  color: #14171c;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  padding: 24px;
}

.experience-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: #16191f;
}

.experience-badge small {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  line-height: 1.25;
}

.about-content p {
  color: rgba(245, 241, 232, 0.74);
  font-size: 1.03rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.stat strong {
  display: block;
  color: var(--accent-bright);
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 12px;
}

.stat span {
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.88rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head.compact {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-head.compact .section-kicker {
  justify-content: center;
}

.section-head p:not(.section-kicker) {
  color: rgba(245, 241, 232, 0.68);
  font-size: 1.03rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 162, 77, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.case-image {
  height: 238px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 0.7s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.08);
}

.case-body {
  padding: 26px;
}

.case-body span {
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.case-body h3 {
  margin: 12px 0;
  font-size: 1.22rem;
}

.case-body p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.94rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 282px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 77, 0.18);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 77, 0.42);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.12);
  color: var(--accent-bright);
  font-weight: 900;
  margin-bottom: 30px;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.66);
  font-size: 0.94rem;
}

.services {
  background:
    radial-gradient(circle at 88% 20%, rgba(201, 162, 77, 0.13), transparent 24rem),
    var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 162, 77, 0.5);
  background: rgba(255, 255, 255, 0.075);
}

.price-card.featured {
  background:
    linear-gradient(160deg, rgba(201, 162, 77, 0.2), rgba(255, 255, 255, 0.065)),
    var(--surface);
  border-color: rgba(201, 162, 77, 0.48);
}

.price-label {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #111318;
  background: var(--accent-bright);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 77, 0.12);
  color: var(--accent-bright);
  margin-bottom: 30px;
}

.price-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.price-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.price-card p {
  color: rgba(245, 241, 232, 0.68);
  margin-bottom: 24px;
}

.price-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: 2.15rem;
  color: var(--accent-bright);
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(201, 162, 77, 0.48);
  border-radius: 999px;
  color: var(--accent-bright);
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.price-card a:hover {
  background: var(--accent-bright);
  color: #111318;
  transform: translateY(-2px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.faq-aside p:not(.section-kicker) {
  color: rgba(245, 241, 232, 0.68);
}

.accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 24px 26px;
  text-align: left;
  font-weight: 800;
}

.faq-question span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 77, 0.45);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: var(--accent-bright);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.faq-question span::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-question span::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 26px;
  color: rgba(245, 241, 232, 0.68);
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 19, 24, 0.95), rgba(25, 29, 35, 0.86)),
    url("assets/img/photo-1575505586569-646b2ca898fc-010a554f.jpg") center/cover no-repeat;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.7);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.contact-copy p:not(.section-kicker) {
  max-width: 610px;
  color: rgba(245, 241, 232, 0.74);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.contact-list a,
.contact-list address {
  font-style: normal;
  font-weight: 800;
  color: var(--text);
}

.lead-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.form-head h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.form-head p {
  color: rgba(245, 241, 232, 0.64);
  margin-bottom: 26px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.lead-form label span {
  color: rgba(245, 241, 232, 0.8);
  font-weight: 800;
  font-size: 0.86rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 10, 13, 0.48);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lead-form textarea {
  resize: vertical;
  min-height: 126px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(245, 241, 232, 0.42);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(201, 162, 77, 0.72);
  background: rgba(8, 10, 13, 0.68);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.12);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.78rem;
  text-align: center;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  text-align: center;
  font-weight: 800;
}

.form-message.success {
  color: #a8e6bd;
}

.form-message.error {
  color: #ffb0a8;
}

.site-footer {
  background: #07080a;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.86rem;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: rgba(245, 241, 232, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

  .header-phone {
    font-size: 0.88rem;
  }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 440px;
  }

  .about-media {
    min-height: auto;
  }

  .about-media img {
    height: 480px;
  }

  .experience-badge {
    right: 28px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .burger {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(11, 13, 17, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 62px);
  }

  h1 {
    font-size: clamp(2.25rem, 7vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.7rem, 5vw, 2.25rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }

  h3,
  .case-body h3,
  .process-card h3,
  .price-card h3,
  .form-head h3 {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }

  .hero-card strong {
    font-size: 3.1rem;
  }

  .about-media img {
    height: 360px;
  }

  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    min-height: auto;
    border-radius: 22px;
    margin-top: -48px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .case-image {
    height: 210px;
  }

  .contact-grid {
    gap: 36px;
  }

  .lead-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
