/* ═══════════════════════════════════════════════════════════════
   MEEI HUB - TRADING COMPANY WEBSITE
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:       #0C1A33;
  --navy-2:     #162848;
  --navy-3:     #1E3560;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --white:      #FFFFFF;
  --bg:         #F6F5F0;
  --bg-2:       #EDECE7;
  --text:       #0C1A33;
  --text-2:     #3D4F6A;
  --muted:      #7A8DA8;
  --border:     rgba(12,26,51,.1);
  --shadow:     0 4px 24px rgba(12,26,51,.08);
  --shadow-lg:  0 16px 56px rgba(12,26,51,.14);
  --radius:     5px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

/* ── UTILITIES ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.65); }
.section-header.light .section-tag { color: var(--gold); }

.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: #fff; letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 0; margin-left: auto;
}
.nav-links li a {
  display: block; padding: .5rem 1.1rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  color: var(--gold); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .55rem 1.25rem; border: 1.5px solid var(--gold);
  border-radius: var(--radius); transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav-cta i { font-size: .75rem; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 800; letter-spacing: -.01em;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-email {
  font-size: 1rem; color: var(--gold); margin-top: 1rem; font-weight: 600;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,26,51,.92) 0%, rgba(12,26,51,.78) 60%, rgba(12,26,51,.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  padding-top: 100px; padding-bottom: 7rem;
}
.hero-pre {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-pre::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; color: #fff; line-height: 1.05;
  letter-spacing: -.03em; max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.65); font-size: 1.1rem;
  max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; z-index: 10; pointer-events: none;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(rgba(255,255,255,.4), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: .5rem;
}
.stat p { color: rgba(255,255,255,.5); font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

/* ── ABOUT ── */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text .section-tag { margin-bottom: 1rem; }
.about-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--navy); margin-bottom: 1.5rem; line-height: 1.2;
}
.about-text p { color: var(--text-2); line-height: 1.85; margin-bottom: 1rem; font-size: 1.02rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }
.about-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--gold); color: var(--navy);
  padding: .75rem 1.25rem; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .95rem;
}

/* ── PRODUCTS SECTION ── */
.products-export { background: var(--white); }
.products-import { background: var(--navy); }
.products-import .section-header h2 { color: #fff; }

/* ── PRODUCT GRID ── */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}

/* ── PRODUCT CARD ── */
.prod-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 3/4;
  cursor: pointer; box-shadow: var(--shadow);
  background: var(--navy-2);
}
.prod-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.prod-card:hover::before { transform: scale(1.08); }

/* permanent bottom label */
.prod-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(transparent, rgba(12,26,51,.85));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .88rem;
  letter-spacing: .03em; z-index: 2;
  transition: opacity .3s .05s;
}
.prod-card:hover .prod-label { opacity: 0; transition: opacity .2s; }

/* hover overlay */
.prod-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(12,26,51,.97) 0%, rgba(12,26,51,.88) 50%, rgba(12,26,51,.45) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem 1.4rem 1.5rem;
  transform: translateY(102%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-overlay { transform: translateY(0); }
.prod-overlay h3 {
  color: #fff; font-size: 1.05rem; font-weight: 800;
  margin-bottom: .5rem; line-height: 1.25;
}
.prod-overlay p {
  color: rgba(255,255,255,.68); font-size: .83rem;
  line-height: 1.65; margin-bottom: 1.1rem;
}
.prod-overlay a {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .75rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .6rem 1.15rem; border-radius: 3px;
  transition: background .2s; width: fit-content;
}
.prod-overlay a:hover { background: var(--gold-light); }

/* Gold tag on card (category) */
.prod-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 4;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 2px;
  transition: opacity .3s;
}
.prod-card:hover .prod-tag { opacity: 0; }

/* ── WHY SECTION ── */
.why { background: var(--bg); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.pillar {
  text-align: center; padding: 2.5rem 1.5rem;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(201,168,76,.1); border: 2px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem; color: var(--gold);
}
.pillar h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin-bottom: .6rem;
}
.pillar p { color: var(--text-2); font-size: .9rem; line-height: 1.7; }

/* ── CONTACT ── */
.contact { background: var(--navy); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.contact-left .section-tag { margin-bottom: 1rem; }
.contact-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: #fff; margin-bottom: 1rem; line-height: 1.2;
}
.contact-left > p { color: rgba(255,255,255,.6); font-size: 1.02rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-email-link {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold); font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  border-bottom: 2px solid rgba(201,168,76,.3);
  padding-bottom: .25rem; margin-bottom: 2rem;
  transition: border-color .2s;
}
.contact-email-link:hover { border-color: var(--gold); }
.contact-details { display: flex; flex-direction: column; gap: .85rem; }
.contact-details p {
  color: rgba(255,255,255,.55); font-size: .92rem;
  display: flex; align-items: center; gap: .75rem;
}
.contact-details i { color: var(--gold); width: 1rem; }
.contact-details a { color: rgba(255,255,255,.55); transition: color .2s; }
.contact-details a:hover { color: var(--gold); }

/* Contact Card */
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 3rem;
}
.contact-card h3 {
  color: #fff; font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem;
}
.contact-card > p { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 2rem; }
.contact-card .field { margin-bottom: 1.25rem; }
.contact-card label {
  display: block; color: rgba(255,255,255,.5);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .4rem;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px; padding: .8rem 1rem;
  color: #fff; font-family: 'Inter', sans-serif; font-size: .92rem;
  outline: none; transition: border-color .2s;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus { border-color: var(--gold); }
.contact-card select option { background: var(--navy); }
.contact-card textarea { resize: vertical; min-height: 110px; }
.contact-card .submit-btn {
  width: 100%; padding: .95rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.contact-card .submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #060E1C; border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 900; color: #fff;
}
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.4); font-size: .82rem; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,.25); font-size: .78rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ── FORM ENHANCEMENTS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #e53e3e; }
.error-msg { color: #e53e3e; font-size: .75rem; margin-top: .3rem; display: none; }
.form-group.error .error-msg { display: block; }

.toggle-pills { display: flex; gap: .75rem; margin-top: .25rem; }
.toggle-pill {
  flex: 1; padding: .7rem; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55); font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .82rem; cursor: pointer;
  transition: var(--transition); text-align: center;
}
.toggle-pill:hover { border-color: rgba(201,168,76,.5); color: rgba(255,255,255,.85); }
.toggle-pill.active { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold); }

.form-success {
  display: none; text-align: center; padding: 3rem 1.5rem;
}
.success-check { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: #fff; font-size: 1.4rem; margin-bottom: .75rem; }
.form-success p { color: rgba(255,255,255,.6); line-height: 1.7; }

.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .5rem;
}
.btn-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

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

/* ── PLACEHOLDER CONTRAST (accessibility) ── */
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: rgba(255,255,255,.48); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex; align-items: center; gap: .3rem;
  flex-shrink: 0;
}
.lang-opt {
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: .25rem .1rem; line-height: 1;
  transition: color var(--transition);
}
.lang-opt:hover { color: rgba(255,255,255,.75); }
.lang-opt.active { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,.18); font-size: .6rem; user-select: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-scroll { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* Touch devices: no hover → reveal product overlay permanently so the
   description + "Learn More" link are reachable. */
@media (hover: none) {
  .prod-overlay { transform: none; }
  .prod-label   { display: none; }
  .prod-card:hover .prod-tag { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   PRODUCT MODAL - BLOG STYLE
   ═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.82);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: #0C1A33;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 12px;
  max-width: 680px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex; flex-direction: column;
  transform: translateY(28px) scale(.96);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-hero-img {
  width: 100%; height: 230px;
  background-size: cover; background-position: center;
  border-radius: 11px 11px 0 0;
  flex-shrink: 0;
  position: relative;
}
.modal-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(12,26,51,.9) 100%);
  border-radius: 11px 11px 0 0;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8); cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1;
  transition: background .2s, color .2s;
  z-index: 10;
}
.modal-close:hover { background: rgba(201,168,76,.4); color: var(--gold); }
.modal-content { padding: 1.75rem 2rem 0; }
.modal-tag {
  display: inline-block;
  background: rgba(201,168,76,.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,.28);
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; padding: .28rem .72rem;
  border-radius: 3px; margin-bottom: .9rem;
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem; font-weight: 800;
  color: #fff; margin-bottom: 1.1rem; line-height: 1.3;
}
.modal-body {
  color: rgba(255,255,255,.62); font-size: .875rem;
  line-height: 1.85; margin-bottom: 1.25rem;
}
.modal-body p { margin-bottom: .85rem; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-specs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 0; padding-bottom: 1.5rem; }
.modal-spec {
  font-size: .71rem; font-weight: 700;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: .26rem .62rem; border-radius: 3px; letter-spacing: .04em;
}
.modal-cta-wrap {
  padding: 1.4rem 2rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.2);
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}
.modal-cta-line {
  color: rgba(255,255,255,.42); font-size: .82rem;
  line-height: 1.55; margin-bottom: .9rem; font-style: italic;
}
.modal-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: 1rem 1.5rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 5px; border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.modal-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
@media (max-width: 600px) {
  .modal-content { padding: 1.4rem 1.25rem 0; }
  .modal-cta-wrap { padding: 1.25rem 1.25rem 1.5rem; }
  .modal-title { font-size: 1.18rem; }
  .modal-hero-img { height: 170px; }
}

/* ═══════════════════════════════════════════════
   PARTNERS RIBBON
   ═══════════════════════════════════════════════ */
.partners {
  padding: 2.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: .67rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}
.ribbon-wrap { overflow: hidden; }
.ribbon-track {
  display: flex; align-items: center;
  width: max-content;
  animation: ribbon-scroll 32s linear infinite;
}
.ribbon-track:hover { animation-play-state: paused; }
@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display: flex; align-items: center;
  padding: 0 2.6rem;
  white-space: nowrap;
  opacity: .32; transition: opacity .25s;
  cursor: default;
}
.partner-logo:hover { opacity: .82; }
.p-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem; font-weight: 900;
  color: var(--text); letter-spacing: .07em;
}
.p-accent { color: var(--gold); }
.ribbon-sep {
  width: 1px; height: 20px;
  background: var(--border); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT - MOBILE PULSE
   ═══════════════════════════════════════════════ */
.wa-pulse-ring {
  position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: wa-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
}
