:root {
  --orange: #faa958;
  --orange-strong: #f98f26;
  --orange-soft: #fbc289;
  --text: #464646;
  --muted: #5f5f5f;
  --line: #e8e1da;
  --soft: #fff4e8;
  --soft-2: #f2f1ed;
  --white: #ffffff;
  --dark: #323232;
  --shadow: 0 18px 48px rgba(70, 70, 70, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(249, 143, 38, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 225, 218, 0.88);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 252px;
  text-decoration: none;
}

.brand img {
  width: 270px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Alata, "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.nav a {
  padding: 10px 8px;
  text-decoration: none;
  color: var(--text);
  border-radius: 6px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--orange-strong);
  background: rgba(250, 169, 88, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: Alata, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #2f261c;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(249, 143, 38, 0.25);
}

.button.primary:hover {
  background: var(--orange-strong);
}

.button.secondary {
  color: var(--text);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(70, 70, 70, 0.09);
}

.button.dark {
  color: var(--white);
  background: var(--dark);
}

.hero {
  padding: 54px 0 42px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 54px;
  align-items: center;
}

h1,
h2,
h3,
.headline {
  margin: 0;
  color: var(--text);
  font-family: Alata, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.2vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.22rem, 2.1vw, 1.56rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  line-height: 1.58;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.proof-row span,
.mini-proof {
  min-height: 68px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.proof-row strong,
.mini-proof strong {
  display: block;
  color: var(--text);
  font-family: Alata, "Segoe UI", sans-serif;
  font-size: 1rem;
}

.hero-media {
  position: relative;
}

.hero-logo-card {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(250, 169, 88, 0.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #fff8f0);
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  width: min(100%, 520px);
  display: block;
}

.hero-logo-card.brand-logo-card {
  overflow: hidden;
  padding: 0;
  background: var(--orange-strong);
}

.hero-logo-card.brand-logo-card img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 1.25 / 1;
  background: var(--soft-2);
}

.hero-image.owner-portrait {
  aspect-ratio: 1 / 1;
  min-height: min(520px, 45vw);
  background: linear-gradient(145deg, #fff8f0, #ffffff);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image.owner-portrait img {
  object-position: center top;
}

.owner-card {
  position: absolute;
  left: -24px;
  bottom: -28px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 340px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(70, 70, 70, 0.16);
}

.owner-card img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
}

.owner-card strong {
  display: block;
  font-family: Alata, "Segoe UI", sans-serif;
}

.owner-card span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.35;
}

.section {
  padding: 84px 0;
  border-top: 1px solid rgba(232, 225, 218, 0.42);
}

.section.soft {
  background: linear-gradient(180deg, #f4f3ef 0%, var(--soft-2) 100%);
}

.section.orange-soft {
  background: linear-gradient(180deg, rgba(251, 194, 137, 0.34), rgba(255, 244, 232, 0.74));
}

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

.section.dark h2,
.section.dark h3,
.section.dark .section-kicker {
  color: var(--white);
}

.section.dark p,
.section.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.48fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.single {
  display: block;
  max-width: 820px;
}

.section-kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--orange-strong);
  font-family: Alata, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.card-grid,
.service-grid,
.benefit-grid,
.reference-grid,
.faq-grid,
.application-grid,
.video-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.card,
.service-card,
.reference-card,
.faq-item,
.info-box,
.mini-card,
.video-group,
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card,
.service-card,
.info-box,
.mini-card {
  padding: 24px;
}

.card p,
.service-card p,
.reference-card p,
.info-box p,
.mini-card p {
  color: var(--muted);
}

.dark-box {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.section.dark .dark-box p,
.section.dark .dark-box li {
  color: rgba(255, 255, 255, 0.82);
}

.section.dark .dark-box .list li::before {
  background: var(--orange);
}

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

.local-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}

.local-area-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(51, 76, 105, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--dark);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
}

.application-card {
  min-height: 176px;
}

.case-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(250, 169, 88, 0.42);
  border-radius: 8px;
  color: #d46f14;
  background: rgba(250, 169, 88, 0.14);
}

.case-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card h3 {
  font-size: 1.12rem;
}

.video-list {
  display: grid;
  gap: 14px;
}

.video-group {
  overflow: hidden;
}

.video-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  font-family: Alata, "Segoe UI", sans-serif;
  cursor: pointer;
}

.video-group summary span {
  color: var(--muted);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9rem;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 20px 20px;
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(70, 70, 70, 0.09);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--soft-2);
  overflow: hidden;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.03);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.video-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(50, 50, 50, 0.22);
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--orange-strong);
}

.video-card-body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px 18px 18px;
}

.video-card strong {
  color: var(--text);
  font-family: Alata, "Segoe UI", sans-serif;
  line-height: 1.25;
}

.video-card small {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #3d2f20;
  background: rgba(250, 169, 88, 0.25);
  font-family: Alata, "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-2);
  box-shadow: var(--shadow);
}

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

.media-frame.square {
  aspect-ratio: 1;
}

.media-frame.portrait {
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
}

.media-frame.portrait img {
  object-position: center top;
}

.media-frame.wide {
  aspect-ratio: 1.35 / 1;
}

.media-frame.logo-frame {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: #20b7e8;
}

.media-frame.logo-frame img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.media-frame.contain-frame {
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 28px);
  background: var(--white);
}

.media-frame.contain-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.partner-card {
  display: grid;
  grid-template-rows: 150px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.partner-logo {
  display: grid;
  place-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.partner-logo img {
  display: block;
  width: 100%;
  max-height: 106px;
  object-fit: contain;
}

.partner-body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.partner-body p {
  color: var(--muted);
}

.partner-body a {
  color: var(--orange-strong);
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #2f261c;
  background: var(--orange);
  font-family: Alata, "Segoe UI", sans-serif;
}

.step p {
  color: var(--muted);
}

.reference-card {
  overflow: hidden;
}

.reference-card .media-frame {
  border-radius: 0;
  box-shadow: none;
}

.reference-body {
  padding: 22px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.meta span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(250, 169, 88, 0.46);
  border-radius: 999px;
  color: var(--text);
  background: rgba(250, 169, 88, 0.12);
  font-size: 0.82rem;
  line-height: 1.1;
}

.quote {
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  color: var(--text);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.05rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  font-family: Alata, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #3d2f20;
  background: var(--orange);
  border-radius: 8px;
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-family: Alata, "Segoe UI", sans-serif;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #d9d1c9;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

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

.checks label,
.radio-row label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--muted);
}

.checks input,
.radio-row input {
  width: auto;
  min-height: 0;
  margin-top: 0.32em;
}

.form-note {
  color: var(--muted);
  font-size: 0.91rem;
}

.success-message {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(69, 145, 85, 0.35);
  border-radius: 8px;
  color: #275d36;
  background: #edf8ef;
}

.success-message.visible {
  display: block;
}

.success-message.error {
  border-color: rgba(150, 50, 50, 0.36);
  color: #7d2525;
  background: #fff0f0;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 54px 0 92px;
  color: var(--muted);
  background: #f2f1ed;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(180px, 0.8fr) minmax(260px, 1.2fr) minmax(150px, 0.7fr);
  gap: 36px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 20px;
}

.footer-inner h2,
.footer-inner h3 {
  color: var(--dark);
  font-size: 1.04rem;
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.footer-region p {
  margin: 12px 0 0;
}

.footer-inner a {
  color: var(--text);
  text-decoration: none;
}

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

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-family: Alata, "Segoe UI", sans-serif;
}

.mobile-cta a:first-child {
  color: var(--white);
  background: var(--dark);
}

.mobile-cta a:last-child {
  color: #2f261c;
  background: var(--orange);
}

.page-hero {
  padding: 72px 0 52px;
  background: linear-gradient(180deg, #ffffff, #fff8f0);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 74px;
  }

  .brand {
    min-width: 220px;
  }

  .brand img {
    width: 228px;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 74px);
    padding: 10px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    overflow-y: auto;
  }

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

  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid,
  .two-col,
  .section-heading,
  .page-hero .section-inner,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-image {
    aspect-ratio: 1.35 / 1;
  }

  .hero-logo-card {
    min-height: 300px;
  }

  .owner-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: none;
  }

  .media-frame.portrait {
    justify-self: start;
    width: min(100%, 420px);
  }

  .benefit-grid,
  .card-grid,
  .service-grid,
  .reference-grid,
  .partner-grid,
  .faq-grid,
  .application-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .page-hero {
    padding: 42px 0 38px;
  }

  .section {
    padding: 58px 0;
  }

  .proof-row,
  .benefit-grid,
  .card-grid,
  .service-grid,
  .reference-grid,
  .partner-grid,
  .faq-grid,
  .application-grid,
  .video-grid,
  .field-grid,
  .checks,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 192px;
  }

  .brand img {
    width: 206px;
  }

  .hero-image.owner-portrait {
    min-height: 0;
  }

  .media-frame.portrait {
    width: min(100%, 360px);
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .contact-form {
    padding: 18px;
  }

  .mobile-cta {
    display: grid;
  }

  .hero .proof-row {
    display: none;
  }

  .hero-logo-card {
    min-height: 220px;
    padding: 28px;
  }
}
