/* =========================================================
   MIRAI GLOBAL AUTO – Main Stylesheet
   Premium Japanese Vehicle & Machinery Export Theme
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0c1b33;
  --navy-2:      #123d7a;
  --red:         #e11d48;
  --red-hover:   #be123c;
  --white:       #ffffff;
  --gray-light:  #f3f4f6;
  --text-dark:   #0f172a;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  all 0.25s ease;
  --font-main:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Global SVG icon alignment ── */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  overflow: visible;
}

/* SVGs inside flex containers render as block */
.btn svg,
.top-bar__contacts a svg,
.footer__contact-item svg,
.why-card__icon svg,
.mission-card__icon svg,
.contact-info-card__icon svg,
.hero__badge svg,
.hero__trust-item svg,
.hero__visual-badge-icon svg,
.footer__social a svg,
.faq-toggle svg,
.whatsapp-float svg,
.step-card__num svg,
.process-step__icon-col svg {
  display: block;
  flex-shrink: 0;
}

a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-hover); }

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
}

.btn svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225,29,72,0.35);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Section Titles ── */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225,29,72,0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title h2 { color: var(--text-dark); margin-bottom: 16px; }
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar__tagline { color: rgba(255,255,255,0.6); }

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar__contacts a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  line-height: 1;
}

.top-bar__contacts a:hover { color: var(--white); }

.top-bar__contacts svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  flex-shrink: 0;
  display: block;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.14); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }

.site-logo img { height: 52px; width: auto; object-fit: contain; }

.site-logo__text { line-height: 1.2; }

.site-logo__name {
  font-family: var(--font-cond);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
  display: block;
}

.site-logo__name span { color: var(--red); }

.site-logo__sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  letter-spacing: 0.04em;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover { color: var(--red); background: rgba(225,29,72,0.05); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.current-menu-item { color: var(--red); }
.main-nav a.current-menu-item::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 8px;
  padding: 9px 18px !important;
}

.nav-cta:hover {
  background: var(--red-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(225,29,72,0.3);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: var(--transition);
}

.hamburger:hover { background: var(--gray-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  z-index: 999;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav.is-open { display: block; }

.mobile-nav a {
  display: block;
  padding: 16px 24px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-nav a:hover, .mobile-nav a.current-menu-item {
  color: var(--red);
  background: rgba(225,29,72,0.04);
  padding-left: 32px;
}

.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative !important;
  background: var(--navy) !important;
  min-height: 88vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  width: 100% !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,27,51,0.97) 0%, rgba(18,61,122,0.88) 50%, rgba(12,27,51,0.92) 100%);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
}

.hero__content {
  position: relative !important;
  z-index: 10 !important;
  padding: 80px 0 !important;
  width: 100% !important;
  display: block !important;
}

.hero__grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 48px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hero__text {
  flex: 0 0 54% !important;
  width: 54% !important;
  max-width: 54% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.hero__visual-col {
  flex: 0 0 42% !important;
  width: 42% !important;
  max-width: 42% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(225,29,72,0.15);
  border: 1px solid rgba(225,29,72,0.4);
  color: #ff6b87;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  line-height: 1;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
  max-width: 100% !important;
}

.hero h1 span { color: #ff6b87 !important; }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  color: #4ade80;
  flex-shrink: 0;
  display: block;
  margin-top: 1px;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
  display: block;
  width: 100%;
}

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

.hero__visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(12,27,51,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.hero__visual-badge-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__visual-badge-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  color: white;
}

.hero__visual-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero__visual-badge-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-2);
  padding: 28px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.15);
}

.stats-bar__item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__num {
  display: block;
  font-family: var(--font-cond);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-bar__num span { color: #ff6b87; }

.stats-bar__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── CATEGORIES ── */
.categories { padding: 96px 0; background: var(--white); }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__img img { transform: scale(1.05); }

.category-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.category-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
}

.category-card .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ── WHY CHOOSE US ── */
.why-us {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.why-us .section-title h2 { color: var(--white); }
.why-us .section-title .eyebrow { background: rgba(255,107,135,0.15); color: #ff6b87; border: 1px solid rgba(255,107,135,0.25); }
.why-us .section-title p { color: rgba(255,255,255,0.65); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(225,29,72,0.4);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(225,29,72,0.15);
  border: 1px solid rgba(225,29,72,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #ff6b87;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── EXPORT PROCESS ── */
.process { padding: 96px 0; background: var(--gray-light); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-2), var(--red));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card__num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy-2);
}

.step-card__num.active { background: var(--red); box-shadow: 0 0 0 2px var(--red); }

.step-card h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.process__cta {
  text-align: center;
  margin-top: 48px;
}

/* Row 2 of steps */
.process__steps-2 { margin-top: 20px; }
.process__steps-2::before { display: none; }

/* ── COUNTRIES ── */
.countries { padding: 96px 0; background: var(--white); }

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

.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
  cursor: default;
}

.country-card:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.country-card__flag {
  font-size: 2.2rem;
  line-height: 1;
}

.country-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.country-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── CONTACT CTA ── */
.contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta h2 { color: var(--white); margin-bottom: 16px; }
.contact-cta p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; }

.contact-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
  color: white;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer__logo img { height: 44px; width: auto; object-fit: contain; }

.footer__logo-text .site-logo__name { color: var(--white); }
.footer__logo-text .site-logo__sub { color: rgba(255,255,255,0.5); }

.footer__desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social a {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  text-decoration: none;
}

.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer__col a:hover { color: var(--white); padding-left: 4px; }

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: var(--red);
  flex-shrink: 0;
  display: block;
  margin-top: 3px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer__contact-item a:hover { color: white; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b87;
  margin-bottom: 14px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 0;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 72px 0; }
.content-section--gray { background: var(--gray-light); }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.about-content h2 { margin-bottom: 20px; }
.about-content p { font-size: 0.97rem; }

.about-details {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
}

.about-details table { width: 100%; border-collapse: collapse; }
.about-details td {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.about-details td:first-child { color: var(--text-muted); width: 40%; font-weight: 500; }
.about-details td:last-child { color: var(--text-dark); font-weight: 600; }
.about-details tr:last-child td { border-bottom: none; }

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mission-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(18,61,122,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.mission-card__icon svg { width: 26px; height: 26px; color: var(--navy-2); }

.mission-card h3 { font-size: 1rem; margin-bottom: 10px; }
.mission-card p { font-size: 0.87rem; margin-bottom: 0; }

/* ── VEHICLES PAGE ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vehicle-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.vehicle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-card__img img { transform: scale(1.06); }

.vehicle-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

.vehicle-card__models {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
  background: var(--gray-light);
  padding: 8px 12px;
  border-radius: 6px;
  line-height: 1.7;
}

.vehicle-card .btn { align-self: flex-start; padding: 10px 20px; font-size: 0.85rem; }

/* ── PROCESS PAGE ── */
.process-steps-full {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--navy-2), transparent);
  z-index: 0;
}

.process-step:last-child::after { display: none; }

.process-step__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: white;
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy-2);
  flex-shrink: 0;
}

.process-step__body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  flex: 1;
  transition: var(--transition);
}

.process-step__body:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-md);
}

.process-step__body h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── COUNTRIES PAGE ── */
.countries-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.country-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.country-detail-card:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.country-detail-card__flag {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.country-detail-card__content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.country-detail-card__content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-sm);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(12,27,51,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  color: var(--navy);
}

.contact-info-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info-card p { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; margin-bottom: 0; }

.contact-info-card a { color: var(--text-dark); font-weight: 500; text-decoration: none; }
.contact-info-card a:hover { color: var(--red); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(18,61,122,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ── FAQ PAGE ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.is-open { border-color: var(--navy-2); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.is-open .faq-toggle {
  background: var(--navy);
  transform: rotate(180deg);
}

.faq-toggle svg { width: 14px; height: 14px; color: var(--text-dark); }
.faq-item.is-open .faq-toggle svg { color: white; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.is-open { max-height: 500px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ── PRIVACY POLICY ── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 14px; }
.policy-content ul { margin: 12px 0 14px 20px; list-style: disc; }
.policy-content li { font-size: 0.92rem; color: var(--text-dark); margin-bottom: 6px; }

/* ── WOOCOMMERCE ── */
.woocommerce-notices-wrapper { margin-bottom: 24px; }

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.05rem !important;
  font-weight: 700;
  padding: 16px 18px 8px !important;
  color: var(--text-dark);
}

.woocommerce ul.products li.product .price {
  color: var(--red) !important;
  font-weight: 700;
  padding: 0 18px;
  font-size: 0.9rem;
}

.woocommerce ul.products li.product .button {
  margin: 12px 18px 18px !important;
  display: block !important;
  background: var(--navy) !important;
  color: white !important;
  border-radius: var(--radius) !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-align: center;
  transition: var(--transition) !important;
  text-decoration: none;
  border: none !important;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--red) !important;
  transform: translateY(-1px);
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  border-radius: var(--radius);
}

.woocommerce div.product .product_title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.woocommerce div.product p.price { font-size: 1.4rem; color: var(--red) !important; }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--red) !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 14px 28px !important;
  font-size: 0.95rem !important;
  font-family: var(--font-main) !important;
  transition: var(--transition) !important;
  border: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--red-hover) !important;
  color: white !important;
}

.woocommerce-product-inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 12px;
}

.woocommerce-product-inquiry-btn:hover {
  background: #1ebe57;
  color: white;
  transform: translateY(-2px);
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 12px 0;
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .sep { margin: 0 6px; }
.breadcrumbs .current { color: var(--text-dark); font-weight: 500; }

/* ── SIDEBAR / WIDGET ── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
}

/* ── 404 ── */
.error-404 {
  padding: 120px 0;
  text-align: center;
}

.error-404__num {
  font-family: var(--font-cond);
  font-size: 10rem;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 24px;
}

.error-404 h2 { margin-bottom: 16px; }
.error-404 p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-red { color: var(--red) !important; }
.text-navy { color: var(--navy) !important; }
.text-white { color: var(--white) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── RESPONSIVE ── */

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .countries__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px; }
  .stats-bar__item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero__grid {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }
  .hero__text {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero__visual-col {
    display: none !important;
  }
  .hero h1 {
    font-size: 1.9rem !important;
  }
}

@media (max-width: 900px) {
  .top-bar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .mobile-nav { position: fixed; top: 73px; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: 1fr 1fr; }
  .countries-grid-full { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  .container, .container--wide { padding: 0 16px; }
  .hero { min-height: 100svh; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .categories__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contact-cta__btns { flex-direction: column; align-items: center; }
  .contact-cta__btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .process__steps { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .countries__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  /* hero visual hidden on very small screens only */
  h1 { font-size: 2rem; }
  .section-title { margin-bottom: 36px; }
  .categories, .why-us, .process, .countries, .contact-cta, .content-section { padding: 60px 0; }
}

@media (max-width: 400px) {
  .countries__grid { grid-template-columns: 1fr; }
}


/* ── Force correct button colors (override any plugin interference) ── */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background-color: #e11d48 !important;
  border-color: #e11d48 !important;
  color: #ffffff !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  background-color: #be123c !important;
  border-color: #be123c !important;
  color: #ffffff !important;
}

.btn-whatsapp,
a.btn-whatsapp {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.btn-navy,
a.btn-navy {
  background-color: #0c1b33 !important;
  border-color: #0c1b33 !important;
  color: #ffffff !important;
}

.btn-outline {
  background-color: transparent !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
}

/* Ensure hero content is above overlay */
.hero__content {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  width: 100%;
}

.hero .container {
  position: relative;
  z-index: 10;
}


/* ══ HERO NUCLEAR FIXES ══ */
.hero .container {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  max-width: 1200px !important;
}

/* Prevent WordPress admin bar from causing layout shift */
.admin-bar .hero {
  padding-top: 32px;
}

/* Prevent any theme/plugin from collapsing hero columns */
@media (min-width: 769px) {
  .hero__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }
  .hero__text {
    flex: 0 0 54% !important;
    width: 54% !important;
    max-width: 54% !important;
    display: block !important;
  }
  .hero__visual-col {
    flex: 0 0 42% !important;
    width: 42% !important;
    max-width: 42% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .hero__visual {
    display: block !important;
    width: 100% !important;
  }
}
