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

:root {
  --gold:       #C9A96E;
  --gold-lt:    #E8D5B0;
  --gold-dk:    #A8843A;
  --navy:       #1A2332;
  --navy-lt:    #2C3E50;
  --charcoal:   #252B38;
  --cream:      #F4F6F8;
  --off-white:  #F0F2F5;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-lt:    #F3F4F6;
  --border:     #E5E7EB;
  --radius:     14px;
  --radius-sm:  8px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 12px rgba(26,35,50,0.07);
  --shadow-md:  0 8px 32px rgba(26,35,50,0.10);
  --shadow-lg:  0 20px 60px rgba(26,35,50,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =====================
   SCROLL PROGRESS
   ===================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; line-height: 1; text-decoration: none; }

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: filter var(--transition), opacity var(--transition);
}

.navbar.scrolled .logo-img { filter: brightness(0); }

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--gold-lt); }
.navbar.scrolled .nav-links a { color: var(--navy-lt); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language dropdown */
.lang-dropdown { position: relative; }

.lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 7px 13px;
  border-radius: 24px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.lang-arrow-icon { opacity: 0.6; transition: transform var(--transition); }
.lang-dropdown.open .lang-arrow-icon { transform: rotate(180deg); }

.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.navbar.scrolled .lang-btn {
  background: var(--gray-lt);
  border-color: var(--border);
  color: var(--navy);
}

.navbar.scrolled .lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  list-style: none;
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

.lang-menu.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
}

.lang-menu li:hover { background: var(--cream); }

.lm-flag { font-size: 16px; }
.lm-name { flex: 1; font-weight: 400; }
.lm-code { font-size: 10px; font-weight: 600; letter-spacing: 1px; color: var(--gray); }

.lang-menu li:hover .lm-name { color: var(--gold); }
.lang-menu li.active { background: var(--cream); }
.lang-menu li.active .lm-name { color: var(--gold); font-weight: 500; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.8px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}

.navbar.scrolled .hamburger span { background: var(--navy); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.8px, 4.8px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.8px, -4.8px); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('fabrika.jpeg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,18,30,0.80) 0%, rgba(15,25,38,0.55) 50%, rgba(10,18,30,0.82) 100%);
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  top: -150px; left: -180px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  animation: orbFloat1 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: 0; right: -120px;
  background: radial-gradient(circle, rgba(201,169,110,0.09) 0%, transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 350px; height: 350px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  animation: orbFloat3 22s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.06) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 740px;
  padding: 0 24px;
  padding-bottom: 120px;
  animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo {
  width: 240px;
  max-width: 65vw;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.22));
  animation: heroFadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.28);
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: heroFadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.3);
  animation: pulse 2s ease-in-out infinite;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  animation: heroFadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.60);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: heroFadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Hero stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(12, 19, 30, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,169,110,0.18);
  padding: 22px 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.hero-stat-lbl {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.38);
}

.btn-large { padding: 18px 48px; font-size: 12px; }

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn-shine:hover::after { left: 140%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.30);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(201,169,110,0.06);
  transform: translateY(-2px);
}

/* =====================
   SECTION COMMON
   ===================== */
section { padding: 108px 0; }

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

.section-label.light { color: var(--gold-lt); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 68px;
  line-height: 1.75;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
  margin-top: 8px;
}

.about-logo {
  height: 54px;
  width: auto;
  margin-bottom: 30px;
  display: block;
  object-fit: contain;
}

.about-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 24px;
}

.about-vision {
  background: linear-gradient(135deg, var(--navy), #243447);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 28px 0 36px;
  border-left: 3px solid var(--gold);
}

.about-vision h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-vision p {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.72) !important;
  line-height: 1.72;
  margin-bottom: 0 !important;
}

.about-stats { display: flex; gap: 40px; flex-wrap: wrap; }

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gray);
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: 500;
}

.about-visual { display: flex; flex-direction: column; gap: 18px; }

.about-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition);
}

.about-card:hover {
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: 0 4px 24px rgba(201,169,110,0.12);
  background: var(--white);
}

.about-card-icon { font-size: 19px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.about-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.about-card p { font-size: 13px; color: var(--gray); }

/* =====================
   PROCESS
   ===================== */
.process { background: var(--white); position: relative; overflow: hidden; }

.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  margin-top: 64px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% + 35px);
  right: calc(10% + 35px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), var(--gold-lt));
  opacity: 0.5;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  box-shadow: 0 0 0 6px var(--cream);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--cream), 0 8px 24px rgba(201,169,110,0.28);
  transform: scale(1.08);
}

.step-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,110,0.10), rgba(201,169,110,0.18));
  border: 1px solid rgba(201,169,110,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.process-step:hover .step-icon-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  transform: translateY(-2px);
}

.process-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* =====================
   PRODUCTS
   ===================== */
.products { background: var(--white); }

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(201,169,110,0.3);
}

.product-card:hover::before { opacity: 1; }
.product-card:hover::after { transform: scaleX(1); }

.product-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.15));
  border: 1px solid rgba(201,169,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  transition: all var(--transition);
}

.product-card:hover .product-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
}

.product-img-wrap {
  width: 100%;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: background var(--transition);
}

.product-card:hover .product-img-wrap {
  background: linear-gradient(135deg, var(--off-white), #EAE3D8);
}

.product-img {
  height: 132px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.09));
}

.product-card:hover .product-img {
  transform: translateY(-7px) scale(1.05);
}

.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-card > p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-tags li {
  font-size: 10.5px;
  letter-spacing: 0.5px;
  color: var(--navy-lt);
  padding: 5px 11px;
  background: var(--cream);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  transition: all var(--transition);
}

.product-card:hover .product-tags li {
  background: rgba(201,169,110,0.08);
  color: var(--gold-dk);
}

/* Hover overlay */
.product-hover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.94) 0%, rgba(26,35,50,0.82) 55%, transparent 100%);
  padding: 28px 24px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-hover-overlay { transform: translateY(0); }

.pho-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.pho-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pho-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

/* =====================
   WHY CLAB
   ===================== */
.why-clab { background: var(--white); }

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.25);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.15));
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
}

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

.why-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.72;
}

/* =====================
   FACTORY
   ===================== */
.factory {
  background: linear-gradient(150deg, var(--navy) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.factory::before {
  content: '';
  position: absolute;
  top: -50%; right: -15%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.factory-cards {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 68px;
}

.factory-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.factory-card--reverse { grid-template-columns: 1.4fr 1fr; }
.factory-card--reverse .factory-card-img { order: 2; }
.factory-card--reverse .factory-card-body { order: 1; }

.factory-card-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.30);
  aspect-ratio: 3/4;
}

.factory-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}

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

.factory-card-body { display: flex; flex-direction: column; gap: 16px; }

.factory-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(201,169,110,0.20);
  line-height: 1;
  display: block;
}

.factory-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.factory-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.82;
}

.factory-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.factory-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  padding-left: 20px;
  position: relative;
}

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

.factory-card + .factory-card {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 72px;
}

/* =====================
   CERTIFICATIONS
   ===================== */
.certifications { background: var(--white); }

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

.cert-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.25);
  background: var(--white);
}

.cert-card:hover::after { transform: scaleX(1); }

.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(201,169,110,0.28);
}

.cert-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.65;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { background: var(--navy); }
.testimonials .section-label { color: var(--gold-lt); }
.testimonials .section-label::after { background: var(--gold); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.55); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.35);
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testi-role {
  font-size: 12px;
  color: var(--gold-lt);
}

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

/* =====================
   SKIN AI SECTION
   ===================== */
.skinai-section { background: var(--cream); }

.skinai-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  margin-top: 52px;
}

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

.sai-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sai-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(168,132,58,0.25);
}

.sai-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 6px;
}

.sai-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.sai-text span {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
}

.skinai-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.skinai-qr-wrap {
  display: flex;
  justify-content: center;
}

.skinai-qr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.qr-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 100px;
  padding: 5px 16px;
}

#qrcode { display: flex; align-items: center; justify-content: center; }
#qrcode img, #qrcode canvas { border-radius: 10px; }

.qr-hint {
  font-size: 12.5px;
  color: var(--gray);
  text-align: center;
}

.qr-direct-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dk);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,132,58,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.qr-direct-link:hover { color: var(--gold); border-color: var(--gold); }

.nav-skinai {
  color: var(--gold-dk) !important;
  font-weight: 500;
}

@media (max-width: 900px) {
  .skinai-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .skinai-qr-wrap { order: -1; }
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: linear-gradient(145deg, var(--navy) 0%, #253347 50%, var(--charcoal) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.cta-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

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

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

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon { font-size: 21px; margin-top: 2px; }

.contact-item h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p { font-size: 14px; color: var(--gray); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-lt);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.10);
}

.form-group textarea { resize: vertical; }

.form-success {
  font-size: 14px;
  color: #16a34a;
  display: none;
  padding: 14px 18px;
  background: #f0fdf4;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
  animation: fadeIn 0.4s ease;
}

.form-success.visible { display: block; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--navy); padding: 64px 0 32px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-logo { height: 46px; width: auto; object-fit: contain; display: block; margin-bottom: 14px; }

.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.40); line-height: 1.6; }

.footer-keywords {
  font-size: 11px !important;
  color: rgba(255,255,255,0.22) !important;
  margin-top: 10px !important;
  letter-spacing: 0.5px;
}

.footer-links { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.footer-links a {
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  font-weight: 500;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

.footer-cert { font-size: 10.5px !important; letter-spacing: 1px; color: rgba(255,255,255,0.22) !important; }

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }

/* =====================
   WHATSAPP
   ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #20BD5C;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

/* =====================
   INGREDIENTS
   ===================== */
.ingredients { background: var(--cream); }

.ing-intro-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(201,169,110,0.07), rgba(201,169,110,0.03));
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: var(--radius);
  padding: 18px 28px;
  margin-bottom: 52px;
}

.ing-intro-bar svg { color: var(--gold); flex-shrink: 0; }

.ing-intro-bar p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.ing-intro-bar strong { color: var(--navy); font-weight: 600; }

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

.ing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.ing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s ease;
}

.ing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(201,169,110,0.28);
}

.ing-card:hover::before { transform: scaleX(1); }

.ing-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,169,110,0.09), rgba(201,169,110,0.17));
  border: 1px solid rgba(201,169,110,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.ing-card:hover .ing-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
}

.ing-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201,169,110,0.10);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 100px;
  padding: 3px 11px;
  margin-bottom: 12px;
}

.ing-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.ing-types {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-style: italic;
}

.ing-desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 18px;
}

.ing-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ing-products span {
  font-size: 10.5px;
  padding: 4px 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--navy-lt);
  font-weight: 500;
}

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

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, -35px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,169,110,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(201,169,110,0.1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-timeline::before { display: none; }
  .process-step:nth-child(n+4) { margin-top: 24px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .factory-card, .factory-card--reverse { grid-template-columns: 1fr; }
  .factory-card--reverse .factory-card-img { order: unset; }
  .factory-card--reverse .factory-card-body { order: unset; }
  .factory-card-img { aspect-ratio: unset; height: auto; max-height: none; }
  .factory-card-img img { height: auto; max-height: 340px; object-fit: cover; object-position: center; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 48px 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,0.35);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 16px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.80);
  }

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

  .hamburger { display: flex; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat-div { width: 48px; height: 1px; }
  .hero-stats-bar { position: relative; }
  .hero-content { padding-bottom: 0; }

  .products-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links { flex-wrap: wrap; gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .back-to-top { right: 20px; bottom: 88px; }
  .whatsapp-btn { right: 20px; bottom: 28px; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 180px; }
}

/* =====================
   RTL — ARABIC
   ===================== */
body.rtl { direction: rtl; text-align: right; }
body.rtl .nav-links { flex-direction: row-reverse; right: auto; left: -100%; }
body.rtl .nav-links.open { left: 0; right: auto; }
body.rtl .lang-menu { right: auto; left: 0; }
body.rtl .about-card { flex-direction: row-reverse; }
body.rtl .about-vision { border-left: none; border-right: 3px solid var(--gold); padding-left: 0; padding-right: 28px; }
body.rtl .factory-list li { padding-left: 0; padding-right: 20px; }
body.rtl .factory-list li::before { left: auto; right: 0; }
body.rtl .factory-card--reverse .factory-card-img { order: unset; }
body.rtl .factory-card--reverse .factory-card-body { order: unset; }
body.rtl .contact-item { flex-direction: row-reverse; }
body.rtl .product-tags { align-items: flex-end; }
body.rtl .footer-top { flex-direction: row-reverse; }
body.rtl .footer-links { flex-direction: row-reverse; }
body.rtl .about-card { text-align: right; }
body.rtl .process-step { text-align: right; align-items: flex-start; }
body.rtl .why-card { text-align: right; }
body.rtl .cert-card { text-align: right; }
body.rtl .cta-inner { text-align: right; }
body.rtl .hero-content { direction: rtl; }
body.rtl .back-to-top { right: auto; left: 28px; }
body.rtl .whatsapp-btn { right: auto; left: 28px; }
