/* UNOWA Landing — styles from Frame 15 + iPhone mockups */

:root {
  --color-bg: #F8F8F8;
  --color-surface: #ffffff;
  --color-primary: #04477A;
  --color-primary-hover: #033a62;
  --color-accent: #FF9933;
  --color-accent-hover: #e68a2e;
  --color-nav-gradient-end: #0782E0;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --font: 'Unbounded', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header — темно-синій градієнт, білий текст, помаранчева кнопка (макет) */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(90deg, #04477A 0%, #0782E0 100%);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo__img {
  display: block;
  flex-shrink: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.nav__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav__list a:hover {
  opacity: 0.9;
}

.nav__cta {
  padding: 10px 20px;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: var(--radius);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

@media (max-width: 992px) {
  .header__actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #04477A 0%, #0782E0 100%);
    box-shadow: var(--shadow);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .header__phone {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* Hero — фон #F8F8F8, текст зліва, глобус справа (макет) */
.hero {
  padding: 80px 0 100px;
  background: #F8F8F8;
  color: var(--color-text);
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.hero__content {
  flex: 1 1 52%;
  min-width: 0;
  max-width: 580px;
}

.hero__title {
  margin: 0 0 16px;
  /*font-size: clamp(3.4375rem, 3.5vw, 2.25rem);*/
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
}

.hero__line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.hero__subtitle {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--color-text);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.hero__media {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__img {
  width: 100%;
  max-width: 380px;
  max-height: 380px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    max-width: 320px;
    justify-content: center;
  }

  .hero__img {
    max-width: 100%;
    max-height: 320px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0 64px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__media {
    max-width: 280px;
  }

  .hero__img {
    max-height: 280px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
text-transform: uppercase;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
}

.btn--secondary {
  background: #fff;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-bg);
  border-color: var(--color-text);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: rgba(14, 116, 144, 0.08);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.9375rem;
}

.btn--full {
  width: 100%;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section__title {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}

/* Заголовок з помаранчевими лініями (Міжнародні бренди) */
.section__title--lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section__title--lines::before,
.section__title--lines::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: var(--color-accent);
}

@media (max-width: 480px) {
  .section__title--lines::before,
  .section__title--lines::after {
    max-width: 40px;
  }
}

/* Блок Міжнародні бренди */
.brands-section {
  background: var(--color-surface);
}

.brands-slider {
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-gutter: stable;
}

.brands-slider:active {
  cursor: grabbing;
}

.brands-slider a,
.brands-slider button {
  cursor: pointer;
}

.brands-slider__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.brands-slider::-webkit-scrollbar {
  height: 8px;
}

.brands-slider::-webkit-scrollbar-track {
  background: var(--color-bg);
  border-radius: 4px;
}

.brands-slider::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

.brands-card {
  flex: 0 0 auto;
  width: 300px;
  min-height: 260px;
  padding: 24px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  border: 1px solid var(--color-border);
}

.brands-card__logo {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: block;
}

.brands-card__logo-img {
  max-width: 160px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.brands-card__logo--blue { color: #2563eb; }
.brands-card__logo--purple { color: #7c3aed; }
.brands-card__logo--green { color: #059669; }
.brands-card__logo--black { color: #1e293b; font-weight: 800; }
.brands-card__logo--mikko { color: #059669; font-weight: 600; }
.brands-card__logo--med { color: #2563eb; }
.brands-card__logo--zmrobo { color: #dc2626; }
.brands-card__logo--zmrobo .brands-card__logo-sub { font-size: 0.85em; color: #1e293b; font-weight: 600; display: block; margin-top: 2px; }

.brands-card__desc {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  flex-grow: 1;
}

.brands-card__btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 20px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}

.brands-card__btn:hover {
  background: var(--color-accent-hover);
}

/* Why us (Чому обирають нас) — помаранчевий заголовок, глобус зліва на сітці, список з синіми іконками справа */
.why-us {
  padding: 0;
}

.why-us__header {
  background: var(--color-accent);
  padding: 20px 24px;
}

.why-us__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.why-us__body {
  background: #fff;
  padding: 48px 0;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Ліва колонка — сітка + глобус */
.why-us__globe {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 32px;
}

.why-us__globe-img {
  width: 100%;
  max-width: 320px;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

/* Права колонка — список з іконками */
.why-us__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-weight: 500;
  color: var(--color-text);
}

.why-us__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0782E0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__icon svg {
  width: 24px;
  height: 24px;
}

.why-us__icon--free {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.why-us__text {
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-us__globe {
    min-height: 260px;
    padding: 24px;
  }

  .why-us__globe-img {
    max-width: 240px;
    max-height: 240px;
  }

  .why-us__body {
    padding: 32px 0;
  }

  .why-us__title {
    text-align: center;
  }
}

/* Audience + Documents (два блоки) */
.audience-docs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.audience-block__list,
.docs-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.audience-block__list li,
.docs-block__list li {
  padding: 14px 20px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.audience-block .section__title,
.docs-block .section__title {
  text-align: left;
}

@media (max-width: 768px) {
  .audience-docs__grid {
    grid-template-columns: 1fr;
  }
}

/* About — біла картка, заголовок з помаранчевою пігулкою та лінією, два стовпці (макет) */
.about .section__title {
  display: none;
}

.about__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 40px 48px 48px;
}

.about__title-wrap {
  /*display: flex;*/
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.about__title-line {
  flex: 0 0 48px;
  height: 2px;
  background: #4a5568;
  margin-right: 12px;
}

.about__title {
  margin: 0;
  /*font-size: 1.25rem;*/
  font-weight: 400;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: #FFA500;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-block;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about__content {
  max-width: none;
  margin: 0;
}

.about__lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 16px;
  line-height: 1.6;
}

.about__content p {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: var(--color-text);
  line-height: 1.6;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__media {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-bg);
}

.about__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 280px;
}

@media (max-width: 768px) {
  .about__card {
    padding: 28px 24px 32px;
  }

  .about__title-wrap {
    margin-bottom: 24px;
  }

  .about__title-line {
    flex: 0 0 24px;
    margin-right: 8px;
  }

  .about__title {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__media {
    order: -1;
  }

  .about__img {
    min-height: 220px;
  }
}

/* Brand cards (картки комплектів з описом + Каталог) */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.brand-card {
  background: var(--color-surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-card__title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.brand-card__desc {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.brand-card__link {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.brand-card__link:hover {
  text-decoration: underline;
}

/* Kits grid */
.kits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.kit-card {
  aspect-ratio: 1;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.kit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.kit-card__label {
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
}

@media (max-width: 480px) {
  .kits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Directions */
.directions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.direction-card {
  background: var(--color-surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.direction-card__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.direction-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .directions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .directions__grid {
    grid-template-columns: 1fr;
  }
}

/* For whom */
.for-whom__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.for-whom__list li {
  padding: 16px 20px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 500;
}

/* Documents */
.documents__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.documents__list li {
  padding: 16px 20px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 500;
}

/* About kits */
.about-kits__text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Product spotlight */
.spotlight {
  position: relative;
  background: var(--color-surface);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
}

.spotlight__title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.spotlight__desc {
  margin: 0 0 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.spotlight__meta {
  margin: 0 0 24px;
  font-weight: 600;
  color: var(--color-primary);
}

@media (max-width: 480px) {
  .spotlight {
    padding: 28px 20px;
  }

  .spotlight__badge {
    top: 16px;
    right: 16px;
  }
}

/* Form — блок консультацій: синя панель зліва, форма справа (макет) */
.form-section {
  padding: 64px 0;
}

.form-section__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-section__panel {
  padding: 48px 40px;
}

.form-section__panel--left {
  background: linear-gradient(135deg, #04477A 0%, #0782E0 100%);
  background-image:
    linear-gradient(135deg, #04477A 0%, #0782E0 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-section__heading {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-section__panel--right {
  background: #fff;
}

.form-section__intro {
  margin: 0 0 28px;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
  text-align: left;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label-text {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.form__input {
  padding: 10px 0 12px;
  font-family: var(--font);
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #0782E0;
  border-radius: 0;
  background: transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input::placeholder {
  color: #94a3b8;
}

.form__input:focus {
  outline: none;
  border-bottom-color: #04477A;
}

.form__phone-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 2px solid #0782E0;
  padding-bottom: 2px;
}

.form__phone-prefix {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--color-text);
  flex-shrink: 0;
}

.form__input--phone {
  flex: 1;
  min-width: 120px;
  border: none;
  padding-left: 0;
}

.form__input--phone:focus {
  border-bottom: none;
}

.form__error {
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 4px;
}

.form__error[hidden] {
  display: none;
}

.form__submit {
  margin-top: 8px;
  padding: 16px 24px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #F7941D;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.form__submit:hover {
  background: #e08618;
}

@media (max-width: 768px) {
  .form-section__card {
    grid-template-columns: 1fr;
  }

  .form-section__panel {
    padding: 32px 24px;
  }

  .form-section__panel--left {
    padding: 36px 24px;
  }

  .form-section__heading {
    font-size: 1.35rem;
  }
}

/* Footer — синій фон, глобус і адреса по центру, контакти справа, копірайт зліва */
.footer {
  padding: 56px 0 28px;
  background: #1A6EDF;
  color: #fff;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__center {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__globe {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer__address {
  margin: 0;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 1;
}

.footer__contacts {
  grid-column: 3;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__contacts-title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__contacts-line {
  display: block;
  width: 48px;
  height: 2px;
  background: #fff;
  margin-bottom: 8px;
}

.footer__link {
  font-size: 0.9375rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__copy {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer__center {
    grid-column: 1;
  }

  .footer__contacts {
    grid-column: 1;
    align-items: center;
    text-align: center;
  }

  .footer__globe {
    width: 80px;
  }
}

/* Адаптація під широкі екрани (1920px) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .hero {
    padding: 100px 0 120px;
  }

  .hero__content {
    max-width: 640px;
  }

  .hero__subtitle {
    max-width: 520px;
  }

  .hero__media {
    max-width: 480px;
  }

  .hero__img {
    max-width: 440px;
    max-height: 440px;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    margin-bottom: 40px;
    font-size: 2rem;
  }

  .brands-section .container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .brands-card {
    width: 320px;
    min-height: 280px;
    padding: 28px;
  }

  .form-section__card {
    max-width: none;
  }

  .about__card {
    padding: 48px;
  }

  .why-us__body {
    padding: 64px 0;
  }

  .footer__inner {
    padding-top: 48px;
    padding-bottom: 32px;
  }
}
