/* ============================================================
   SALMON — Premium Tissue Solutions
   Design: Warm Industrial Minimalism
   Colors: Forest Green + Cream + Gold
   RTL-first (Arabic default), LTR toggle for English
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Tajawal:wght@300;400;500;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --green-dark:   #1B3D2F;
  --green-mid:    #2A5C42;
  --green-light:  #3D7A58;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D5;
  --gold:         #C49A2A;
  --gold-light:   #DEB84A;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #3D3D3D;
  --text-soft:    #6B6B6B;
  --border:       rgba(27,61,47,0.12);

  --font-display: 'Playfair Display', 'Tajawal', serif;
  --font-arabic:  'Tajawal', sans-serif;
  --font-latin:   'DM Sans', sans-serif;
  --font-body:    var(--font-arabic);

  --radius:       4px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 12px rgba(27,61,47,0.08);
  --shadow-md:    0 8px 32px rgba(27,61,47,0.14);
  --shadow-lg:    0 20px 60px rgba(27,61,47,0.18);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height:   72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-arabic);
  background: var(--cream);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  line-height: 1.75;
  overflow-x: hidden;
}

body.lang-en {
  direction: ltr;
  text-align: left;
  font-family: var(--font-latin);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--green-dark);
}
body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4 {
  font-family: var(--font-display);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--green-dark);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--cream); }
.section-dark .section-label { color: var(--gold-light); }
.section-dark .section-sub   { color: rgba(245,240,232,0.75); }

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

.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,42,0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.btn-outline-light:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 14px; right: 14px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-soft);
  font-family: var(--font-arabic);
}
.lang-toggle button.active {
  background: var(--green-dark);
  color: var(--cream);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--green-dark);
  color: var(--cream);
}
.mobile-menu .lang-toggle {
  margin-top: 12px;
  align-self: flex-start;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(42,92,66,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(196,154,42,0.12) 0%, transparent 60%),
    var(--green-dark);
}

/* Paper texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text .section-label { color: var(--gold-light); }
.hero-text .section-label::before,
.hero-text .section-label::after { background: var(--gold-light); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero-title span {
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-card {
  background: rgba(245,240,232,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-logo-card img {
  width: 260px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,240,232,0.15);
}
.hero-stat {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(245,240,232,0.1);
}
body[dir="rtl"] .hero-stat { border-left: none; border-right: 1px solid rgba(245,240,232,0.1); }
.hero-stat:last-child { border: none; }
.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-display);
  display: block;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  display: block;
  margin-top: 4px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--gold);
  padding: 20px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: stripScroll 20s linear infinite;
}
body.lang-en .strip-inner { animation-direction: normal; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.strip-item svg { opacity: 0.8; flex-shrink: 0; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-block {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-main .factory-illustration {
  width: 100%;
  height: 100%;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
body.lang-en .about-badge { left: auto; right: -20px; }
.about-badge .badge-num {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  font-family: var(--font-display);
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border-right: 3px solid var(--green-light);
}
body.lang-en .about-feature { border-right: none; border-left: 3px solid var(--green-light); }
.about-feature svg { flex-shrink: 0; margin-top: 2px; }
.about-feature h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.about-feature p  { font-size: 0.82rem; color: var(--text-soft); }

/* ── PRODUCTS ── */
.products-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.products-header .section-sub { margin: 0 auto; }
.products-header .section-label { justify-content: center; }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.product-card-top {
  height: 200px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-top svg {
  width: 100px;
  height: 100px;
  opacity: 0.9;
}
.product-card-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.lang-en .product-card-badge { right: auto; left: 16px; }

.product-card-body {
  padding: 24px;
}
.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-tag {
  background: var(--cream-dark);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

/* ── PRODUCTION PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--green-light), var(--gold));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-step-icon {
  width: 72px;
  height: 72px;
  background: var(--cream);
  border: 3px solid var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}
.process-step:hover .process-step-icon {
  background: var(--green-dark);
  border-color: var(--gold);
}
.process-step:hover .process-step-icon svg { color: var(--cream); }
.process-step-icon svg { color: var(--green-dark); transition: var(--transition); }

.process-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover h4,
.why-card:hover p  { color: var(--cream); }
.why-card:hover .why-icon { background: rgba(245,240,232,0.1); border-color: var(--gold); }
.why-card:hover .why-icon svg { color: var(--gold-light); }

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-icon svg { color: var(--green-dark); transition: var(--transition); }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; transition: color var(--transition); }
.why-card p  { font-size: 0.85rem; color: var(--text-soft); line-height: 1.7; transition: color var(--transition); }

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

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info > p {
  color: var(--text-soft);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--cream); }
.contact-detail-body strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail-body span  { font-size: 0.95rem; color: var(--text-mid); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--green-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  direction: inherit;
}
body.lang-en .form-group input,
body.lang-en .form-group select,
body.lang-en .form-group textarea {
  font-family: var(--font-latin);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,61,47,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success svg { color: var(--green-dark); margin: 0 auto 16px; }
.form-success h4 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 8px; }
.form-success p  { color: var(--text-soft); }

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 64px 0 0;
}

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

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(42,92,66,0.5) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before,
.page-hero .section-label::after { background: var(--gold-light); }
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p  { color: rgba(245,240,232,0.7); font-size: 1.05rem; max-width: 500px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(245,240,232,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-steps     { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section           { padding: 64px 0; }
  .hero-content      { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { display: none; }
  .hero-stats        { grid-template-columns: repeat(3,1fr); }
  .about-grid        { grid-template-columns: 1fr; }
  .about-badge       { display: none; }
  .about-features    { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr 1fr; }
  .why-grid          { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom     { flex-direction: column; gap: 8px; text-align: center; }

  /* Nav mobile */
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .nav-actions .btn  { display: none; }
}

@media (max-width: 480px) {
  .hero-stats  { grid-template-columns: 1fr; gap: 16px; }
  .hero-stat   { border: none !important; padding: 12px 0; border-top: 1px solid rgba(245,240,232,0.1) !important; }
  .why-grid    { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
