@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --teal: #5bbfb0;
  --teal-dark: #3fa898;
  --topbar-bg: #3e4c52;
  --footer-bg: #b3c8d8;
  --text: #2d2d2d;
  --text-mid: #666;
  --bg-light: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); line-height: 1.6; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Topbar ── */
.topbar {
  background: var(--topbar-bg);
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.topbar-phone { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; }
.topbar-phone:hover { color: #fff; }
.topbar-icons { display: flex; gap: 10px; }
.topbar-icons a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.topbar-icons a:hover { color: #fff; }
.topbar-icons svg { width: 15px; height: 15px; fill: currentColor; }

/* ── Header ── */
.site-header {
  background: var(--white);
  padding: 13px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.site-logo img { height: 48px; width: auto; }

/* ── Nav ── */
.site-nav > ul { display: flex; align-items: center; }
.site-nav li { position: relative; }
.site-nav > ul > li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; height: 56%;
  width: 1px;
  background: var(--border);
}
.site-nav a {
  display: block;
  padding: 8px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--teal); }

/* ── Dropdown ── */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-top: 2px solid var(--teal);
  z-index: 200;
}
.dropdown li::before { display: none !important; }
.dropdown li a {
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid) !important;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: #fafafa; color: var(--teal) !important; }
.has-dropdown:hover .dropdown { display: block; }

/* ── Burger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-white-outline { border: 2px solid var(--white); color: var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--teal); }
.btn-teal-outline { border: 2px solid var(--teal); color: var(--teal); }
.btn-teal-outline:hover { background: var(--teal); color: var(--white); }

/* ── Home Hero ── */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background: url('../img/fondo-home-naturalsoap.png') center/cover no-repeat;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 60, 80, 0.18);
}
.home-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}
.home-hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* ── Feature Boxes ── */
.feature-boxes { background: var(--white); padding: 60px 20px; }
.feature-boxes .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-box {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-box-icon {
  width: 100%;
  padding: 40px 20px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}
.feature-box.teal-top .feature-box-icon { background: var(--teal); }
.feature-box-icon img { width: 80px; height: 80px; object-fit: contain; }
.feature-box-body {
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  width: 100%;
}
.feature-box h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.feature-box p { font-size: 15px; color: var(--text-mid); flex: 1; line-height: 1.7; }

/* ── Welcome Section ── */
.welcome-section { background: var(--white); padding: 75px 20px; }
.welcome-inner { max-width: 940px; margin: 0 auto; text-align: center; }
.welcome-logo { margin-bottom: 24px; }
.welcome-logo img { height: 90px; margin: 0 auto; }
.welcome-intro {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto 52px;
  line-height: 1.9;
}
.welcome-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.welcome-col {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 42px 30px;
}
.welcome-col h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 14px;
}
.welcome-col p { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.75; }

/* ── Formula CTA ── */
.formula-cta {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.formula-cta-bg {
  position: absolute; inset: 0;
  background: url('../img/banner-personalizzazioneformula.webp') center/cover no-repeat;
}
.formula-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(40, 130, 115, 0.84);
}
.formula-cta-inner {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  padding: 65px 20px;
  width: 100%;
  color: var(--white);
}
.formula-cta-inner h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 22px);
  max-width: 700px;
  line-height: 1.6;
}

/* ── Brands Section ── */
.brands-section { background: var(--white); padding: 80px 20px; text-align: center; }
.brands-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.brands-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 58px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto 0;
  align-items: center;
}
.brand-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}
.brand-item a:hover { opacity: 0.8; }
.brand-item img { max-height: 68px; width: auto; object-fit: contain; }
.brand-desc { font-size: 13px; color: var(--text-mid); }

/* ── YesHome CTA (home) ── */
.yeshome-home-cta {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  overflow: hidden;
}
.yeshome-home-cta-bg {
  position: absolute; inset: 0;
  background: url('../img/mockup-yeshome-b2binsieme.jpg') center/cover no-repeat;
}
.yeshome-home-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 40, 60, 0.58);
}
.yeshome-home-cta-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 70px 20px;
  max-width: 700px;
}
.yeshome-home-cta-content h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.35;
}
.yeshome-home-cta-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

/* ── Page Banner (inner pages) ── */
.page-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-banner-overlay { position: absolute; inset: 0; background: rgba(45, 140, 125, 0.62); }
.page-banner h1 {
  position: relative; z-index: 2;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  padding: 65px 20px;
}

/* ── Section Heading ── */
.section-heading { text-align: center; margin-bottom: 54px; }
.section-heading h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-heading p { font-size: 15px; color: var(--text-mid); }

/* ── Product Grid ── */
.product-section { background: var(--white); padding: 70px 20px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 36px;
}
.product-card { text-align: center; }
.product-card img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.product-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* ── Info Section ── */
.info-section { background: var(--bg-light); padding: 60px 20px; }
.info-section .container { text-align: center; max-width: 820px; }
.info-icon {
  width: 100px; height: 100px;
  border: 1px dashed #aaa;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.info-icon img { width: 56px; height: 56px; object-fit: contain; }
.info-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.info-section p { font-size: 15px; color: var(--text-mid); line-height: 1.9; }
.info-section p + p { margin-top: 14px; }

/* ── Automotive Intro ── */
.auto-intro { background: var(--white); padding: 70px 20px; }
.auto-intro .inner {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 960px;
  margin: 0 auto;
}
.auto-intro img { width: 200px; flex-shrink: 0; object-fit: contain; }
.auto-intro-text-only h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.auto-intro-text-only p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.auto-intro-text h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.auto-intro-text p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }

/* ── Contact CTA Strip (plain teal) ── */
.contact-cta-strip { background: var(--teal); padding: 60px 20px; text-align: center; }
.contact-cta-strip h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 26px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact CTA Cover (cover image + overlay) ── */
.contact-cta-cover { position: relative; padding: 90px 20px; text-align: center; }
.contact-cta-bg {
  position: absolute; inset: 0;
  background: url('../img/cover-naturalsoap-home.jpg') center/cover no-repeat;
}
.contact-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(45,140,125,0.72);
}
.contact-cta-content { position: relative; z-index: 2; }
.contact-cta-cover h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 28px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ── CTA Boxes (bottom of inner pages) ── */
.cta-boxes { background: var(--bg-light); }
.cta-boxes .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}
.cta-box {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 55px 30px;
  gap: 16px;
  color: var(--white);
}
.cta-box.teal { background: var(--teal); }
.cta-box.dark { background: var(--topbar-bg); }
.cta-box img { width: 58px; height: 58px; object-fit: contain; opacity: 0.95; }
.cta-box h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cta-box p { font-size: 15px; opacity: 0.9; max-width: 260px; line-height: 1.6; }

/* ── Contact Page ── */
.contact-page { background: var(--white); padding: 90px 20px; }
.contact-card { max-width: 560px; }
.contact-card h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.contact-block { margin-bottom: 24px; }
.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.contact-card p { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.contact-card a { color: var(--teal); }
.contact-card a:hover { text-decoration: underline; }
.contact-tagline {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── YesHome Page ── */
.yeshome-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yeshome-hero-bg {
  position: absolute; inset: 0;
  background: url('../img/cover-yeshome-sito.jpg') center/cover no-repeat;
}
.yeshome-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.22); }
.yeshome-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
}
.yeshome-hero-content img { max-width: 280px; margin: 0 auto 18px; }
.yeshome-hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
}

/* ── YesHome Products ── */
.yeshome-products { background: var(--white); padding: 75px 20px; }
.yeshome-products .container { max-width: 1200px; }
.yeshome-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.yeshome-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.yeshome-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.yeshome-card-body {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.yeshome-card-body h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.yeshome-card-body p { font-size: 14px; color: var(--text-mid); flex: 1; line-height: 1.6; }

/* ── Amazon Heading Section ── */
.amazon-heading-section {
  background: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
}
.amazon-logo-large { height: 56px; width: auto; margin: 0 auto 30px; display: block; }
.amazon-heading-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Granuli Section ── */
.granuli-section { background: #1c1c1c; padding: 90px 20px; text-align: center; color: var(--white); }
.granuli-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.granuli-sub {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.granuli-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 34px;
}

/* ── Amazon Section ── */
.amazon-section { background: var(--white); padding: 80px 20px; text-align: center; }
.amazon-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 46px;
}
.amazon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 780px;
  margin: 0 auto 38px;
}
.amazon-item { border-radius: 4px; overflow: hidden; }
.amazon-item img { width: 100%; height: auto; display: block; }
.amazon-logo { margin: 0 auto 30px; }
.amazon-logo img { height: 36px; margin: 0 auto; }

/* ── Text Pages (Privacy / Cookie) ── */
.text-page { background: var(--white); padding: 75px 20px; }
.text-page .container { max-width: 820px; }
.text-page h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 40px;
}
.text-page h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 34px 0 12px;
  color: var(--text);
}
.text-page p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg);
  padding: 60px 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-contacts,
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-contacts a,
.footer-social a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.footer-contacts a:hover,
.footer-social a:hover { opacity: 0.7; }
.footer-contacts svg,
.footer-social svg { width: 20px; height: 20px; fill: var(--white); }
.footer-social .icon-send { fill: none; stroke: var(--white); stroke-width: 1.8; }
.footer-amazon-img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ── Bottom Bar ── */
.bottom-bar { background: var(--topbar-bg); padding: 14px 20px; text-align: center; }
.bottom-bar p { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.8; }
.bottom-bar p + p { margin-top: 3px; }
.bottom-bar a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.bottom-bar a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .site-header { padding: 13px 20px; }
  .topbar { padding: 8px 20px; }

  /* Show burger, hide nav */
  .nav-burger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--teal);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; }
  .site-nav > ul > li + li::before { display: none; }
  .site-nav > ul > li { border-bottom: 1px solid var(--border); }
  .site-nav a { padding: 15px 22px; font-size: 16px; }

  /* Mobile dropdown: hidden by default, shown with .open class via JS */
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown { position: static; box-shadow: none; border-top: none; background: #f8f8f8; }
  .dropdown li a { padding: 13px 36px !important; }

  /* Layout */
  .feature-boxes .container,
  .welcome-cols,
  .brands-grid,
  .amazon-grid { grid-template-columns: 1fr 1fr; }
  .yeshome-grid-4 { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; gap: 22px; text-align: center; }
  .footer-right { flex-direction: column; gap: 18px; }
}

@media (max-width: 620px) {
  .feature-boxes .container,
  .product-grid,
  .welcome-cols,
  .brands-grid,
  .yeshome-grid-4,
  .amazon-grid,
  .cta-boxes .container { grid-template-columns: 1fr; }
  .auto-intro .inner { flex-direction: column; align-items: center; text-align: center; }
  .auto-intro img { width: 140px; }
  .home-hero-content h1 { font-size: 2rem; letter-spacing: 4px; }
  .yeshome-home-cta-content h3 { font-size: 1.4rem; }
  .footer-inner { padding: 0; }
}
