:root {
  --ink: #111318;
  --muted: #5d6573;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f3f6f8;
  --teal: #0f7f78;
  --teal-dark: #0a5f5a;
  --mint: #dff6ef;
  --sun: #f4b740;
  --coral: #ef6b58;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(17, 19, 24, 0.12);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 820px;
}

h3 {
  font-size: 1.15rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -44px;
  left: 18px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 227, 234, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand img,
.footer-logo {
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  color: #2c3340;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--soft);
  color: var(--teal-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  background: var(--ink);
  color: #fff;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(15, 127, 120, 0.26);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 19, 24, 0.9), rgba(17, 19, 24, 0.62) 48%, rgba(17, 19, 24, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 44px;
  color: #fff;
}

.hero .eyebrow,
.page-hero .eyebrow,
.final-cta .eyebrow,
.accent-section .eyebrow {
  color: var(--sun);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 60px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  padding: 18px;
  background: rgba(17, 19, 24, 0.42);
}

.hero-proof dt {
  font-size: 1.9rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.band,
.section {
  padding: 88px 0;
}

.band {
  background: var(--ink);
  color: #fff;
}

.band p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.lead-stack {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-title p:last-child {
  margin-top: 14px;
  font-size: 1.08rem;
}

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

.price-card,
.service-card,
.process-card,
.review-card,
.blog-card,
.feature-list article,
.contact-panel,
.contact-form,
.article-cta,
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.price-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(15, 127, 120, 0.44);
  box-shadow: var(--shadow);
}

.badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
}

.badge.muted {
  background: var(--mint);
}

.price {
  color: var(--ink);
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  color: #2c3340;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.feature-intro p:last-child {
  margin-top: 18px;
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.feature-list article {
  padding: 24px;
}

.feature-list h3,
.service-card h2,
.process-card h2,
.contact-panel h2,
.article-cta h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

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

.work-card {
  overflow: hidden;
  background: #fff;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.work-card div {
  padding: 18px;
}

.work-card p {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
}

.model-gallery {
  display: grid;
  gap: 24px;
}

.model-finder {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.08);
}

.model-finder-main {
  display: grid;
  gap: 8px;
}

.model-finder-main label {
  color: var(--ink);
  font-weight: 950;
}

.model-finder-main input {
  min-height: 56px;
  font-weight: 750;
}

.model-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-filter {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid #cfd7df;
  border-radius: 999px;
  color: #2c3340;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.model-filter:hover,
.model-filter.is-active {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.model-finder-note {
  max-width: 900px;
  font-size: 0.96rem;
}

.model-grid {
  align-items: stretch;
}

.model-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 19, 24, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17, 19, 24, 0.14);
}

.model-card.is-hidden {
  display: none;
}

.model-media {
  position: relative;
  overflow: hidden;
  background: #15191d;
}

.model-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
}

.model-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #111318;
  background: rgba(244, 183, 64, 0.96);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.22);
}

.model-body {
  display: grid;
  flex: 1;
  gap: 12px;
  padding: 18px;
}

.model-kicker {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.model-body h3 {
  font-size: 1.32rem;
}

.model-layouts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.model-layouts li {
  padding: 7px 9px;
  border: 1px solid rgba(15, 127, 120, 0.18);
  border-radius: 999px;
  color: #1f5652;
  background: rgba(223, 246, 239, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.model-empty {
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--soft);
  font-weight: 850;
}

.model-empty.is-visible {
  display: block;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.accent-section {
  color: #fff;
  background: #1c2526;
}

.accent-section p {
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.steps span {
  color: var(--sun);
  font-weight: 950;
}

.steps h3 {
  margin-bottom: 7px;
  color: #fff;
}

.expertise-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(15, 127, 120, 0.28), transparent 34%),
    linear-gradient(135deg, #101214 0%, #172122 48%, #0f1214 100%);
}

.expertise-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 78%);
  content: "";
}

.expertise-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}

.expertise-copy {
  display: grid;
  gap: 22px;
}

.expertise-copy p:not(.eyebrow),
.expert-steps p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.expertise-copy .eyebrow {
  color: var(--sun);
}

.expertise-copy h2 {
  max-width: 680px;
}

.expertise-metrics {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.expertise-metrics div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.expertise-metrics strong {
  color: var(--sun);
  font-size: 1.05rem;
}

.expertise-metrics span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.expertise-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #1b2022;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translate3d(0, var(--shift, 0px), 0);
  transition: transform 0.16s linear;
}

.expertise-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.055) translate3d(0, calc(var(--shift, 0px) * -0.36), 0);
  transform-origin: center;
  filter: saturate(1.02) contrast(1.03);
}

.expertise-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 18, 20, 0.08), rgba(16, 18, 20, 0.36)),
    linear-gradient(90deg, rgba(16, 18, 20, 0.58), transparent 48%);
  content: "";
}

.signal-card {
  position: absolute;
  z-index: 2;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(15, 18, 20, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card strong {
  color: #fff;
  font-size: 1rem;
}

.signal-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.signal-card-top {
  top: 22px;
  left: 22px;
}

.signal-card-bottom {
  right: 22px;
  bottom: 22px;
}

.expert-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.expert-steps article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.expert-steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-steps h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.24rem;
}

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

.review-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.stars {
  color: var(--sun);
  letter-spacing: 0.04em;
}

.review-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
}

.final-cta {
  padding: 96px 0;
  color: #fff;
  background: linear-gradient(90deg, #111318, #263030);
}

.final-cta h2 {
  margin-bottom: 26px;
}

.page-hero {
  padding: 130px 0 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.92), rgba(17, 19, 24, 0.72)),
    url("../img/hero-page.jpg") center / cover;
}

.compact-hero h1,
.seo-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.page-hero .btn {
  margin-top: 28px;
}

.seo-hero {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.88), rgba(17, 19, 24, 0.62)),
    url("../img/hero-seo.jpg") center / cover;
}

.service-grid,
.process-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.process-card,
.blog-card {
  padding: 24px;
}

.service-card h2,
.process-card h2,
.blog-card h2 {
  font-size: 1.35rem;
}

.service-card p,
.process-card p,
.blog-card p {
  margin-top: 12px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 950;
}

.image-split {
  align-items: center;
}

.image-split > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mini-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-stats strong {
  display: block;
  font-size: 1.8rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 26px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel a {
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2c3340;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd7df;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 127, 120, 0.18);
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-success {
  padding: 14px;
  border: 1px solid rgba(15, 127, 120, 0.28);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--mint);
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.blog-card h2 a:hover,
.text-link:hover {
  color: var(--teal-dark);
}

.text-link {
  margin-top: 4px;
  color: var(--teal);
  font-weight: 900;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-header {
  padding: 120px 0 54px;
  color: #fff;
  background: var(--ink);
}

.article-header p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.article-body {
  max-width: 880px;
  padding: 56px 0 88px;
}

.article-body > * + * {
  margin-top: 18px;
}

.article-body h2,
.article-body h3,
.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.article-body p,
.article-body li,
.legal-content p {
  color: #333b47;
  font-size: 1.07rem;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body li {
  list-style: disc;
  margin-top: 8px;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-body th,
.article-body td {
  min-width: 150px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  color: #283241;
  background: var(--soft);
}

.article-body iframe,
.article-body video {
  max-width: 100%;
}

.article-body .kk-star-ratings {
  margin: 30px auto 0;
}

.article-cta {
  margin-top: 44px;
  padding: 28px;
  background: var(--soft);
}

.article-cta .btn {
  margin-top: 18px;
}

.legal-content {
  max-width: 880px;
}

.legal-content > * + * {
  margin-top: 16px;
}

.site-footer {
  color: #fff;
  background: #101214;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 62px 0 34px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-actions {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 19;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 660px;
  }

  .hero-proof,
  .pricing-grid,
  .feature-grid,
  .portfolio-grid,
  .reviews-grid,
  .faq-wrap,
  .service-grid,
  .process-grid,
  .blog-grid,
  .contact-grid,
  .expertise-layout,
  .footer-grid,
  .feature-list.three,
  .expert-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .image-split {
    grid-template-columns: 1fr;
  }

  .model-finder {
    padding: 16px;
  }
}

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

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .hero .eyebrow {
    max-width: 300px;
    line-height: 1.45;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 230px;
  }

  .hero-proof,
  .pricing-grid,
  .feature-grid,
  .feature-list,
  .portfolio-grid,
  .reviews-grid,
  .faq-wrap,
  .service-grid,
  .process-grid,
  .blog-grid,
  .contact-grid,
  .expertise-layout,
  .footer-grid,
  .feature-list.three,
  .mini-stats,
  .expert-steps {
    grid-template-columns: 1fr;
  }

  .band,
  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 98px 0 64px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .expertise-section {
    padding: 72px 0;
  }

  .expertise-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.25rem);
    line-height: 1.08;
  }

  .expertise-visual,
  .expertise-visual img {
    min-height: 430px;
  }

  .signal-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 12px;
  }

  .signal-card-top {
    margin-top: -138px;
  }

  .signal-card-bottom {
    margin-top: 0;
  }

  .expert-steps article {
    min-height: auto;
  }

  .expert-steps span {
    margin-bottom: 22px;
  }

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

  .model-filter {
    flex: 1 1 auto;
  }

  .model-count {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
