/* ============================================
   KRONSTADT LP. ECHIPAMENTE SRL
   Premium Leather Supplier — Website Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --bg-light:    #faf8f4;
  --bg-cream:    #f0ece3;
  --bg-dark:     #0f0e0c;
  --bg-dark-alt: #161410;
  --text-dark:   #1a1a1a;
  --text-light:  #f0ede6;
  --text-muted:  #7a7268;
  --text-muted-light: #a8a29a;
  --gold:        #b8913a;
  --gold-light:  #d4b896;
  --gold-pale:   #e8d9c0;
  --border-light: rgba(184, 145, 58, 0.2);
  --border-dark:  rgba(184, 145, 58, 0.15);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --transition: 0.3s ease;
  --radius: 2px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.label--light { color: var(--gold-light); }

/* --- Gold Rule Divider --- */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.gold-rule svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: var(--gold);
  opacity: 0.7;
}

/* --- Needle Divider (section separator) --- */
.needle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.needle-divider::before,
.needle-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.needle-divider span {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.6;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(15, 14, 12, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 3rem;
  box-shadow: 0 1px 0 rgba(184, 145, 58, 0.12);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  /* Logo is black — invert to white for dark nav */
  filter: invert(1) brightness(2);
  transition: opacity var(--transition);
}
.nav__logo-img:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.75);
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold-light); }

.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg-dark) !important;
  background: var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: var(--transition);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Leather grain texture overlay via CSS */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(184, 145, 58, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 145, 58, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative corner lines */
.hero::after {
  content: '';
  position: absolute;
  top: 6rem; right: 4rem;
  width: 220px; height: 220px;
  border-top: 1px solid rgba(184, 145, 58, 0.18);
  border-right: 1px solid rgba(184, 145, 58, 0.18);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__content { max-width: 560px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__eyebrow .label { color: var(--gold); }

.hero__title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 145, 58, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(240, 237, 230, 0.2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Hero decorative visual */
.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__emblem {
  position: relative;
  width: 340px;
  height: 340px;
}
.hero__emblem-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 145, 58, 0.2);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.hero__emblem-ring-inner {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(184, 145, 58, 0.12);
  border-radius: 50%;
  animation: rotate 20s linear infinite reverse;
}
.hero__emblem-center {
  position: absolute;
  inset: 50px;
  background: rgba(184, 145, 58, 0.04);
  border: 1px solid rgba(184, 145, 58, 0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.hero__emblem-center span:first-child {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__emblem-center span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 145, 58, 0.6);
}

/* Tick marks on emblem ring */
.hero__emblem-ticks {
  position: absolute;
  inset: 0;
}
.hero__emblem-ticks::before,
.hero__emblem-ticks::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(184, 145, 58, 0.3);
}
.hero__emblem-ticks::before { top: 0; height: 20px; }
.hero__emblem-ticks::after { bottom: 0; height: 20px; }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(184, 145, 58, 0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(184, 145, 58, 0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* === CLIENTS MARQUEE (hero bottom) === */
.clients-bar {
  background: var(--bg-dark-alt);
  border-top: 1px solid rgba(184, 145, 58, 0.1);
  border-bottom: 1px solid rgba(184, 145, 58, 0.1);
  padding: 1.2rem 0;
  overflow: hidden;
}
.clients-bar__track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.clients-bar__item {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(184, 145, 58, 0.5);
  white-space: nowrap;
}
.clients-bar__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(184, 145, 58, 0.3);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === SECTIONS BASE === */
.section {
  padding: 6rem 3rem;
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section--cream { background: var(--bg-cream); }

.section__header {
  margin-bottom: 4rem;
}
.section__header--center {
  text-align: center;
}
.section__header--center .gold-rule {
  justify-content: center;
  max-width: 300px;
  margin: 1.5rem auto;
}
.section__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-top: 0.75rem;
}
.section--dark .section__title { color: var(--text-light); }
.section__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 520px;
  line-height: 1.7;
}
.section--dark .section__subtitle { color: var(--text-muted-light); }
.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* === ABOUT === */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.about__body p strong {
  color: var(--text-dark);
  font-weight: 500;
}

.about__founder {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.about__founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.about__founder-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about__founder-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__stat-card {
  background: var(--bg-dark);
  border: 1px solid rgba(184, 145, 58, 0.15);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about__stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 145, 58, 0.6);
  font-weight: 500;
}
.about__stat-desc {
  font-size: 0.88rem;
  color: rgba(240, 237, 230, 0.5);
  margin-top: 0.25rem;
}

.about__stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__stats-row .about__stat-card {
  padding: 1.5rem;
}
.about__stats-row .about__stat-number { font-size: 2rem; }

/* === PRODUCTS === */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184, 145, 58, 0.1);
  border: 1px solid rgba(184, 145, 58, 0.1);
}

.product-card {
  background: var(--bg-dark-alt);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover { background: #1a1814; }
.product-card:hover::before { transform: scaleX(1); }

.product-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}
.product-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}
.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.product-card__desc {
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card__detail {
  font-size: 0.8rem;
  color: rgba(184, 145, 58, 0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card__detail::before {
  content: '—';
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.7rem;
}

/* Products subsection labels */
.products__subsection-label {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 145, 58, 0.15);
}
.products__subsection-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* 2-col variant for tools section */
.products__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

/* === CLIENTS === */
.clients__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.clients__intro-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.clients__badges {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}
.client-badge {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}
.client-badge:hover { background: var(--bg-cream); }
.client-badge__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}
.client-badge__detail {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.client-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.clients__more {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-cream);
}
.clients__more p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === CONTACT === */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact__info { padding-top: 0.5rem; }
.contact__info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact__info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 145, 58, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.2rem;
}
.contact__info-icon svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5;
}
.contact__info-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}
.contact__info-value {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact__info-value a {
  color: var(--text-light);
  transition: color var(--transition);
}
.contact__info-value a:hover { color: var(--gold-light); }

/* Contact Form */
.contact__form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184, 145, 58, 0.12);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 145, 58, 0.6);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 145, 58, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(184, 145, 58, 0.45);
  background: rgba(255,255,255,0.06);
}
.form-group select option { background: #1a1814; color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 145, 58, 0.1);
  border: 1px solid rgba(184, 145, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

/* === FOOTER === */
.footer {
  background: #080807;
  border-top: 1px solid rgba(184, 145, 58, 0.1);
  padding: 3rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.footer__logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 0.15rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  text-align: right;
}
.footer__copy a {
  color: rgba(184, 145, 58, 0.5);
  transition: color var(--transition);
}
.footer__copy a:hover { color: var(--gold); }

/* === MOBILE === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about__grid, .clients__intro { grid-template-columns: 1fr; gap: 3rem; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid--2col { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,14,12,0.98);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.1rem; letter-spacing: 0.15em; }
  .nav__toggle { display: flex; z-index: 101; }

  .section { padding: 4rem 1.5rem; }
  .hero__inner { padding: 7rem 1.5rem 5rem; }
  .products__grid { grid-template-columns: 1fr; }
  .about__stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__copy { text-align: center; }

  .hero__emblem { display: none; }
  .clients-bar__track { animation-duration: 15s; }
}
