:root {
  --ink: #17202a;
  --muted: #5f7180;
  --paper: #f5fbff;
  --white: #ffffff;
  --line: #d7e8f2;
  --aqua: #0098d4;
  --aqua-dark: #075985;
  --green: #0ea5e9;
  --amber: #38bdf8;
  --coral: #2563eb;
  --charcoal: #1d3447;
  --shadow: 0 18px 40px rgba(7, 89, 133, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 10px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 232, 242, 0.95);
  backdrop-filter: blur(16px);
  min-width: 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 180px;
}

.brand-logo {
  display: block;
  width: 140px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-logo {
  width: min(220px, 50vw);
  height: auto;
  filter: none;
}

body.splash-active {
  overflow: hidden;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  max-width: fit-content;
  backdrop-filter: blur(14px);
}

.hero-logo {
  width: 54px;
  height: auto;
  display: block;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 14px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  min-width: 0;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--aqua);
  content: "";
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a.is-active {
  color: var(--aqua-dark);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

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

.header-cta,
.header-call summary,
.btn,
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--aqua);
}

.header-cta svg,
.header-call svg,
.btn svg,
.card-icon svg,
.trust-strip svg,
.contact-item svg,
.reason-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.header-call {
  position: relative;
}

.header-call summary {
  padding: 10px 16px;
  color: var(--white);
  background: var(--aqua-dark);
  cursor: pointer;
  list-style: none;
}

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

.header-call div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 8px;
  min-width: 210px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.header-call div a {
  padding: 10px 12px;
  color: var(--aqua-dark);
  background: #eef8ff;
  border-radius: 8px;
  font-weight: 800;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 78vh;
  height: 78vh;
  max-height: 860px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-bg {
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 42, 68, 0.84) 0%, rgba(7, 89, 133, 0.54) 48%, rgba(7, 89, 133, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 42, 68, 0.42), rgba(7, 89, 133, 0.12));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: 78vh;
  height: 100%;
  margin: 0 auto;
  padding: 72px 0 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
}

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

.btn {
  min-width: 152px;
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--aqua);
  box-shadow: 0 16px 30px rgba(0, 140, 149, 0.26);
}

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

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 12px;
  margin-top: 46px;
}

.hero-proof div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.trust-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip svg {
  color: var(--aqua);
  flex: 0 0 auto;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.split,
.section-head,
.reasons-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: start;
}

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

h2 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.24;
}

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

.intro-copy p {
  font-size: 17px;
}

.section-head {
  margin-bottom: 34px;
  align-items: end;
}

.section-note {
  max-width: 390px;
  justify-self: end;
}

.text-link {
  justify-self: end;
  color: var(--aqua-dark);
}

.text-link::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--amber);
}

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

.service-card,
.project-card,
.timeline article,
.faq details,
.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.08);
}

.service-card {
  min-height: 320px;
  padding: 24px;
}

.section.sales .section-head {
  margin-bottom: 38px;
}

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

.sales-grid .service-card {
  min-height: 260px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--aqua-dark);
  border-radius: 8px;
}

.service-card:nth-child(2) .card-icon {
  background: var(--green);
}

.service-card:nth-child(3) .card-icon {
  background: var(--amber);
}

.service-card:nth-child(4) .card-icon {
  background: var(--coral);
}

.service-card p {
  margin-bottom: 0;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  margin: 12px 0 0;
  background: linear-gradient(135deg, #0b3d5c, #075985);
  color: var(--white);
  overflow: hidden;
}

.media-copy {
  align-self: center;
  width: min(520px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.media-copy h2 {
  color: var(--white);
  font-size: 34px;
  overflow-wrap: break-word;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: break-word;
}

.media-band img {
  height: 100%;
  min-height: 540px;
  background: #20303a;
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "✓";
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  cursor: zoom-in;
  touch-action: manipulation;
}

.project-card-wide {
  grid-column: span 2;
}

.project-card img {
  height: 100%;
  transition: transform 260ms ease, filter 260ms ease;
  cursor: inherit;
}

.project-card:hover img {
  transform: scale(1.04);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgba(7, 18, 29, 0.92);
  color: var(--white);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  margin-bottom: 18px;
}

@media (max-width: 780px) {
  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox img {
    max-width: 98vw;
    max-height: 72vh;
  }

  .image-lightbox .lightbox-caption {
    font-size: 13px;
  }

  .image-lightbox .lightbox-close {
    top: 12px;
    right: 12px;
    padding: 10px 14px;
  }
}

.image-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  backdrop-filter: blur(12px);
}

.image-lightbox .lightbox-caption {
  max-width: 720px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
}

.project-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 23, 28, 0.76));
  content: "";
}

.project-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: var(--white);
}

.project-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: var(--white);
}

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

.timeline article {
  min-height: 270px;
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--aqua-dark);
  background: #dff5f2;
  border-radius: 8px;
  font-weight: 800;
}

.timeline article:nth-child(2) span {
  color: var(--green);
  background: #e3f0e8;
}

.timeline article:nth-child(3) span {
  color: var(--amber);
  background: #f6ead8;
}

.timeline article:nth-child(4) span {
  color: var(--coral);
  background: #f5e4df;
}

.timeline p {
  margin-bottom: 0;
}

.reasons {
  width: 100%;
  max-width: none;
  padding: 86px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason-list {
  display: grid;
  gap: 20px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
}

.reason-list svg {
  margin-top: 5px;
  color: var(--green);
}

.reason-list p {
  margin-bottom: 0;
}

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

.faq details {
  padding: 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.contact {
  padding-bottom: 96px;
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-dark), #0f7bb5);
  border-radius: 8px;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-item-actions {
  grid-template-columns: 24px 1fr auto;
}

.contact-item-actions div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.contact-item-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--aqua-dark);
  background: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label span {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.quote-form textarea {
  min-height: 134px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0, 140, 149, 0.12);
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 26px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

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

.site-footer span,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.sales-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 89, 133, 0.97), rgba(12, 74, 110, 0.92)),
    url("assets/placeholder-havuz.svg") center/cover;
}

.sales-hero > div {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 82px;
}

.sales-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 56px;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.sales-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  overflow-wrap: anywhere;
}

.shop {
  padding-top: 56px;
}

.sales-request-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
}

.sales-note {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-dark), #0ea5e9);
  border-radius: 8px;
  min-width: 0;
}

.sales-note h2,
.sales-note p {
  color: var(--white);
  overflow-wrap: anywhere;
}

.sales-note p {
  color: rgba(255, 255, 255, 0.84);
}

.sales-feature-list {
  margin-top: 22px;
}

.material-request-form {
  min-height: 100%;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-links {
    position: static;
    justify-self: stretch;
    justify-content: flex-start;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 6px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-cta,
  .header-call summary {
    min-height: 40px;
    padding: 9px 13px;
  }

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

  .media-band {
    grid-template-columns: 1fr;
  }

  .media-copy {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }

  .media-copy h2 {
    font-size: 32px;
  }

  .media-band img {
    min-height: 420px;
  }

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

@media (max-width: 780px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 76svh;
    height: auto;
    max-height: none;
  }

  .hero-inner {
    width: calc(100% - 32px);
    max-width: var(--max);
    padding: 58px 0 38px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-top: 30px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: 16px;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 64px 0;
  }

  .split,
  .section-head,
  .reasons-grid,
  .contact-layout,
  .faq-grid,
  .sales-request-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h2 {
    font-size: 30px;
  }

  .text-link,
  .section-note {
    justify-self: start;
  }

  .service-grid,
  .timeline,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-auto-rows: 300px;
  }

  .project-card-wide {
    grid-column: span 1;
  }

  .media-copy {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

  .media-band img {
    min-height: 320px;
  }

  .reasons {
    padding: 64px 16px;
  }

  .contact-copy,
  .quote-form {
    padding: 22px;
  }

  .contact-item-actions {
    grid-template-columns: 24px 1fr;
  }

  .contact-item-actions div {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
    gap: 12px;
    padding: 24px 16px;
  }

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

  .sales-hero > div {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 70px 0 58px;
  }

  .sales-hero h1 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.12;
  }

  .sales-hero p:not(.eyebrow) {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.6;
  }

  .sales-note {
    padding: 24px;
  }

  .sales-note h2 {
    font-size: 28px;
    line-height: 1.16;
  }
}

@media (max-width: 500px) {
  .shop.section,
  .sales-hero > div {
    width: min(330px, calc(100vw - 56px));
    max-width: min(330px, calc(100vw - 56px));
    margin-left: 16px;
    margin-right: auto;
  }

  .sales-hero p:not(.eyebrow) {
    max-width: 300px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .header-cta,
  .header-call summary {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .section,
  .sales-hero > div {
    width: min(350px, calc(100vw - 40px));
    max-width: min(350px, calc(100vw - 40px));
  }

  .nav-links {
    gap: 11px;
    font-size: 13px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

  .hero-badge span {
    text-align: center;
  }
}
