/* ===== Variables ===== */
:root {
  --color-bg: #0a0a0b;
  --color-bg-alt: #111113;
  --color-bg-card: #18181b;
  --color-surface: #1e1e22;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #e4e4e7;
  --color-text-muted: #a1a1aa;
  --color-accent: #c8952e;
  --color-accent-light: #e8b84a;
  --color-accent-dark: #a67a1f;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--color-bg-alt);
}

.section--accent {
  background: linear-gradient(135deg, #1a1510 0%, #0a0a0b 50%, #101820 100%);
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(200, 149, 46, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 149, 46, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.nav__logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 149, 46, 0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 11, 0.85) 0%,
    rgba(10, 10, 11, 0.6) 50%,
    rgba(10, 10, 11, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  max-width: 860px;
}

.hero__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(200, 149, 46, 0.3);
  border-radius: 50px;
  background: rgba(200, 149, 46, 0.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Stats ===== */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding-bottom: 40px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat {
  background: var(--color-bg-card);
  padding: 36px 24px;
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
}

.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--color-bg);
  box-shadow: var(--shadow);
}

.about__img-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.about__badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.about__text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.about__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ===== Products ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 149, 46, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-surface);
}

.product-card__img img,
.product-card__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img,
.product-card:hover .product-card__img video {
  transform: scale(1.05);
}

.product-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.product-card__play svg {
  width: 48px;
  height: 48px;
  color: var(--color-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: var(--transition);
}

.product-card__play:hover svg {
  transform: scale(1.1);
  color: var(--color-accent-light);
}

.product-card--video.playing .product-card__play {
  opacity: 0;
  pointer-events: none;
}

.product-card__body {
  padding: 20px;
}

.product-card__body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.product-card__body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== Factory ===== */
.factory__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.factory__showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.factory__showcase-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.factory__showcase-item:hover img {
  transform: scale(1.04);
}

.factory__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 60px;
}

.factory__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.factory__item--large {
  grid-row: span 2;
}

.factory__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s ease;
}

.factory__item:hover img {
  transform: scale(1.05);
}

.factory__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
}

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

.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(200, 149, 46, 0.3);
  transform: translateY(-4px);
}

.process-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===== Global ===== */
.global__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.global__text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.global__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.region-tag {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-light);
  background: rgba(200, 149, 46, 0.1);
  border: 1px solid rgba(200, 149, 46, 0.2);
  border-radius: 50px;
}

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

.global__img {
  border-radius: var(--radius);
  overflow: hidden;
}

.global__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.5s ease;
}

.global__img:hover img {
  transform: scale(1.08);
}

.global__img--wide {
  grid-column: span 3;
}

.global__img--wide img {
  aspect-ratio: 21/9;
}

/* ===== Why ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(200, 149, 46, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 149, 46, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

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

.why-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services__text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.services__list {
  margin-bottom: 32px;
}

.services__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.services__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.services__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.services__overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 24px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.services__overlay-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.services__overlay-card strong {
  font-size: 1.1rem;
  color: var(--color-white);
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__text {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.contact__item:hover {
  border-color: rgba(200, 149, 46, 0.3);
  transform: translateX(4px);
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 149, 46, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.contact__item-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact__item-icon--whatsapp svg {
  color: #25d366;
}

.contact__item span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact__item strong {
  font-size: 0.95rem;
  color: var(--color-white);
}

.contact__form {
  background: var(--color-bg-card);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 46, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #52525b;
}

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

/* ===== Footer ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 400px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__bottom a:hover {
  color: var(--color-accent);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.whatsapp-float__ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.08);
  animation: whatsappRipple 4s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float__ripple:nth-child(2) {
  animation-delay: 1.3s;
}

.whatsapp-float__ripple:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes whatsappRipple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    opacity: 0.15;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.whatsapp-float {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--color-white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  padding: 8px 16px;
  background: var(--color-bg-card);
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory__process {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    gap: 4px;
  }

  .nav__menu.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 14px 16px;
    width: 100%;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }

  .about__grid,
  .global__grid,
  .services__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__img-accent {
    right: 0;
    bottom: -20px;
    width: 50%;
  }

  .about__badge {
    left: 0;
  }

  .factory__showcase {
    grid-template-columns: 1fr;
  }

  .factory__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .factory__item--large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .global__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .global__img--wide {
    grid-column: span 2;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .factory__process {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }

  .stat {
    padding: 24px 16px;
  }

  .stat__num {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer__brand {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact__form {
    padding: 24px;
  }

  .whatsapp-float-wrap {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

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

  .factory__item--large {
    grid-column: span 1;
  }

  .global__gallery {
    grid-template-columns: 1fr;
  }

  .global__img--wide {
    grid-column: span 1;
  }
}
