@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --petrol-950: #172d34;
  --petrol-900: #1e353d;
  --petrol-800: #27424b;
  --petrol-700: #365862;
  --petrol-500: #638089;
  --orange-700: #a95418;
  --orange-600: #c2691f;
  --orange-100: #f7e7d8;
  --cream-100: #f7f5f0;
  --cream-200: #efebe3;
  --cream-300: #e4ded3;
  --white: #ffffff;
  --ink: #25373d;
  --muted: #6c7c7f;
  --border: rgba(39, 66, 75, 0.14);
  --shadow: 0 22px 48px rgba(31, 56, 64, 0.12);
  --radius: 3px;
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--orange-600);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  border-top: 2px solid currentColor;
}

.eyebrow-light {
  color: #e59654;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--petrol-950);
  font-size: clamp(3rem, 5.7vw, 5.15rem);
  line-height: 1.02;
}

h2 {
  color: var(--petrol-950);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.12;
}

h3 {
  line-height: 1.25;
}

em {
  color: var(--orange-600);
  font-family: inherit;
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--orange-600);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button:hover {
  border-color: var(--orange-700);
  background: var(--orange-700);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.65rem;
}

.button-ghost {
  border-color: rgba(39, 66, 75, 0.28);
  color: var(--petrol-800);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--petrol-800);
  color: var(--white);
  background: var(--petrol-800);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(14px);
}

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

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

.brand-logo {
  display: block;
  width: 224px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.main-nav a {
  color: var(--petrol-800);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  color: var(--petrol-800);
  background: transparent;
}

.technical-grid {
  background-color: var(--cream-100);
  background-image:
    linear-gradient(rgba(39, 66, 75, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 66, 75, 0.045) 1px, transparent 1px);
  background-position: center;
  background-size: 48px 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 106px 0 116px;
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 470px;
  height: 470px;
  border: 70px solid rgba(194, 105, 31, 0.055);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
}

.hero-description {
  max-width: 610px;
  margin-bottom: 33px;
  color: #607176;
  font-size: 1.11rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  position: relative;
  padding: 32px 30px 28px;
  border-top: 4px solid var(--orange-600);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--petrol-800);
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
}

.card-kicker {
  margin-bottom: 10px;
  color: #eba36c;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 320px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.25;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.check {
  display: grid;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #f0ae74;
  background: rgba(255, 255, 255, 0.1);
}

.check svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.feature-list span:last-child {
  display: flex;
  flex-direction: column;
  color: #b8cacd;
  font-size: 0.78rem;
}

.feature-list strong {
  margin-bottom: 1px;
  color: var(--white);
  font-size: 0.94rem;
}

.trust-bar {
  color: var(--white);
  background: var(--petrol-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item svg {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  color: #df9456;
}

.trust-item span {
  color: #afc2c5;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.trust-item strong {
  color: var(--white);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 56px;
  margin-bottom: 48px;
  grid-template-columns: 1.15fr 0.85fr;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
}

.services {
  background: #fcfbf8;
}

.service-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 30px 28px 27px;
  background: #fcfbf8;
  transition: 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--orange-600);
  background: var(--orange-100);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--petrol-900);
  font-size: 1.18rem;
}

.service-card p {
  min-height: 73px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card a svg,
.text-link svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.service-card a:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.catalog {
  background: var(--cream-200);
}

.catalog-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 253px;
  padding: 21px;
  border: 1px solid rgba(39, 66, 75, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  transition: 180ms ease;
}

.product-card:hover {
  border-color: rgba(194, 105, 31, 0.45);
  background: var(--white);
  transform: translateY(-4px);
}

.product-number {
  display: block;
  color: var(--orange-600);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.product-visual {
  display: grid;
  height: 121px;
  place-items: center;
  color: var(--petrol-700);
}

.product-visual svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.12;
}

.product-card h3 {
  margin-bottom: 4px;
  color: var(--petrol-900);
  font-size: 1rem;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.catalog-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 19px 21px;
  border-left: 3px solid var(--orange-600);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.catalog-note > svg {
  flex-shrink: 0;
  color: var(--orange-600);
}

.catalog-note p {
  flex: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-note strong {
  display: block;
  color: var(--petrol-800);
}

.buying {
  position: relative;
  overflow: hidden;
  color: #bbcbce;
  background: var(--petrol-900);
}

.buying::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 56px rgba(255, 255, 255, 0.025),
    0 0 0 112px rgba(255, 255, 255, 0.018);
  content: "";
}

.buying-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: 1fr 1.04fr;
}

.buying h2 {
  color: var(--white);
}

.buying-intro > p:not(.eyebrow) {
  max-width: 550px;
}

.security-note {
  display: flex;
  gap: 15px;
  margin-top: 31px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.security-note svg {
  flex-shrink: 0;
  color: #e59654;
}

.security-note p {
  margin: 0;
  color: #b7c9cc;
  font-size: 0.82rem;
}

.security-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: auto 1fr;
}

.steps li:first-child {
  padding-top: 0;
}

.steps li:last-child {
  padding-bottom: 0;
  border: 0;
}

.step-number {
  color: #e59654;
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.steps h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: #b7c9cc;
  font-size: 0.91rem;
}

.company {
  background: #fcfbf8;
}

.company-grid {
  display: grid;
  align-items: center;
  gap: 78px;
  grid-template-columns: 1.08fr 0.92fr;
}

.company-grid h2 {
  margin-bottom: 22px;
}

.company-grid .lead {
  color: var(--petrol-800);
  font-size: 1.08rem;
  font-weight: 600;
}

.company-grid p:not(.eyebrow, .card-kicker) {
  max-width: 650px;
  color: var(--muted);
}

.company-grid .button {
  margin-top: 13px;
}

.company-card {
  padding: 31px 30px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange-600);
  border-radius: var(--radius);
  background: var(--cream-100);
}

.company-card h3 {
  margin-bottom: 22px;
  color: var(--petrol-900);
  font-size: 1.55rem;
}

.company-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  color: var(--petrol-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.company-card li svg {
  width: 18px;
  height: 18px;
  color: var(--orange-600);
  stroke-width: 2.4;
}

.stats {
  display: grid;
  margin-top: 76px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
}

.stats div {
  padding: 22px 25px;
  border-right: 1px solid var(--border);
}

.stats div:first-child {
  border-left: 1px solid var(--border);
}

.stats strong {
  display: block;
  margin-bottom: 3px;
  color: var(--orange-600);
  font-family: var(--font-display);
  font-size: 2.05rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.stats span {
  color: var(--petrol-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact {
  background: var(--cream-200);
}

.contact-heading {
  margin-bottom: 42px;
}

.contact-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-template-columns: 0.77fr 1.23fr;
}

.contact-details {
  padding: 38px 34px;
  color: var(--white);
  background: var(--petrol-800);
}

.contact-details h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.contact-details > p {
  margin-bottom: 27px;
  color: #b7c9cc;
  font-size: 0.91rem;
}

address {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
}

address > a,
address > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

address span {
  display: grid;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  color: #eba36c;
  background: rgba(255, 255, 255, 0.09);
}

address svg {
  width: 17px;
  height: 17px;
}

address div div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

address small {
  margin-bottom: 1px;
  color: #9bb0b4;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

address strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.88rem;
}

.quote-form {
  padding: 37px 38px;
  background: var(--white);
}

.form-header h3 {
  margin-bottom: 4px;
  color: var(--petrol-900);
  font-size: 1.55rem;
}

.form-header p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  gap: 15px 16px;
  grid-template-columns: 1fr 1fr;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-grid span {
  color: var(--petrol-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(39, 66, 75, 0.22);
  border-radius: 2px;
  outline: none;
  color: var(--petrol-800);
  background: #fcfbf8;
  font-size: 0.88rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 45px;
  padding: 0 12px;
}

textarea {
  min-height: 106px;
  padding: 10px 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 3px rgba(194, 105, 31, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 17px 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.consent input {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  accent-color: var(--orange-600);
}

.consent a {
  color: var(--orange-600);
  text-decoration: underline;
}

.quote-form .button {
  border: 0;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 11px 13px;
  border-radius: 2px;
  color: var(--petrol-800);
  background: #edf4f0;
  font-size: 0.8rem;
}

.form-status.visible {
  display: block;
}

.site-footer {
  color: #b1c2c5;
  background: var(--petrol-950);
}

.footer-grid {
  display: grid;
  gap: 46px;
  padding: 63px 0 47px;
  grid-template-columns: 1.7fr 0.75fr 0.96fr 1fr;
}

.brand-light .brand-logo {
  width: 242px;
  padding: 8px 10px;
  border-radius: 2px;
  background: var(--cream-100);
}

.footer-about p {
  max-width: 330px;
  margin: 21px 0 0;
  color: #9cb0b4;
  font-size: 0.86rem;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: #d88745;
  font-family: var(--font-body);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-about) a,
.footer-grid > div:not(.footer-about) p {
  display: block;
  margin: 0 0 8px;
  color: #a9bcc0;
  font-size: 0.82rem;
  transition: color 150ms ease;
}

.footer-grid > div:not(.footer-about) a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  margin: 0;
  color: #8ea3a7;
  font-size: 0.72rem;
}

.footer-bottom span {
  margin-left: 7px;
}

.footer-bottom strong {
  color: #c6d3d5;
}

.whatsapp-float {
  position: fixed;
  z-index: 8;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 30px;
  color: var(--white);
  background: #267154;
  box-shadow: 0 10px 28px rgba(26, 68, 53, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.whatsapp-float:hover {
  background: #1d6046;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
}

/* Legal pages */
.legal-page {
  background: #fcfbf8;
}

.legal-hero {
  padding: 74px 0 64px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 15px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.legal-hero p:last-child {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 52px;
  padding: 65px 0 88px;
  grid-template-columns: 230px minmax(0, 760px);
}

.legal-nav {
  align-self: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-100);
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  color: var(--petrol-900);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

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

.legal-nav a:hover,
.legal-nav a.active {
  color: var(--orange-600);
}

.legal-copy h2 {
  margin: 37px 0 11px;
  color: var(--petrol-900);
  font-size: 1.42rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-copy ul {
  padding-left: 19px;
}

.legal-copy a {
  color: var(--orange-600);
  text-decoration: underline;
}

.legal-updated {
  margin-top: 42px;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem !important;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid {
    gap: 44px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .trust-item {
    padding: 0 16px;
  }

  .contact-grid {
    grid-template-columns: 0.88fr 1.12fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 85px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 6px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 76px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 24px;
    background: rgba(247, 245, 240, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }

  .hero {
    padding: 78px 0 84px;
  }

  .hero-grid,
  .buying-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .trust-item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-heading {
    gap: 16px;
    grid-template-columns: 1fr;
  }

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

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

  .buying-grid {
    gap: 48px;
  }

  .company-grid {
    gap: 45px;
  }

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

  .stats div:nth-child(3) {
    border-left: 1px solid var(--border);
  }

  .stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, 560px);
  }

  .section {
    padding: 70px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 190px;
  }

  .main-nav {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .hero {
    padding: 63px 0 70px;
  }

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

  h2 {
    font-size: clamp(2.08rem, 10vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 27px 21px 22px;
  }

  .hero-card h2 {
    font-size: 1.53rem;
  }

  .trust-item {
    min-height: 97px;
    gap: 10px;
    padding: 0 12px;
  }

  .trust-item svg {
    width: 23px;
    height: 23px;
  }

  .trust-item span {
    font-size: 0.64rem;
  }

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

  .service-card p {
    min-height: 0;
  }

  .catalog-grid {
    gap: 10px;
  }

  .product-card {
    min-height: 203px;
    padding: 15px;
  }

  .product-visual {
    height: 90px;
  }

  .product-visual svg {
    width: 53px;
    height: 53px;
  }

  .product-card h3 {
    font-size: 0.86rem;
  }

  .product-card p {
    font-size: 0.72rem;
  }

  .catalog-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .catalog-note p {
    flex-basis: calc(100% - 48px);
  }

  .catalog-note .text-link {
    margin-left: 42px;
  }

  .stats {
    margin-top: 52px;
  }

  .stats div {
    padding: 18px 13px;
  }

  .stats strong {
    font-size: 1.7rem;
  }

  .stats span {
    font-size: 0.62rem;
  }

  .contact-details,
  .quote-form {
    padding: 27px 21px;
  }

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

  .footer-grid {
    gap: 31px;
    padding-top: 48px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 6px;
  }

  .footer-bottom span {
    display: block;
    margin: 3px 0 0;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    padding: 12px;
  }

  .whatsapp-float span {
    display: none;
  }

  .legal-hero {
    padding: 55px 0 46px;
  }

  .legal-content {
    gap: 28px;
    padding: 42px 0 65px;
    grid-template-columns: 1fr;
  }
}
