/* =========================================================
   MY-GOLD.SK — custom homepage styles
   Paleta, fonty (Montserrat/Inter) a tvaroslovie zladené
   s biz.zlato (spoločná rodina IBIS InGold). biz.zlato samotné
   nie je touto zmenou nijako dotknuté.
   ========================================================= */

/* Paleta a tvaroslovie prevzaté z biz.zlato (zdieľaná rodina IBIS InGold),
   aby my-gold.sk pôsobil ako súčasť tej istej vizuálnej rodiny. */
:root {
  --navy-900: #0e2f50;
  --navy-800: #143b63;
  --navy-700: #1c4a78;
  --gold: #c9a227;
  --gold-light: #e8c253;
  --gold-dark: #a3803c;
  --cream: #f8f2df;
  --soft: #f4f7fb;
  --white: #ffffff;
  --ink: #142035;
  --muted: #5d6878;
  --border: #dbe1e8;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(10, 30, 53, .13);

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

strong { color: var(--navy-800); font-weight: 700; }
.mg-close strong, .mg-strip strong, .mg-flow__step--final strong { color: var(--gold-light); }

.mg-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-800);
  margin: 0 0 .5em;
}

/* ---------- buttons (gradient-gold pill, ako biz.zlato) ---------- */
.mg-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-800);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(201, 162, 39, .22);
}
.mg-btn:hover { transform: translateY(-2px); }

.mg-btn--solid {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-800);
}

.mg-btn--light {
  background: rgba(6, 15, 28, .4);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.mg-btn--light:hover { background: rgba(6, 15, 28, .6); border-color: #fff; }

.mg-btn__arrow { font-size: 16px; line-height: 1; transition: transform .3s ease; }
.mg-btn:hover .mg-btn__arrow { transform: translateX(4px); }

/* ---------- header / nav (fixed, blur, ako biz.zlato) ---------- */
.mg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(6,15,28,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease;
}
.mg-header.is-scrolled {
  background: rgba(6,15,28,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,.08);
}
.mg-header__inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mg-logo { display: flex; align-items: center; }
.mg-logo img { height: 34px; width: auto; display: block; }

.mg-nav { display: flex; align-items: center; gap: 30px; }
.mg-nav a {
  color: #dce5ef;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .25s ease;
}
.mg-nav a:hover, .mg-nav a.is-active { color: var(--gold-light); }
.mg-nav a.mg-nav__cta {
  padding: 10px 18px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: #fff;
}
.mg-nav a.mg-nav__cta:hover { color: var(--gold-light); }

.mg-nav__flag-link { display: inline-flex; align-items: center; opacity: .85; transition: opacity .25s ease; }
.mg-nav__flag-link:hover { opacity: 1; }
.mg-nav__flag { width: 26px; height: 18px; border-radius: 3px; display: block; object-fit: cover; }

.mg-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 9px 18px;
}

/* ---------- hero ---------- */
.mg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #0c1526 url('../images/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.mg-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 175px 24px 100px;
}
.mg-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
  font-weight: 700;
  padding: .45em 1.3em;
  border: 1px solid rgba(201,162,39,.45);
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(201,162,39,.22), rgba(201,162,39,.08));
}
.mg-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.18;
  margin-bottom: 22px;
  text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000, 0 4px 16px rgba(0,0,0,.55);
}
.mg-hero h2 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  opacity: .95;
  margin-bottom: 22px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.mg-hero p { font-size: 20px; color: #dfe6ee; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.mg-hero strong { color: var(--gold-light); font-weight: 700; }
.mg-hero .mg-hero__cta-line {
  font-size: 19px;
  color: #fff;
  margin: 28px auto 32px;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  text-align: left;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.mg-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  color: #9bacc0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mg-scroll-cue::after {
  content: '';
  width: 1px; height: 38px; margin-top: 10px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ---------- generic section ---------- */
.mg-section { padding: 110px 0; }
#cesty { background: #fff url('../images/cover1.jpg') center/cover no-repeat; }
#otazky { background: #fff url('../images/cover1.jpg') center/cover no-repeat; }
.mg-section--tight { padding: 80px 0; }
.mg-section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.mg-section-header h2 { font-size: 34px; line-height: 1.3; }
.mg-section-header p { color: var(--muted); font-size: 17px; }
.mg-eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b48b2f;
  font-weight: 800;
  margin-bottom: 16px;
}

/* ---------- cards (three paths) ---------- */
.mg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.mg-card {
  background: #fff;
  border: 3px solid var(--navy-800);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.mg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mg-card__media { position: relative; height: 230px; overflow: hidden; }
.mg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mg-card:hover .mg-card__media img { transform: scale(1.06); }
.mg-card__num {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  background: rgba(15,24,48,.72);
  padding: 6px 14px;
  letter-spacing: 1px;
}
.mg-card__body { padding: 32px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.mg-card__tag {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 10px;
}
.mg-card__body h3 { font-size: 21px; line-height: 1.35; margin-bottom: 14px; }
.mg-card__body p { color: var(--muted); font-size: 15px; flex: 1; margin-bottom: 22px; }
.mg-card__link {
  font-size: 13.2px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 8px;
  border-top: 1px solid var(--border); padding-top: 18px;
  transition: color .25s ease;
}
.mg-card__link .mg-btn__arrow { color: var(--gold-dark); transition: color .25s ease; }
.mg-card__link:hover, .mg-card__link:hover .mg-btn__arrow { color: #000; }

/* ---------- three-ways recap strip ---------- */
.mg-strip {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700)), url('../images/cover4.jpg');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.mg-strip .mg-section-header h2 { color: #fff; }
.mg-strip .mg-section-header p { color: rgba(255,255,255,.68); }
.mg-strip-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.mg-strip-col {
  padding: 32px 28px;
  border: 3px solid var(--gold);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}
.mg-strip-col span.mg-eyebrow { color: var(--gold); }
.mg-strip-col h4 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.mg-strip-col p { color: rgba(255,255,255,.65); font-size: 14.5px; margin-bottom: 20px; }
.mg-strip-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  color: var(--gold);
  transition: background .25s ease, color .25s ease;
}
.mg-strip-col a:hover { background: var(--gold); color: var(--navy-900); }

/* ---------- question section ---------- */
.mg-question {
  background: url('../images/igp.jpg') center / cover no-repeat;
  text-align: center;
}
.mg-question .mg-container { max-width: 820px; }
.mg-question h2 { color: var(--navy-800); text-shadow: 0 1px 2px rgba(255,255,255,.4); }
.mg-question .mg-eyebrow { color: var(--navy-800); }
.mg-question p { font-size: 17px; color: var(--ink); opacity: .88; }
.mg-question .mg-strong-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy-800);
  border-left: 3px solid var(--navy-800);
  padding-left: 20px;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  margin: 26px auto 34px;
}
.mg-question-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.mg-question-links a {
  font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  color: var(--navy-800); border-bottom: 2px solid var(--navy-800); padding-bottom: 4px;
}
.mg-question-links a:hover { color: #fff; }

/* ---------- trust / IBIS InGold ---------- */
.mg-trust { background: var(--soft) url('../images/cover2.jpg') center/cover no-repeat; }
.mg-trust-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.mg-trust-logo { max-width: 260px; margin-bottom: 26px; }
.mg-trust h2 { font-size: 30px; margin-bottom: 20px; }
.mg-trust p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.mg-products {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 22px 0 26px;
}
.mg-products span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--navy-800);
  font-weight: 600;
}
.mg-trust .mg-note {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-700);
  font-size: 15.5px;
}
.mg-trust-media { position: relative; }
.mg-trust-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* proof strip — čísla + partnerské logá (PAMP, The Royal Mint), ako na zlato.ch/#pevne-zaklady */
.mg-proof {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.mg-proof__item {
  background: rgba(255,255,255,.5);
  border: 5px solid rgba(201,162,39,.45);
  border-radius: 14px;
  padding: 22px 14px;
  min-height: 128px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mg-proof__item img { max-width: 100%; max-height: 56px; margin: 0 auto; }
.mg-proof__stat { display: flex; flex-direction: column; }
.mg-proof__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--gold-dark);
  line-height: 1.15;
}
.mg-proof__label { font-size: .95rem; font-weight: 700; color: #111; margin-top: 6px; }

/* lead quote — výrazný zvýraznený citát/myšlienka (ako pp-lead-quote na zlato.ch) */
.mg-lead-quote {
  margin: 26px auto 0;
  max-width: 640px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #111;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  text-align: left;
}
.mg-close .mg-lead-quote, .mg-strip .mg-lead-quote { color: #fff; }
.mg-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---------- closing CTA ---------- */
.mg-close {
  position: relative;
  color: #fff;
  background: url('../images/kontakt.jpg') center / cover no-repeat;
  text-align: center;
}
.mg-close::before { content: ''; position: absolute; inset: 0; background: rgba(12,20,40,.72); }
.mg-close .mg-container { position: relative; z-index: 2; max-width: 760px; }
.mg-close h2 { color: #fff; font-size: 32px; margin-bottom: 6px; }
.mg-close h3 { color: var(--gold); font-family: var(--font-body); font-weight: 500; font-size: 19px; margin-bottom: 26px; }
.mg-close p { color: rgba(255,255,255,.78); font-size: 16px; }
.mg-close .mg-strong-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
  max-width: 560px;
  margin: 26px auto 32px;
  color: #fff;
}
.mg-close-ctas { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* utilita — vynúti jeden riadok (na mobile sa vráti k bežnému zalamovaniu) */
.mg-nowrap-line { white-space: nowrap; }

/* ---------- zlatá deliaca linka medzi sekciami (ako .chapter-divider na zlato.ch) ---------- */
.mg-chapter-divider {
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold-light) 50%, var(--gold) 85%, transparent);
}

/* ---------- footer (štruktúra podľa biz.zlato) ---------- */
.mg-footer {
  background: #04101f;
  color: #b5c2d0;
  padding: 44px 0 32px;
}
.mg-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.mg-footer-disclaimer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; max-width: 780px; margin: 0 auto;
  font-size: 13.5px; color: #8192a4; line-height: 1.6;
}
.mg-footer-disclaimer img { height: 22px; width: auto; vertical-align: middle; }
.mg-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; padding: 0; margin: 0; list-style: none; }
.mg-footer-links a { color: #b5c2d0; font-size: 13.5px; }
.mg-footer-links a:hover { color: var(--gold-light); }
.mg-footer-copy { margin: 0; font-size: 12.5px; color: #8192a4; }
.mg-footer-copy strong { color: var(--gold-light); }
.mg-footer-note {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  max-width: 700px;
}

/* =========================================================
   PARTNER PAGE — extra components
   ========================================================= */

.mg-hero--partner {
  background-color: #0a0e17;
  background-image: url('../images/hero_partner.jpg');
  min-height: 100vh;
}
.mg-hero--partner .mg-hero__inner { padding-top: 150px; padding-bottom: 70px; }

/* jednoriadková lišta s partnerskými logami, hneď pod hero */
.mg-logo-strip { padding: 44px 0; background: var(--navy-800); }
.mg-logo-strip .mg-container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.mg-logo-strip a {
  display: flex; align-items: center; justify-content: center;
  opacity: .85; transition: opacity .25s ease, transform .25s ease;
}
.mg-logo-strip a:hover { opacity: 1; transform: translateY(-2px); }
.mg-logo-strip img { height: 40px; width: auto; }
.mg-logo-strip__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .5px;
  color: #fff;
}
@media (max-width: 600px) {
  .mg-logo-strip .mg-container { gap: 24px; }
  .mg-logo-strip img { height: 30px; }
  .mg-logo-strip__text { font-size: 17px; }
}

/* plain centered lead sections (no photo bg) */
.mg-lead { background: var(--cream); text-align: center; }
.mg-lead .mg-container { max-width: 820px; }
.mg-lead p { font-size: 17px; color: var(--ink); opacity: .85; }
.mg-lead .mg-strong-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy-800);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  margin: 26px auto 4px;
}
.mg-lead--white { background: #fff; }

/* trio (zamestnanci / zákazníci / spoločnosť) */
.mg-trio__media { margin-bottom: 60px; overflow: hidden; }
.mg-trio__media img { width: 100%; height: 340px; object-fit: cover; }
.mg-trio-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.mg-trio-col {
  border: 3px solid #9aa4b2;
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--soft);
}
.mg-trio-col h3 { font-size: 20px; margin-bottom: 14px; }
.mg-trio-col p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.mg-trio-col .mg-strong-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 19.8px;
  color: var(--navy-800);
  margin: 12px 0;
}

/* flow diagram */
.mg-flow { max-width: 1080px; margin: 0 auto; text-align: center; display: flex; align-items: stretch; justify-content: center; gap: 12px; }
.mg-flow__step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--soft);
  border: 3px solid var(--navy-800);
  border-radius: 16px;
  padding: 22px 20px;
}
.mg-flow__step span.mg-eyebrow { margin-bottom: 6px; }
.mg-flow__step p { color: var(--muted); font-size: 14.5px; margin: 0; }
.mg-flow__arrow { flex: none; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-dark); }
.mg-flow__step--final { background: var(--navy-800); border: 2px solid var(--gold); }
.mg-flow__step--final span.mg-eyebrow { color: var(--gold); }
.mg-flow__step--final p { color: rgba(255,255,255,.75); }

/* process timeline (5 steps) */
.mg-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}
.mg-timeline__step {
  text-align: left;
  border: 2px solid #fff;
  border-radius: 14px;
  padding: 24px 20px;
}
.mg-timeline__num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.mg-timeline__step h4 { font-size: 16.5px; margin-bottom: 8px; }
.mg-timeline__step p { color: var(--muted); font-size: 14px; }

/* scale stats */
.mg-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.mg-scale__item {
  padding: 28px 18px;
  border: 3px solid #9aa4b2;
  border-radius: 14px;
  background: var(--soft);
}
.mg-scale__num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}
.mg-scale__item p { color: var(--muted); font-size: 14.5px; }

/* product grid */
.mg-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mg-product-card {
  background: #fff;
  border: 3px solid var(--navy-800);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mg-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mg-product-card img { max-height: 42px; width: auto; margin: 0 auto 18px; object-fit: contain; }
.mg-product-card img.mg-logo-chip {
  width: 100%;
  height: 70px;
  max-height: none;
  padding: 14px 20px;
  box-sizing: border-box;
  background: #d5d9de;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}
.mg-product-card h4 { font-size: 17px; margin-bottom: 10px; }
.mg-product-card p { color: var(--muted); font-size: 14px; margin: 0; }
.mg-product-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  color: var(--gold-dark);
  transition: color .25s ease;
}
.mg-product-card__link:hover { color: var(--navy-800); }
.mg-product-card--highlight {
  grid-column: span 3;
  background: var(--navy-800);
  border: 5px solid var(--gold);
  color: #fff;
  padding: 44px 40px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
}
.mg-product-card--highlight img { max-height: 60px; margin: 0; }
.mg-product-card--highlight h4 { color: var(--gold); font-size: 20px; }
.mg-product-card--highlight p { color: rgba(255,255,255,.8); font-size: 15px; }
.mg-product-card--highlight .mg-note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 18.7px;
  margin-top: 12px;
}

.mg-close--partner { background-image: url('../images/cover4.jpg'); }

/* video lightbox — prehratie videa priamo na stránke po kliknutí na tlačidlo */
.mg-video-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 8px;
  background: none;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.mg-video-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }

.mg-video-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4,10,20,.92);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.mg-video-lightbox.show { display: flex; }
.mg-video-lightbox-inner { position: relative; max-width: 960px; width: 100%; }
.mg-video-lightbox video {
  display: block; width: 100%; max-height: 80vh;
  border-radius: 12px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.mg-video-lightbox-close {
  position: absolute; top: -46px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--navy-900); border: none;
  font-size: 16px; font-weight: 800; cursor: pointer;
}
.mg-video-lightbox-close:hover { background: var(--gold-light); }

/* contact form (partner/index.html only, for now) — vzor prevzatý z biz.zlato,
   biele plávajúce karty s navy rámom nad tmavým pozadím záverečnej sekcie */
.mg-contact-card {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: left;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--navy-800);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px;
}
.mg-contact-card h3 { color: var(--navy-800); margin-bottom: 24px; font-size: 22px; }
.mg-contact-card h3 span { color: var(--gold); }
.mg-hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mg-form-group { margin-bottom: 16px; }
.mg-form-group label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.mg-form-group input, .mg-form-group select, .mg-form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font: inherit; color: var(--ink); background: var(--soft);
  transition: border-color .2s ease, background .2s ease;
}
.mg-form-group input:focus, .mg-form-group select:focus, .mg-form-group textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.mg-form-group input.error, .mg-form-group textarea.error { border-color: #c0392b; }
.mg-form-error { display: none; font-size: 12.5px; color: #c0392b; margin-top: 5px; }
.mg-form-error.show { display: block; }
.mg-form-group textarea { min-height: 110px; resize: vertical; }
.mg-contact-card .mg-form-gdpr { font-size: 11px; color: #000; line-height: 1.5; margin: 4px 0 20px; }
.mg-contact-card .mg-form-gdpr a { color: #000; font-weight: 700; text-decoration: underline; }
.mg-contact-card .mg-form-gdpr a:hover { color: var(--gold-dark); }
.mg-form-submit { width: 100%; }
.mg-contact-card .mg-form-success {
  display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 16px;
  background: #e6f6ec; border: 1px solid #a9dfba; border-radius: 10px;
  font-size: 14px; color: #1c7a44; font-weight: 700;
}
.mg-contact-card .mg-form-success.show { display: flex; }
.mg-form-success-icon {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 26px; height: 26px; border-radius: 50%; background: #1c7a44; color: #fff;
  font-size: 14px; font-weight: 800;
}
.mg-contact-card .mg-form-error-general { display: none; margin-top: 16px; font-size: 14px; color: #c0392b; font-weight: 700; }
.mg-contact-card .mg-form-error-general.show { display: block; }
.mg-form-submit[disabled] { opacity: .6; pointer-events: none; }
.mg-contact-card .mg-form-note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }
.mg-contact-card strong { color: var(--navy-800); }

@media (max-width: 600px) {
  .mg-form-row { grid-template-columns: 1fr; }
  .mg-contact-card { padding: 26px; }
}

@media (max-width: 991px) {
  .mg-trio-cols { grid-template-columns: 1fr; gap: 34px; }
  .mg-timeline { grid-template-columns: repeat(2, 1fr); }
  .mg-scale { grid-template-columns: 1fr; }
  .mg-products-grid { grid-template-columns: 1fr; }
  .mg-product-card--highlight { grid-column: span 1; grid-template-columns: 1fr; text-align: center; }
  .mg-product-card--highlight img { margin: 0 auto; }
}
@media (max-width: 767px) {
  .mg-timeline { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .mg-cards { grid-template-columns: 1fr; }
  .mg-strip-cols { grid-template-columns: 1fr; gap: 30px; }
  .mg-trust-inner { grid-template-columns: 1fr; gap: 40px; }
  .mg-trust-media { order: -1; }
  .mg-hero h1 { font-size: 36px; }
  .mg-proof { grid-template-columns: repeat(3, 1fr); }
  .mg-flow { flex-direction: column; max-width: 480px; }
  .mg-flow__step { width: 90%; margin: 0 auto; }
  .mg-flow__arrow { transform: rotate(90deg); }
}

@media (max-width: 767px) {
  .mg-nav {
    position: absolute;
    display: none;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: min(320px, 90%);
    max-width: none;
    padding: 20px;
    background: rgba(4,10,20,.9);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 2px solid var(--gold);
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    gap: 14px;
  }
  .mg-nav.is-open { display: flex; }
  .mg-nav-toggle { display: flex; }
  .mg-nav a { font-size: 17px; }
  .mg-hero__inner { padding-top: 130px; }
  .mg-hero h1 { font-size: 30px; }
  .mg-section { padding: 70px 0; }
  .mg-section-header h2 { font-size: 26px; }
  .mg-close-ctas { flex-direction: column; align-items: center; }
  .mg-question-links { gap: 20px; }
  .mg-proof { grid-template-columns: repeat(2, 1fr); }
  .mg-question .mg-strong-line { white-space: normal; width: auto; }
  .mg-lead .mg-strong-line { white-space: normal; width: auto; }
  .mg-nowrap-line { white-space: normal; }
  .mg-hero .mg-hero__cta-line { white-space: normal; width: auto; }
  .mg-hero:not(.mg-hero--partner) { background-image: url('../images/hero_mygold_mobile.jpg'); }
  .mg-hero--partner { background-image: url('../images/hero_partner_mobile.jpg'); }
  .mg-hero:not(.mg-hero--partner)::before,
  .mg-hero--partner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,15,28,.7) 0%, rgba(6,15,28,.5) 40%, rgba(6,15,28,.8) 100%);
  }
}
