:root {
  --orange: #fc5f10;
  --black: #111111;
  --white: #ffffff;
  --gray: #888888;
  --text-muted: #5c5c5c;
  --cream: #f8f2eb;
  --cream-strong: #efe4d7;
  --panel: #fffdf9;
  --panel-dark: #171717;
  --border: rgba(17, 17, 17, 0.1);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
  --shadow-soft: 0 18px 44px rgba(17, 17, 17, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(252, 95, 16, 0.08), transparent 22rem),
    linear-gradient(180deg, #fff9f3 0%, #ffffff 20%, #ffffff 100%);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(252, 95, 16, 0.14);
  outline: none;
}

textarea {
  resize: vertical;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.section--tight {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(252, 95, 16, 0.03), rgba(252, 95, 16, 0.01)),
    var(--cream);
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(252, 95, 16, 0.18), transparent 22rem),
    linear-gradient(180deg, #191919 0%, #0d0d0d 100%);
  color: var(--white);
}

.section--faq {
  background:
    radial-gradient(circle at bottom left, rgba(252, 95, 16, 0.07), transparent 20rem),
    var(--panel);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.section-heading h2,
.cta-banner__content h2,
.modal__dialog h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-heading p:last-child,
.cta-banner__content p,
.modal__intro {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-heading--light p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(252, 95, 16, 0.24);
  outline-offset: 2px;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(252, 95, 16, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}

.button--large {
  min-height: 3.8rem;
  padding-inline: 1.6rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

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

.brand img {
  width: auto;
  height: 42px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.92)),
    #111111;
  color: var(--white);
}

.hero__halo {
  position: absolute;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.hero__halo--left {
  left: -6rem;
  top: 4rem;
  background: var(--orange);
}

.hero__halo--right {
  right: -6rem;
  top: 12rem;
  background: #ffd19f;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 3.25rem;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 38rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-points {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
}

.hero-points__item img,
.metric-card img,
.icon-list img {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.35rem;
}

.hero__proof-item {
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__proof-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.35rem;
}

.hero__proof-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.45));
}

.hero__image-frame img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  left: -1.5rem;
  bottom: -1.75rem;
  width: min(100%, 20rem);
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 248, 241, 0.92);
  color: var(--black);
  box-shadow: var(--shadow);
}

.hero__card-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__card-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.quick-links {
  position: relative;
  z-index: 2;
  margin-top: -1.6rem;
}

.quick-links__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quick-links__inner a {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 700;
}

.metric-grid,
.card-grid,
.review-grid,
.advantage-grid,
.certificate-grid,
.site-footer__grid {
  display: grid;
  gap: 1.4rem;
}

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

.metric-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  margin-top: 1.15rem;
  font-size: 2rem;
  font-weight: 800;
}

.metric-card p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.media-card,
.collection-card,
.review-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.media-card img,
.collection-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.media-card__body,
.collection-card__body {
  padding: 1.45rem;
}

.media-card h3,
.collection-card h3,
.process-card h3,
.advantage-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.media-card p,
.collection-card p,
.process-card p,
.review-card blockquote,
.faq-item p,
.site-footer__brand p,
.site-footer__column li {
  color: var(--text-muted);
  line-height: 1.75;
}

.text-link {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-card__step {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: rgba(252, 95, 16, 0.16);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.process-card img {
  width: 100%;
  aspect-ratio: 1.12;
  border-radius: 18px;
  object-fit: cover;
}

.process-card h3 {
  margin-top: 1rem;
}

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

#certificates .container {
  width: min(calc(100% - 2rem), 1280px);
}

.certificate-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.55rem;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.certificate-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-card img {
  aspect-ratio: 0.72;
  border-radius: 16px;
  padding: 0.65rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.certificate-card:hover,
.certificate-card:focus-visible {
  border-color: rgba(252, 95, 16, 0.5);
  transform: translateY(-3px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 75;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.84);
  backdrop-filter: blur(10px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1100px);
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  padding: 1.25rem 1.25rem 1.4rem;
  border-radius: 28px;
  background: #f6f6f3;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.08);
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__dialog .eyebrow,
.lightbox__dialog h2 {
  color: var(--black);
}

.lightbox__dialog img {
  width: 100%;
  max-height: calc(100vh - 12rem);
  margin-top: 1rem;
  border-radius: 20px;
  object-fit: contain;
  background: var(--white);
}

.advantage-card {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.advantage-card__background,
.cta-banner__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.78)),
    linear-gradient(135deg, rgba(252, 95, 16, 0.1), transparent);
}

.advantage-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.7rem;
  color: var(--white);
}

.advantage-card__content h3 {
  margin-bottom: 1.25rem;
  font-size: 1.65rem;
}

.icon-list {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p:first-child {
  margin-top: 0;
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.review-card__author img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__author strong {
  display: block;
}

.review-card__author span {
  color: var(--gray);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  padding: 1.35rem 4rem 1.35rem 1.35rem;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.5rem;
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  color: var(--white);
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.44), rgba(17, 17, 17, 0.78)),
    linear-gradient(135deg, rgba(252, 95, 16, 0.14), transparent);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.4rem 0 0;
}

.contact-strip div {
  min-width: 11rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-strip dt {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-strip dd {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  padding: 4rem 0 7rem;
  background: #0f0f0f;
  color: var(--white);
}

.site-footer__grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  align-items: start;
}

.site-footer__brand img {
  height: 42px;
  width: auto;
}

.site-footer__brand p {
  margin: 1rem 0 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__column h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer__column ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: var(--orange);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.modal--feedback {
  z-index: 80;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 40rem);
  max-height: calc(100vh - 3rem);
  margin: 1.5rem auto;
  overflow: auto;
  padding: 1.6rem;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal__dialog--feedback {
  width: min(calc(100% - 2rem), 31rem);
  padding: 1.8rem;
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.06);
  font-size: 1.4rem;
  line-height: 1;
}

.quote-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.quote-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.country-combobox {
  position: relative;
}

.country-dropdown[hidden] {
  display: none;
}

.country-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 8;
  display: grid;
  gap: 0.2rem;
  max-height: 16rem;
  overflow-y: auto;
  padding: 0.45rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.country-option {
  display: block;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: left;
}

.country-option:hover,
.country-option:focus-visible,
.country-option.is-active {
  background: rgba(252, 95, 16, 0.12);
  color: var(--orange);
  transform: none;
}

.country-option--empty {
  cursor: default;
  color: var(--gray);
}

.quote-form__note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gray);
}

.quote-form__note.is-success {
  color: #147a35;
}

.quote-form__note.is-error {
  color: #c43c22;
}

.feedback-status {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.feedback-status__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
}

.feedback-status__icon::before {
  content: "\2713";
}

.feedback-status[data-status="success"] .feedback-status__icon {
  background: rgba(20, 122, 53, 0.12);
  color: #147a35;
}

.feedback-status[data-status="error"] .feedback-status__icon {
  background: rgba(196, 60, 34, 0.12);
  color: #c43c22;
}

.feedback-status[data-status="error"] .feedback-status__icon::before {
  content: "!";
}

.feedback-status h2 {
  margin: 0;
}

.modal__dialog--feedback .modal__intro {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 960px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__grid,
  .card-grid--three,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .hero__card {
    position: static;
    width: 100%;
    margin-top: 1.1rem;
  }

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

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

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

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: block;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body {
    padding-bottom: 5.2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .brand img,
  .site-footer__brand img {
    height: 34px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  #certificates .container {
    width: min(calc(100% - 1.25rem), 1280px);
  }

  .hero__proof,
  .metric-grid,
  .process-grid,
  .review-grid,
  .certificate-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .quick-links__inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.3rem;
  }

  .cta-banner__actions,
  .hero__actions {
    flex-direction: column;
  }

  .contact-strip {
    flex-direction: column;
  }

  .modal__dialog {
    width: calc(100% - 1rem);
    margin: 0.5rem auto;
    max-height: calc(100vh - 1rem);
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy,
  .hero__visual,
  .metric-card,
  .media-card,
  .collection-card,
  .review-card,
  .process-card,
  .advantage-card,
  .faq-item {
    animation: float-up 0.7s ease both;
  }

  .hero__visual {
    animation-delay: 0.08s;
  }

  .metric-card:nth-child(2),
  .media-card:nth-child(2),
  .collection-card:nth-child(2),
  .review-card:nth-child(2),
  .process-card:nth-child(2),
  .advantage-card:nth-child(2) {
    animation-delay: 0.12s;
  }

  .metric-card:nth-child(3),
  .media-card:nth-child(3),
  .collection-card:nth-child(3),
  .review-card:nth-child(3),
  .process-card:nth-child(3),
  .advantage-card:nth-child(3) {
    animation-delay: 0.18s;
  }
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
