:root {
  --blue-50: #f4f9ff;
  --blue-100: #e8f3ff;
  --blue-200: #d4e9ff;
  --blue-300: #a9d0fb;
  --blue-500: #6aaef5;
  --blue-600: #5299e7;
  --blue-700: #2e4a7b;
  --navy: #101d43;
  --navy-soft: rgba(16, 29, 67, 0.7);
  --red: #ef3d3d;
  --red-dark: #df2f2f;
  --white: #ffffff;
  --line: rgba(40, 75, 128, 0.14);
  --shadow: 0 24px 60px rgba(46, 74, 123, 0.12);
  --shadow-soft: 0 14px 40px rgba(56, 84, 129, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max-width));
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(117, 162, 223, 0.18);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(35, 73, 137, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 44px rgba(35, 73, 137, 0.14);
}

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

.brand img {
  width: 118px;
  border-radius: 10px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong {
  color: var(--blue-500);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-copy span {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 36px);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #f24c4c 0%, #de3030 100%);
  box-shadow: 0 16px 28px rgba(239, 61, 61, 0.22);
}

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

.btn-secondary {
  color: var(--blue-600);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(106, 174, 245, 0.45);
}

.btn-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 860px;
  padding-top: 98px;
  background:
    linear-gradient(90deg, rgba(252, 254, 255, 0.98) 0%, rgba(252, 254, 255, 0.94) 28%, rgba(252, 254, 255, 0.58) 48%, rgba(252, 254, 255, 0.08) 72%, rgba(252, 254, 255, 0) 100%),
    url("../assets/images/hero-full-bg.png") center center / cover no-repeat;
}

.hero-inner {
  display: block;
  width: min(100%, var(--max-width));
  min-height: calc(860px - 98px);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  align-self: center;
  max-width: 640px;
  padding: 72px 12px 40px 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy::before {
  content: none;
}

.hero-copy::after {
  position: absolute;
  inset: 4% 0 8% 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 62%, rgba(255, 255, 255, 0.28) 100%);
  border-radius: 32px;
  filter: blur(2px);
}

.hero-kicker,
.section-label {
  display: inline-flex;
  padding: 9px 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(106, 174, 245, 0.12);
  border-radius: 999px;
}

.hero h1,
.page-hero h1 {
  max-width: 560px;
  margin-top: 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.2rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.about-copy p,
.faq-heading p,
.footer-note,
.gallery-copy p,
.service-card p,
.trust-grid p,
.cta-text p,
.contact-card p,
.info-stack p {
  color: var(--navy-soft);
}

.hero p {
  max-width: 470px;
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 590px;
  margin-top: 24px;
}

.hero-points article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 0;
}

.point-icon,
.service-icon,
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--blue-600);
  background: rgba(106, 174, 245, 0.12);
  border-radius: 999px;
}

.point-icon {
  width: 42px;
  height: 42px;
  background: rgba(106, 174, 245, 0.1);
  border: 1px solid rgba(117, 162, 223, 0.18);
}

.point-icon svg,
.service-icon svg,
.trust-icon svg {
  width: 24px;
  height: 24px;
}

.hero-points strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-visual {
  display: none;
}

.hero-house {
  display: none;
}

.hero-wave {
  display: none;
}

.hero-wave::after {
  content: none;
}

.content-band {
  padding: 88px 32px 64px;
  background: var(--white);
}

.about-panel {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: 30px;
  align-items: stretch;
  padding: 26px 0 24px;
  border-bottom: 1px solid var(--line);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  border-radius: 22px;
}

.about-copy {
  align-self: center;
  padding: 14px 0;
}

.about-copy .section-label {
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.about-copy h2,
.section-heading h2,
.faq-heading h2,
.cta-text h2,
.contact-card h2,
.info-panel h2,
.trust-intro h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-copy p + p {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--blue-600);
  font-weight: 800;
}

.services-block {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.22fr 0.78fr;
  gap: 26px;
  align-items: start;
  padding: 24px 0 12px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 238px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.86));
  border: 1px solid rgba(117, 162, 223, 0.15);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 68px;
  height: 68px;
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-link {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-band {
  padding: 88px 32px 64px;
  background: var(--blue-50);
}

.trust-band-inner {
  display: grid;
  grid-template-columns: 0.24fr 0.76fr;
  gap: 26px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  width: 56px;
  height: 56px;
}

.trust-grid h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.supplier-strip {
  padding: 88px 32px 64px;
  background: var(--white);
}

.supplier-inner {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 16px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: center;
}

.supplier-copy .section-label {
  padding: 0;
  color: var(--navy);
  background: transparent;
  border-radius: 0;
}

.supplier-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.supplier-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  margin: 0;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
  border: 1px solid rgba(117, 162, 223, 0.15);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.supplier-logo-card img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.gallery-section,
.faq-section,
.cta-banner,
.contact-page {
  padding: 88px 32px 0;
}

.gallery-section {
  background: var(--blue-50);
}

.gallery-inner,
.faq-inner,
.cta-band-inner,
.contact-layout {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

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

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-large {
  min-height: 480px;
}

.gallery-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(16, 29, 67, 0.05), rgba(16, 29, 67, 0.8));
  border-radius: 20px;
}

.gallery-copy h3,
.gallery-copy p {
  color: var(--white);
}

.faq-heading {
  margin-bottom: 28px;
}

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

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(117, 162, 223, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--blue-600);
  background: rgba(106, 174, 245, 0.14);
  border-radius: 999px;
  transition: transform 0.22s ease;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 22px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.cta-banner {
  padding-bottom: 0;
  background: var(--blue-50);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
  background:
    linear-gradient(135deg, rgba(82, 153, 231, 0.96), rgba(106, 174, 245, 0.96)),
    linear-gradient(180deg, transparent 0 82%, rgba(255, 255, 255, 0.1) 82% 100%);
  border-radius: 30px 30px 0 0;
  position: relative;
  overflow: hidden;
}

.cta-inner::before,
.cta-inner::after {
  position: absolute;
  opacity: 0.14;
  content: "";
  inset: auto auto 0 0;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 0;
}

.cta-inner::before {
  width: 160px;
  height: 92px;
  border-radius: 120px 120px 0 0;
  left: 38px;
}

.cta-inner::after {
  width: 220px;
  height: 118px;
  left: 34%;
  border-radius: 160px 160px 0 0;
}

.cta-text h2,
.cta-text p,
.cta-actions .btn-light {
  color: var(--white);
}

.cta-actions {
  display: flex;
  gap: 14px;
}

.site-footer {
  padding: 42px 22px 24px;
  background: #eef6ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.8fr;
  gap: 26px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.brand-footer img {
  width: 96px;
}

.footer-note {
  max-width: 360px;
  margin-top: 14px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
  color: var(--navy-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(100%, var(--max-width));
  margin: 24px auto 0;
  padding-top: 18px;
  color: var(--navy-soft);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.page-hero {
  display: flex;
  align-items: flex-end;
  min-height: 500px;
  padding: 150px 22px 60px;
  background:
    linear-gradient(130deg, rgba(243, 248, 255, 0.98), rgba(228, 240, 255, 0.85)),
    radial-gradient(circle at top right, rgba(239, 61, 61, 0.08), transparent 28%);
}

.page-hero-copy {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.contact-page {
  padding-bottom: 56px;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 26px;
}

.contact-card,
.info-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(117, 162, 223, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-card .section-label,
.info-panel .section-label {
  margin-bottom: 16px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.contact-card p {
  margin-top: 14px;
  margin-bottom: 22px;
}

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  color: var(--navy);
  background: var(--blue-50);
  border: 1px solid rgba(117, 162, 223, 0.24);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(82, 153, 231, 0.7);
  box-shadow: 0 0 0 4px rgba(106, 174, 245, 0.14);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.form-message {
  min-height: 20px;
  color: var(--red-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-sidebar {
  display: grid;
  gap: 22px;
}

.info-stack {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.info-stack article {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-stack article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-stack h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.map-panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(106, 174, 245, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(106, 174, 245, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  background-size: 64px 64px, 64px 64px, auto;
  border-radius: 26px;
  border: 1px solid rgba(117, 162, 223, 0.18);
}

.map-panel::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  content: "";
  background: var(--red);
  border: 14px solid var(--white);
  border-radius: 999px 999px 999px 0;
  box-shadow: var(--shadow);
  transform: translate(-50%, -58%) rotate(-45deg);
}

.map-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 280px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.map-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 90px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(84vw, 360px);
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(117, 162, 223, 0.18);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .hero-inner,
  .about-panel,
  .services-block,
  .trust-band-inner,
  .supplier-inner,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 46px 22px 18px;
  }

  .hero-copy::before {
    inset: 6% 0 10%;
  }

  .hero-visual {
    min-height: 620px;
    width: 100%;
  }

  .hero-house {
    inset: 0 22px 78px;
    border-radius: 24px;
  }

  .services-grid,
  .trust-grid,
  .supplier-logos,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 14px;
  }

  .brand img {
    width: 84px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-inner,
  .hero-copy,
  .content-band,
  .trust-band,
  .supplier-strip,
  .gallery-section,
  .faq-section,
  .cta-banner,
  .contact-page,
  .site-footer,
  .page-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-copy::before {
    inset: 8% 0 14%;
    opacity: 0.09;
  }

  .content-band,
  .trust-band,
  .supplier-strip,
  .gallery-section,
  .faq-section,
  .cta-banner,
  .contact-page {
    padding-top: 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

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

  .hero-points,
  .services-grid,
  .trust-grid,
  .supplier-logos,
  .gallery-grid,
  .form-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .supplier-logo-card {
    min-height: 110px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .hero-house {
    inset: 0 14px 78px;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .gallery-card,
  .gallery-card-large {
    min-height: 300px;
  }

  .contact-card,
  .info-panel {
    padding: 22px;
  }

  .map-card {
    left: 14px;
    right: 14px;
    max-width: none;
  }
}
