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

:root {
  --blue: #1a3a8a;
  --blue-dark: #0f2660;
  --blue-light: #e8edf7;
  --blue-accent: #4a7dff;
  --white: #ffffff;
  --grey-50: #f8f9fa;
  --grey-100: #f1f3f5;
  --grey-200: #e9ecef;
  --grey-300: #dee2e6;
  --grey-400: #ced4da;
  --grey-600: #6c757d;
  --grey-800: #343a40;
  --grey-900: #212529;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--blue-dark);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 96px 0;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--grey-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-subtitle.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

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

.btn-white:hover {
  background: var(--grey-100);
  border-color: var(--grey-100);
  color: var(--blue-dark);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-list a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-list a:hover {
  color: var(--blue);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-900);
  transition: all var(--transition);
}

/* ==================== HERO ==================== */
.hero {
  padding: 160px 0 96px;
  background: linear-gradient(135deg, var(--grey-50) 0%, var(--white) 50%, var(--blue-light) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--grey-900);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: 0.3px;
  flex-wrap: wrap;
  order: 2;
  margin-bottom: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  order: 1;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-products {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  perspective: 1000px;
}

.hero-product {
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
  object-fit: contain;
  aspect-ratio: 4/3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.hero-product:hover {
  transform: translateY(-8px) scale(1.02);
}

/* ==================== INTRO ==================== */
.section-intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.intro-image img {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ==================== WHY PARTNER ==================== */
.section-why {
  background: var(--grey-50);
}

.section-why .section-title {
  margin-bottom: 56px;
}

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

.benefit-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.benefit-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--grey-900);
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==================== PRODUCT RANGE ==================== */
.section-products {
  background: var(--white);
}

.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.product-category-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-category-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

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

.product-category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-900);
  padding: 20px 24px 6px;
}

.product-category-card p {
  font-size: 14px;
  color: var(--text-light);
  padding: 0 24px 24px;
  line-height: 1.5;
}

/* ==================== BEST SELLERS ==================== */
.section-bestsellers {
  background: var(--grey-50);
}

.section-bestsellers .section-title {
  margin-bottom: 48px;
}

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

.bestseller-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.bestseller-img {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bestseller-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.bestseller-card:hover .bestseller-img img {
  transform: scale(1.04);
}

.bestseller-card h3 {
  font-size: 17px;
  font-weight: 700;
  padding: 20px 24px 4px;
  color: var(--grey-900);
}

.product-format {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  padding: 0 24px;
  margin-bottom: 8px;
}

.bestseller-card p {
  font-size: 14px;
  color: var(--text-light);
  padding: 0 24px 24px;
  line-height: 1.5;
}

/* ==================== RETAIL SOLUTIONS ==================== */
.section-retail {
  background: var(--white);
}

.section-retail .section-subtitle {
  max-width: 720px;
  margin-bottom: 56px;
}

.retail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.retail-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}

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

.retail-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.retail-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.retail-card h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 20px 24px 8px;
  color: var(--grey-900);
}

.retail-card p {
  font-size: 14px;
  color: var(--text-light);
  padding: 0 24px 24px;
  line-height: 1.5;
}

.retail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px 0 0;
  border-top: 1px solid var(--grey-200);
}

.retail-feature h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--grey-900);
}

.retail-feature p {
  font-size: 15px;
  color: var(--text-light);
}

/* ==================== HYPERMARKETS ==================== */
.section-hypermarkets {
  background: var(--grey-50);
}

.hyper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hyper-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hyper-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.hyper-advantage h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.hyper-advantage p {
  font-size: 14px;
  color: var(--text-light);
}

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

.hyper-image img {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.hyper-image-secondary {
  max-width: 80%;
  align-self: flex-end;
}

/* ==================== PRIVATE LABEL ==================== */
.section-private-label {
  background: var(--white);
}

.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pl-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pl-list {
  margin-top: 12px;
  margin-bottom: 24px;
}

.pl-list li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.pl-process h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--grey-900);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-200);
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* ==================== DISPLAYS GALLERY ==================== */
.section-displays {
  background: var(--grey-50);
}

.section-displays .section-title {
  margin-bottom: 48px;
}

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

.display-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.display-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
}

.display-item:hover img {
  transform: scale(1.05);
}

.display-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

/* ==================== ABOUT ==================== */
.section-about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 16px;
}

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

.about-images img {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

.about-img-secondary {
  max-width: 75%;
  align-self: flex-end;
}

/* ==================== CATALOGUE CTA ==================== */
.section-catalogue-cta {
  background: var(--blue);
  padding: 80px 0;
}

.section-catalogue-cta .section-title {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-text {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
}

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

/* ==================== DISTRIBUTOR ==================== */
.section-distributor {
  background: var(--grey-50);
}

.distributor-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.distributor-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ==================== CONTACT ==================== */
.section-contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-600);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

.contact-detail a {
  color: var(--blue);
}

.contact-detail a:hover {
  color: var(--blue-dark);
}

/* ==================== FORMS ==================== */
.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,138,0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e74c3c;
}

.form-group .error-msg {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-check label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0;
}

.form-check label a {
  color: var(--blue);
  text-decoration: underline;
}

.form .btn {
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 64px 0 32px;
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--grey-400);
}

.footer-address {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey-400);
}

.footer-address a {
  color: var(--grey-400);
}

.footer-address a:hover {
  color: var(--white);
}

.footer-grid h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

.footer-grid ul a,
.footer-grid ul .catalogue-trigger-link {
  font-size: 14px;
  color: var(--grey-400);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  padding: 0;
}

.footer-grid ul a:hover,
.footer-grid ul .catalogue-trigger-link:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--grey-600);
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--grey-600);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--grey-100);
  color: var(--grey-900);
}

.modal-content {
  padding: 48px 40px;
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.modal-success {
  text-align: center;
}

.success-icon {
  margin-bottom: 24px;
}

.modal .form {
  box-shadow: none;
  padding: 0;
}

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

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero {
    padding: 90px 0 64px;
  }

  .hero-content {
    display: contents;
  }

  .hero-title {
    order: 1;
  }

  .hero-subtitle {
    order: 2;
  }

  .hero-products {
    order: 3;
    max-width: 500px;
    margin: 32px 0;
  }

  .hero-trust {
    order: 4;
    margin-bottom: 24px;
  }

  .hero-ctas {
    order: 5;
    margin-bottom: 0;
  }

  .intro-grid,
  .about-grid,
  .hyper-grid,
  .pl-grid,
  .distributor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-categories-grid,
  .bestsellers-grid,
  .retail-grid,
  .displays-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow);
    padding: 16px 24px;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--grey-100);
  }

  .nav-list a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-list a::after {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .product-categories-grid,
  .bestsellers-grid,
  .retail-grid,
  .displays-grid {
    grid-template-columns: 1fr;
  }

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

  .hyper-advantages {
    grid-template-columns: 1fr;
  }

  .retail-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 24px;
  }

  .modal-content {
    padding: 36px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-trust {
    font-size: 12px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-products {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-title {
    font-size: 26px;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

