/* ==============================================
   MONAMI PERDE — Luxury Redesign v3
   Font: Poppins | monamiperde.com
   ============================================== */

/* ---------- VARIABLES ---------- */
:root {
  --black:    #080807;
  --dark:     #0E0E0C;
  --dark-2:   #161614;
  --charcoal: #1E1E1B;
  --white:    #FFFFFF;
  --cream:    #FAF9F5;
  --ivory:    #F3F1EB;
  --border:   #E4E1D8;
  --muted:    #8A8880;
  --text:     #1C1B18;

  --gold:     #C9A55A;
  --gold-lt:  #DBBE80;
  --gold-dk:  #A8873A;
  --gold-bg:  rgba(201,165,90,0.08);

  --font:     'Poppins', sans-serif;
  --serif:    'Cormorant Garamond', Georgia, serif;

  --max-w:   1300px;
  --pad:     clamp(20px, 5vw, 56px);
  --hh:      80px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --slow:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- SECTIONS ---------- */
.section       { padding: 130px 0; }
.section-dark  { background: var(--dark); }
.section-light { background: var(--ivory); }

/* ---------- SHARED TYPOGRAPHY ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.tag.light { color: var(--gold-lt); }
.tag.light::before { background: var(--gold-lt); }
.tag.no-line::before { display: none; }

.heading {
  font-family: var(--font);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.heading strong { font-weight: 600; }
.heading.light  { color: var(--white); }
.heading em     { font-style: italic; color: var(--gold); font-weight: 300; }

.body-text       { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.body-text.light { color: rgba(255,255,255,0.55); }

.sec-head        { text-align: center; margin-bottom: 80px; }
.sec-head .tag   { justify-content: center; }
.sec-head .tag::before { display: none; }
.sec-desc        { font-size: 0.93rem; color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto; line-height: 1.9; font-weight: 300; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.38s var(--ease), border-color 0.38s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s var(--ease);
  z-index: -1;
}
.btn:hover::after  { transform: scaleX(1); transform-origin: left; }
.btn:hover         { transform: translateY(-2px); }

.btn-white  { background: var(--white); color: var(--black); }
.btn-white::after  { background: var(--gold); }
.btn-white:hover   { color: var(--white); border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,165,90,0.25); }

.btn-dark   { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark::after   { background: var(--gold); }
.btn-dark:hover    { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,165,90,0.2); }

.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost::after  { background: rgba(255,255,255,0.07); }
.btn-ghost:hover   { border-color: rgba(255,255,255,0.65); }

.btn-ghost-gold { background: transparent; color: var(--gold-lt); border-color: rgba(201,165,90,0.35); }
.btn-ghost-gold::after { background: rgba(201,165,90,0.07); }
.btn-ghost-gold:hover  { border-color: var(--gold-lt); }

.btn-trendyol  { background: #F27A1A; color: var(--white); border-color: #F27A1A; }
.btn-trendyol::after  { background: #D96910; }
.btn-trendyol:hover   { border-color: #D96910; box-shadow: 0 8px 24px rgba(242,122,26,0.3); }

.btn-full { width: 100%; justify-content: center; }

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--hh);
  z-index: 1000;
  transition: background 0.45s var(--ease), box-shadow 0.45s;
}
.header.scrolled {
  background: rgba(8,8,7,0.95);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--hh); gap: 16px;
}

/* Logo */
.logo {
  display: flex; flex-direction: column;
  line-height: 1; gap: 4px; flex-shrink: 0;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  background: linear-gradient(
    110deg,
    var(--white) 0%,
    var(--white) 30%,
    var(--gold-lt) 48%,
    #fff5dc      52%,
    var(--white) 70%,
    var(--white) 100%
  );
  background-size: 260% 100%;
  background-position: 200% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShimmer 7s cubic-bezier(0.4,0,0.2,1) infinite;
  transition: letter-spacing 0.5s var(--ease);
}
.logo:hover .logo-main { letter-spacing: 0.44em; }
@keyframes logoShimmer {
  0%,  65%, 100% { background-position: 220% center; }
  38%            { background-position: -40% center; }
}
.logo-sub {
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.52em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
}
.logo-sub::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  animation: logoLine 1.2s var(--slow) forwards 0.8s;
}
@keyframes logoLine {
  to { width: 100%; }
}

/* Nav */
.nav-list { display: flex; gap: 0; }
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle { display: flex; align-items: center; gap: 5px; }
.lang-btn {
  background: none; border: none;
  font-family: var(--font); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.35);
  padding: 3px 2px; transition: color 0.2s;
}
.lang-btn.active { color: var(--white); }
.lang-btn:hover  { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,0.18); font-size: 0.65rem; }

.ty-header {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--white); padding: 8px 14px;
  background: #F27A1A; border: 1px solid #F27A1A;
  transition: 0.3s var(--ease);
}
.ty-header:hover { background: #D96910; border-color: #D96910; transform: translateY(-1px); }

.wa-header {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 500;
  color: var(--white); padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: 0.3s var(--ease);
}
.wa-header:hover { background: #25D366; border-color: #25D366; }

.burger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 30px; height: 30px;
  background: none; border: none; padding: 0;
}
.burger span { display: block; width: 100%; height: 1px; background: var(--white); transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Background layers */
.hero-bg {
  position: absolute; inset: 0;
  background:
    /* Sol karanlık alan — metin okunabilirliği */
    linear-gradient(95deg, rgba(8,8,6,0.96) 0%, rgba(8,8,6,0.78) 38%, rgba(8,8,6,0.20) 68%, transparent 100%),
    /* Sağda perde ışığı — altın ambient glow */
    radial-gradient(ellipse 65% 85% at 105% 50%, rgba(201,165,90,0.55) 0%, rgba(180,130,50,0.25) 35%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 78% 8%,  rgba(201,165,90,0.28) 0%, transparent 45%),
    radial-gradient(ellipse 38% 50% at 82% 96%, rgba(150,100,20,0.32)  0%, transparent 50%),
    /* Sıcak koyu taban */
    linear-gradient(145deg, #0E0C07 0%, #1E1708 45%, #140F08 100%);
}
/* Kumaş dokusu */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent 0px, transparent 20px,
      rgba(255,255,255,0.013) 20px, rgba(255,255,255,0.013) 22px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 75px,
      rgba(201,165,90,0.028) 75px, rgba(201,165,90,0.028) 77px
    );
}
/* Ghost brand text */
.hero-bg::after {
  content: 'MONAMI';
  position: absolute;
  bottom: -60px; right: -30px;
  font-family: var(--font);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  /* Sadece üst-alt vignette, sol-sağ kapatmıyor */
  background: linear-gradient(180deg,
    rgba(8,8,6,0.35) 0%,
    transparent 15%,
    transparent 80%,
    rgba(8,8,6,0.55) 100%
  );
}

/* Left gold accent line */
.hero-deco {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 10%, var(--gold) 30%, var(--gold-lt) 70%, transparent 90%);
  opacity: 0;
  animation: fadeIn 1.4s ease forwards 1.5s;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: var(--hh) 0 60px;
}

.hero-tag {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.9s var(--slow) forwards 0.4s;
}
.hero-tag::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s var(--slow) forwards 0.6s;
}
.hero-headline em   { font-style: normal; font-weight: 300; color: var(--white); display: block; margin-bottom: 0.1em; }
.hero-headline span { font-style: normal; font-weight: 300; color: var(--gold-lt); letter-spacing: -0.01em; }
@keyframes goldShimmer {
  0%, 100% { color: var(--white); text-shadow: none; }
  45%, 55% { color: var(--gold-lt); text-shadow: 0 0 60px rgba(201,165,90,0.25); }
}

.hero-sub {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(255,255,255,0.62);
  max-width: 460px; line-height: 1.75;
  margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.9s var(--slow) forwards 0.85s;
}
.hero-ticker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.9s var(--slow) forwards 1.0s;
}
.ht-bar {
  display: block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.ht-word {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ht-word.fade { opacity: 0; transform: translateY(7px); }
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0; animation: fadeUp 0.9s var(--slow) forwards 1.05s;
}
.hero-stats {
  display: flex; align-items: stretch;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; animation: fadeUp 0.9s var(--slow) forwards 1.25s;
}
.hstat {
  display: flex; flex-direction: column; gap: 5px;
  padding-right: 44px; margin-right: 44px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hstat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hstat b {
  font-size: 2.4rem; font-weight: 200;
  color: var(--white); line-height: 1;
  letter-spacing: -0.03em;
}
.hstat span {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.scroll-indicator {
  position: absolute; bottom: 44px; right: var(--pad);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.scroll-indicator::before {
  content: 'SCROLL';
  font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.26em; color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
}
.scroll-indicator span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.4s ease infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30%  { opacity: 1; }
  70%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ==============================================
   MARQUEE
   ============================================== */
.marquee-wrap {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,165,90,0.18);
  border-bottom: 1px solid rgba(201,165,90,0.18);
  padding: 16px 0; overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-content span {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.26em; color: rgba(255,255,255,0.45);
}
.marquee-content .m-dot { color: var(--gold); font-size: 0.5rem; letter-spacing: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==============================================
   ABOUT
   ============================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.about-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,165,90,0.15) 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 20px);
}
.about-img-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.about-img-inner span {
  font-size: 2rem; font-weight: 700;
  letter-spacing: 0.35em; color: rgba(201,165,90,0.3);
  text-align: center; line-height: 1.5;
}
.about-badge {
  position: absolute; bottom: -32px; right: -32px;
  background: var(--gold); color: var(--white);
  padding: 28px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  box-shadow: 0 24px 64px rgba(201,165,90,0.35);
}
.badge-yr  { font-size: 2.8rem; font-weight: 200; line-height: 1; letter-spacing: -0.03em; }
.badge-lbl { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }

.about-copy { padding-left: 8px; }
.check-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 32px; margin-top: 40px;
}
.check-list li {
  font-size: 0.82rem; font-weight: 400;
  color: var(--muted); padding-left: 20px; position: relative;
}
.check-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-weight: 300;
}

/* ==============================================
   PRODUCTS
   ============================================== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.prod-card {
  background: #141412;
  overflow: hidden; position: relative;
  transition: background 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,0.07);
}
/* Gold line reveal top */
.prod-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease); z-index: 2;
}
.prod-card:hover { background: #18170F; }
.prod-card:hover::before { transform: scaleX(1); }

.prod-thumb {
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* Dark scrim — makes label readable on any background color */
.prod-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 0;
}
.prod-thumb-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.38em; color: rgba(255,255,255,0.80);
  text-transform: uppercase; position: relative; z-index: 1;
  transition: 0.4s var(--ease);
}
.prod-card:hover .prod-thumb-label { color: rgba(255,255,255,0.45); letter-spacing: 0.4em; }

.prod-body { padding: 24px 28px 30px; }
.prod-body h3 {
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em;
}
.prod-body p {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 18px;
}
.prod-body a {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s var(--ease), color 0.25s;
}
.prod-body a:hover { gap: 14px; color: var(--gold-lt); }

/* CTA card */
.prod-cta {
  background: transparent !important;
  border: 1px solid rgba(201,165,90,0.18) !important;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.prod-cta::before { display: none !important; }
.prod-cta:hover { border-color: rgba(201,165,90,0.5) !important; }
.prod-cta-inner { padding: 44px 32px; text-align: center; }
.prod-cta-inner h3 {
  font-size: 1.5rem; font-weight: 300;
  color: var(--white); margin: 12px 0; letter-spacing: -0.02em;
}
.prod-cta-inner p {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.4); margin-bottom: 28px; line-height: 1.7;
}

/* ==============================================
   WHY US  — numbered cards
   ============================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-card {
  padding: 48px 36px 44px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  position: relative; overflow: hidden;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
  background: var(--cream);
}
.why-card:hover { background: var(--white); box-shadow: 0 12px 48px rgba(0,0,0,0.07); z-index: 1; }

/* Large ghost number */
.why-num {
  position: absolute;
  top: -10px; right: 20px;
  font-size: 6rem; font-weight: 800;
  color: rgba(201,165,90,0.06);
  line-height: 1; pointer-events: none;
  letter-spacing: -0.05em;
  transition: color 0.4s;
}
.why-card:hover .why-num { color: rgba(201,165,90,0.1); }

.why-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-bg);
  color: var(--gold); margin-bottom: 22px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(201,165,90,0.14); }
.why-icon svg { width: 24px; height: 24px; }

.why-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.why-card p  { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ==============================================
   EXPORT
   ============================================== */
.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.exp-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 36px 0;
}
.exp-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 400;
  color: rgba(255,255,255,0.68);
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.exp-feat:hover { border-color: rgba(201,165,90,0.3); background: rgba(201,165,90,0.04); }
.exp-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Country orbit labels */
.country-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.cl {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(172px);
}
.cl span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  white-space: nowrap;
  opacity: 0;
  animation: clReveal 6s ease-in-out infinite;
  animation-delay: var(--d);
}
/* Glowing dot before each label */
.cl span::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,165,90,0.9), 0 0 16px rgba(201,165,90,0.4);
  flex-shrink: 0;
}
/* Connector line between dot and globe */
.cl::after {
  content: '';
  position: absolute;
  right: 100%; top: 50%;
  width: 18px; height: 1px;
  background: linear-gradient(to left, rgba(201,165,90,0.6), transparent);
  transform: translateY(-50%);
  opacity: 0;
  animation: clReveal 6s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes clReveal {
  0%, 100% {
    opacity: 0;
    transform: rotate(calc(-1 * var(--a))) translateX(-8px) scale(0.75);
  }
  18%, 82% {
    opacity: 1;
    transform: rotate(calc(-1 * var(--a))) translateX(0px) scale(1);
  }
}

/* Globe */
.export-visual { display: flex; align-items: center; justify-content: center; }
.globe {
  position: relative; width: min(360px, 100%);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.globe-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,165,90,0.2);
  animation: spin linear infinite;
}
.r1 { width: 100%; height: 100%; animation-duration: 24s; }
.r2 { width: 70%;  height: 70%;  animation-duration: 17s; animation-direction: reverse; border-color: rgba(201,165,90,0.13); }
.r3 { width: 44%;  height: 44%;  animation-duration: 11s; border-color: rgba(201,165,90,0.08); }
@keyframes spin { to { transform: rotate(360deg); } }

.globe-core {
  position: relative; z-index: 1;
  width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,90,0.16), rgba(201,165,90,0.03));
  border: 1px solid rgba(201,165,90,0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 48px rgba(201,165,90,0.1), inset 0 0 32px rgba(201,165,90,0.06);
}
.globe-core span { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.24em; color: var(--gold); }
.gdot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(201,165,90,0.4);
  animation: pulse 2.6s ease infinite;
}
.d1 { top: 10%; left: 18%; animation-delay: 0s; }
.d2 { top: 26%; right: 12%; animation-delay: 0.6s; }
.d3 { bottom: 17%; left: 26%; animation-delay: 1.1s; }
.d4 { bottom: 30%; right: 20%; animation-delay: 1.7s; }
.d5 { top: 50%; left: 5%;  animation-delay: 2.2s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.9); opacity: 0.3; }
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.rev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.rev-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-size: 6rem; font-weight: 700;
  color: var(--gold); opacity: 0.1; line-height: 1;
}
/* Gold accent top line */
.rev-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
}
.rev-card:hover { box-shadow: 0 16px 52px rgba(0,0,0,0.09); transform: translateY(-4px); }
.rev-card:hover::after { transform: scaleX(1); }

.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 18px; }
.rev-card p {
  font-size: 0.93rem; font-weight: 300; font-style: italic;
  color: #444; line-height: 1.75; margin-bottom: 24px;
}
.rev-card span {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

/* ==============================================
   CONTACT
   ============================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.channels { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.channel {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: var(--white); border: 1px solid var(--border);
  transition: 0.3s var(--ease); position: relative; overflow: hidden;
}
.channel::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0);
  transition: transform 0.35s var(--ease);
}
.channel:hover { border-color: rgba(201,165,90,0.4); transform: translateX(5px); }
.channel:hover::before { transform: scaleY(1); }
.channel-wa:hover { background: #f6fff9; border-color: rgba(37,211,102,0.4); }
.channel-wa::before { background: #25D366; }

.ch-ico { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.ch-ico svg { width: 20px; height: 20px; }
.wa-ico { color: #25D366; }
.channel div:last-child { display: flex; flex-direction: column; gap: 3px; }
.channel strong { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.channel span   { font-size: 0.88rem; font-weight: 500; color: var(--text); }

.contact-right {
  background: var(--white); border: 1px solid var(--border);
  padding: 52px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.06);
}
.contact-right::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { margin-bottom: 20px; }
.fg label {
  display: block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); background: var(--cream);
  font-family: var(--font); font-size: 0.88rem; font-weight: 300;
  color: var(--text); outline: none;
  transition: 0.3s var(--ease); resize: vertical; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,165,90,0.07);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--black); color: var(--white);
  padding: 100px 0 0;
  border-top: 1px solid rgba(201,165,90,0.12);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px; padding-bottom: 72px;
}
.footer-brand .logo { margin-bottom: 22px; display: inline-flex; }
.ft-tagline {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.85; margin-bottom: 28px;
}
.ft-socials { display: flex; gap: 10px; }
.ft-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); transition: 0.3s var(--ease);
}
.ft-socials a svg { width: 15px; height: 15px; }
.ft-socials a:hover { border-color: var(--gold); color: var(--gold); }

.ft-col h4 {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.ft-col ul li { margin-bottom: 10px; }
.ft-col a, .ft-col p {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.38); display: block; margin-bottom: 10px;
  transition: 0.25s;
}
.ft-col a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.28); }

/* ==============================================
   FLOATING WHATSAPP
   ============================================== */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 3.5s ease infinite;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0.06); }
}

/* ==============================================
   ANIMATIONS
   ============================================== */
.anim {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s var(--slow), transform 0.85s var(--slow);
}
.anim.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==============================================
   RESPONSIVE — 1024px
   ============================================== */
@media (max-width: 1024px) {
  .prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid    { grid-template-columns: 1fr 1fr; }
}

/* ==============================================
   RESPONSIVE — 768px
   ============================================== */
@media (max-width: 768px) {
  :root { --pad: 20px; }
  .section { padding: 80px 0; }

  .nav {
    position: fixed; top: var(--hh); left: 0; right: 0;
    background: rgba(8,8,7,0.97);
    padding: 24px var(--pad) 36px;
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: 0.4s var(--ease);
    border-top: 1px solid rgba(201,165,90,0.12);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list  { flex-direction: column; gap: 0; }
  .nav-link  { display: block; padding: 15px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link::after { display: none; }
  .wa-header { display: none; }
  .ty-header { display: none; }
  .burger    { display: flex; }

  .hero-deco { display: none; }
  .hero-headline { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .hstat { padding-right: 24px; margin-right: 24px; }

  .about-grid  { grid-template-columns: 1fr; gap: 72px; }
  .about-copy  { padding-left: 0; }
  .about-badge { right: 0; bottom: -24px; }
  .check-list  { grid-template-columns: 1fr; }

  .prod-grid   { grid-template-columns: 1fr; gap: 1px; }
  .why-grid    { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: 1fr; gap: 64px; }
  .globe       { max-width: 250px; }
  .cl          { transform: translate(-50%, -50%) rotate(var(--a)) translateX(112px); }
  .rev-grid    { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-right { padding: 32px 22px; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .wa-float    { bottom: 24px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-btns   { flex-direction: column; align-items: flex-start; }
  .hero-stats  { flex-wrap: wrap; gap: 20px 0; }
  .hstat       { border-right: none !important; padding-right: 0; margin-right: 0; width: 50%; }
  .exp-btns    { flex-direction: column; }
  .exp-features { grid-template-columns: 1fr; }
  .sec-head    { margin-bottom: 52px; }
  .rev-grid    { gap: 12px; }
}
