

@font-face { font-family: 'IRANYekanX'; font-weight: 100; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-Thin.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-Thin.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 200; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-UltraLight.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-UltraLight.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 300; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-Light.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-Light.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-Regular.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-Regular.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-Medium.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-Medium.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-DemiBold.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-DemiBold.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-Bold.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-Bold.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 800; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-ExtraBold.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-ExtraBold.woff') format('woff'); }
@font-face { font-family: 'IRANYekanX'; font-weight: 900; font-style: normal; font-display: swap;
  src: url('/fonts/iran/IRANYekanX-Black.woff2') format('woff2'), url('/fonts/iran/IRANYekanX-Black.woff') format('woff'); }

:root {
  
  --gold:         #c2a476;   
  --gold-light:   #dcc79a;   
  --gold-tint:    #e9dcc4;
  --gold-pale:    #f7f1e6;

  --brand:        #8a6a35;
  --brand-dark:   #6b5127;
  --brand-light:  var(--gold-tint);
  --brand-bg:     var(--gold-pale);
  --accent:       var(--gold);
  --accent-light: var(--gold-pale);

  --ink:          #1c1f24;   
  --text:         #1c1f24;
  --text-muted:   #6d6a63;
  --border:       #e6e0d5;
  --bg:           #ffffff;
  --bg-alt:       #faf7f1;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 16px rgba(120, 96, 52, .10);
  --shadow-lg:    0 8px 32px rgba(120, 96, 52, .16);
  --mono:         'Courier New', ui-monospace, monospace;
  --font:         'IRANYekanX', 'Dana', system-ui, sans-serif;
}

.topbar {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-viewport { display: contents; }
.topbar-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: .92;
}
.topbar-item i { font-size: 11px; }
.topbar-phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .5px;
  transition: opacity .2s;
}
.topbar-phone:hover { opacity: .8; }

.hf-field { margin-bottom: 14px; }
.hf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.hf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.hf-input::placeholder { color: #a8a297; }
.hf-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(194,164,118,.28);
}
.hf-select { cursor: pointer; }
.hf-textarea { resize: vertical; min-height: 86px; line-height: 1.9; }
.captcha-row { display: flex; gap: 8px; align-items: stretch; }
.captcha-row .hf-input { flex: 1; min-width: 0; }
.captcha-q {
  font-weight: 700;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.btn-captcha-refresh {
  flex: 0 0 auto;
  width: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--brand);
  cursor: pointer;
  font-size: 15px;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-captcha-refresh:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.hf-submit {
  width: 100%;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hf-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
.hf-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.hf-msg { margin-top: 12px; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; }
.hf-msg-ok  { background: #f0f7f0; color: #2f5d34; border: 1px solid #b6d4b8; }
.hf-msg-err { background: #fdf2f2; color: #8a2b2b; border: 1px solid #e6b9b9; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--brand); border-color: #fff; }
.btn-white:hover { background: var(--brand-light); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

.container { max-width: var(--container, 1160px); margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-light);
  color: var(--brand);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); margin-bottom: 8px; position: relative; display: inline-block; }
.section-head { text-align: center; }
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 4px;
}
.about-text .section-title::after { margin-right: 0; margin-left: auto; }
.section-sub { color: var(--text-muted); font-size: 15px; }

.brands-section { padding: 72px 0; background: var(--bg-alt); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.brand-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
}
.brand-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.brand-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
}
.brand-name { font-weight: 700; font-size: 14px; }
.brand-tag { font-size: 11px; color: var(--text-muted); }
.brands-footer { text-align: center; }

.services-section { padding: 72px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }
.sc-img { aspect-ratio: 16/9; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.service-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 16px; flex: 1; }
.sc-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sc-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.banners-section { padding: 20px 0 40px; }
.banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.banner-item { border-radius: var(--radius-lg); overflow: hidden; display: block; }
.banner-item img { width: 100%; height: auto; display: block; transition: transform .3s; }
.banner-item:hover img { transform: scale(1.02); }

.features-section { padding: 72px 0; background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
}
.feature-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }
.fc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  border-radius: 20px 20px 20px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(21,100,192,.25);
  transition: transform .25s;
}
.feature-card:hover .fc-icon { transform: rotate(-6deg) scale(1.05); }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.about-section { padding: 72px 0; background: var(--brand-bg); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: auto; display: block; }
.about-content { color: var(--text-muted); line-height: 2; font-size: 15px; }

.faq-section { padding: 72px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  text-align: right;
  gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: var(--brand-light); }
.faq-q[aria-expanded="true"] { background: var(--brand-light); color: var(--brand); }
.faq-icon { flex-shrink: 0; color: var(--brand); font-size: 14px; }
.faq-a { padding: 16px 20px; }
.faq-a p { color: var(--text-muted); line-height: 1.9; font-size: 14px; margin: 0; }

.cta-banner-section {
  background: linear-gradient(135deg, #0d4fa0, #1564c0);
  padding: 90px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-wave-top {
  position: absolute;
  top: -1px; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.cta-wave-top svg { width: 100%; height: 60px; display: block; }
.cta-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-deco-1 {
  width: 240px; height: 240px;
  bottom: -100px; right: 8%;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
}
.cta-deco-2 {
  width: 160px; height: 160px;
  top: -40px; left: 5%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 2; }
.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
}
.cta-banner-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; margin-bottom: 10px; }
.cta-banner-sub { opacity: .8; margin-bottom: 28px; }
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.seo-text-section { padding: 60px 0; background: var(--bg-alt); }
.seo-text-inner h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.seo-text-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.seo-text-cols h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--brand); }
.seo-text-cols p { color: var(--text-muted); line-height: 2; font-size: 14px; }

.hdr-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff !important;
  text-decoration: none;
  border: 2px solid var(--brand);
  transition: all .2s;
}
.hdr-phone:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform .2s;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.08); }

.footer-cta {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.footer-cta-icon {
  font-size: 38px;
  opacity: .9;
}
.footer-cta-text strong { display: block; font-size: 19px; margin-bottom: 4px; }
.footer-cta-text span { font-size: 14px; opacity: .85; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--brand);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s;
  white-space: nowrap;
}
.footer-cta-btn:hover { transform: translateY(-2px); }

.mry-footer {
  background: var(--ink);
  color: #e7e1d4;
  padding: 0;
}
.mry-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 40px;
  padding: 50px 0 36px;
}
.mry-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

/* The footer is dark and the logo is a dark on light artwork, so on its own it
   sits badly against the background. A light card behind it keeps the mark and
   the wordmark readable without needing a separate white version of the file. */
.mry-footer-logo img {
  height: 70px;
  width: auto;
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  transition: transform .18s, box-shadow .18s;
}
.mry-footer-logo:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}
.mry-logo-icon {
  width: 42px; height: 42px;
  background: var(--brand);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.mry-logo-text { font-size: 19px; font-weight: 800; color: #fff; }
.mry-footer-desc { font-size: 13.5px; line-height: 2; color: #c6bfb0; margin-bottom: 18px; }

.mry-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.mry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(21,100,192,.18);
  color: var(--gold-light);
  border: 1px solid rgba(21,100,192,.3);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.mry-socials { display: flex; gap: 10px; }
.mry-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px;
  transition: transform .2s, opacity .2s;
}
.mry-social.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#bc1888); }
.mry-social.tg { background: #229ed9; }
.mry-social.wa { background: #25d366; }
.mry-social:hover { transform: translateY(-3px); }

.mry-footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mry-footer-title i { color: var(--brand); font-size: 14px; }

.mry-footer-links { list-style: none; padding: 0; margin: 0; }
.mry-footer-links li { margin-bottom: 11px; }
.mry-footer-links a {
  color: #c6bfb0;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s, padding .2s;
}
.mry-footer-links a i { font-size: 11px; color: var(--brand); }
.mry-footer-links a:hover { color: #fff; padding-right: 4px; }

.mry-contact-list { list-style: none; padding: 0; margin: 0; }
.mry-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.mry-contact-ic {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(21,100,192,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 16px;
}
.mry-contact-list small { display: block; font-size: 11px; color: #a09889; margin-bottom: 2px; }
.mry-contact-list a, .mry-contact-list span { color: #f2ede3; text-decoration: none; font-size: 14px; font-weight: 600; }
.mry-contact-list a:hover { color: var(--brand); }

.mry-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.mry-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #b5ad9d;
}
.mry-footer-credit { color: #b5ad9d; text-decoration: none; }
.mry-footer-credit strong { color: var(--gold-light); }
.mry-footer-credit:hover strong { color: var(--brand); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .seo-text-cols { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .ps-arrow { transform: rotate(90deg); }
  .ps-item { max-width: 100%; }
}

@media (max-width: 768px) {

  .topbar { padding: 6px 0; }
  .topbar-inner {
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .topbar-phone { display: none; }

  .topbar-viewport {
    display: block;
    width: 100%;
    overflow: hidden;
    height: 20px;
  }
  
  .topbar-items {
    display: flex;
    flex-wrap: nowrap;
    width: 200%;
    gap: 0;
    transition: transform .6s ease;
    transform: translateX(calc(var(--tb-page, 0) * 50%));
  }
  .topbar-item {
    flex: 0 0 25%;
    justify-content: center;
    white-space: nowrap;
    font-size: 11.5px;
    opacity: 1;
  }
  .topbar-item i { font-size: 10px; }

  .hdr-inner {
    flex-wrap: nowrap;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
  }
  .site-logo { order: 3; flex-shrink: 0; }
  .site-logo img { height: 38px; }
  .hdr-ham { order: 1; }
  .hdr-mobile-actions {
    order: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-start;
  }
  .hdr-m-phone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--brand-light);
    color: var(--brand);
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--brand);
  }
  .hdr-m-phone svg { width: 14px; height: 14px; }
  .hdr-m-phone span { direction: ltr; }
  .hdr-m-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    cursor: pointer;
  }
  .hdr-m-icon svg { width: 16px; height: 16px; }
  .hdr-actions { display: none; }
}

@media (max-width: 600px) {
  .banners-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hs-num { font-size: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }

  .mry-footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 36px 0 24px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-text { flex-direction: column; text-align: center; gap: 10px; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .mry-footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  .whatsapp-float { bottom: 78px; left: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 380px) {
  .hdr-m-phone { padding: 6px 9px; font-size: 12px; }
  .site-logo img { height: 32px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
}

.breadcrumb .container {
  max-width: var(--container, 1160px);
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb > ol {
  max-width: var(--container, 1160px);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb ol {
  margin: 0 auto;
  justify-content: flex-start;
}
.breadcrumb .container ol { padding: 0; }
@media (max-width: 768px) {
  .breadcrumb .container,
  .breadcrumb > ol { padding: 0 16px; }
}

.page-type-page .toc-box {
  background: linear-gradient(135deg, var(--brand-bg) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-right: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 28px 0 36px;
  box-shadow: var(--shadow);
}
.page-type-page .toc-title {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-type-page .toc-title svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.page-type-page .toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.page-type-page .toc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border-bottom: none;
  background: rgba(255, 255, 255, .7);
  transition: background .15s, transform .15s;
}
.page-type-page .toc-list li:hover {
  background: #fff;
  transform: translateX(-2px);
}
.page-type-page .toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.page-type-page .toc-list li a {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
  flex: 1;
}
.page-type-page .toc-list li a:hover {
  color: var(--brand);
}

.page-type-page .page-content-sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-type-page .content-section {
  background: var(--bg-alt, #faf7f1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 1px 4px rgba(21, 100, 192, .06);
}
.page-type-page .content-section h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-right: none;
  border-bottom: 2px solid var(--brand-light, #e9dcc4);
  color: var(--text);
  line-height: 1.5;
  scroll-margin-top: 90px;
}
.page-type-page .content-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--brand);
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: -2px;
}
.page-type-page .content-section h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--text);
}
.page-type-page .content-section p {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.9;
}
.page-type-page .content-section p:last-child {
  margin-bottom: 0;
}
.page-type-page .content-section ul,
.page-type-page .content-section ol {
  margin: 0 0 14px;
  padding-right: 22px;
}
.page-type-page .content-section li {
  margin-bottom: 6px;
  line-height: 1.8;
}
.page-type-page .content-section img {
  border-radius: var(--radius);
  margin: 16px auto;
}
.page-type-page .content-section table {
  margin: 16px 0;
}

@media (max-width: 768px) {
  .page-type-page .toc-box {
    padding: 18px 16px;
    margin: 20px 0 28px;
  }
  .page-type-page .content-section {
    padding: 18px 16px;
  }
  .page-type-page .content-section h2 {
    font-size: 18px;
  }
}

.igs-hero {
  position: relative;
  background: #fff;
  color: var(--ink);
  padding: 58px 0 66px;
  overflow: hidden;
  
}

.igs-hero-hex {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  width: min(440px, 38vw);
  opacity: .95;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.igs-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.igs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  color: var(--brand);
  padding: 6px 15px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.igs-hero h1 {
  font-size: clamp(23px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--ink);
}

.igs-hero h1::after {
  content: '';
  display: block;
  width: 88px; height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}
.igs-hero p {
  font-size: clamp(14px, 1.6vw, 16.5px);
  line-height: 2.1;
  color: var(--text-muted);
  margin: 18px 0 26px;
}
.igs-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
.igs-hero-btns .btn { white-space: nowrap; }
.igs-hero-btns .btn-lg { padding-inline: 22px; }
.igs-btn-catalog { background: var(--gold-pale); }
.igs-btn-catalog:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.igs-hero .btn-primary { background: var(--ink); border-color: var(--ink); }
.igs-hero .btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.igs-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border: 1.5px solid var(--gold-tint);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}
.igs-stat { padding: 18px 14px; text-align: center; border-left: 1px solid var(--gold-tint); }
.igs-stat:last-child { border-left: 0; }
.igs-stat b {
  display: block; font-size: 25px; font-weight: 800;
  color: var(--brand); font-variant-numeric: tabular-nums;
}
.igs-stat span { font-size: 12.5px; color: var(--text-muted); }

.igs-cats { padding: 66px 0; background: #fff; }
.igs-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 18px; align-items: start; }
.igs-cat {
  display: block; text-decoration: none; color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 20px 48px;
  position: relative;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}

.igs-cat::before {
  content: '';
  position: absolute;
  top: 20px; left: 18px;
  width: 15px; height: 17px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background .22s;
}
.igs-cat:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.igs-cat:hover::before { background: var(--brand); }
.igs-cat-title { display: block; font-size: 15.5px; font-weight: 700; line-height: 1.7; margin-bottom: 4px; }
.igs-cat-count { display: block; font-size: 12.5px; color: var(--text-muted); }
.igs-cat-sub { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.igs-cat-sub span {
  font-size: 11.5px; color: var(--text-muted);
  background: #fff; border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 50px;
}

.page-type-product .section-table {
  border: 1.5px solid var(--gold-tint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  margin: 26px 0;
}
.page-type-product .section-table .section-title {
  display: block; margin: 0;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 11px 18px;
  border-bottom: 3px solid var(--gold);
}
.page-type-product .section-table .section-title::after { display: none; }
.page-type-product .section-table .table-scroll { padding: 0; }
.page-type-product .section-table table { width: 100%; border-collapse: collapse; }
.page-type-product .section-table td { padding: 11px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.page-type-product .section-table tr:last-child td { border-bottom: 0; }
.page-type-product .section-table td:first-child {
  width: 34%; color: var(--text-muted); background: var(--bg-alt); font-weight: 600;
}

.page-type-product .section-table td:last-child {
  font-variant-numeric: tabular-nums;
}
.page-type-product .section-table tr td:last-child:not(:lang(fa)) { direction: ltr; text-align: left; }
.igs-ltr { direction: ltr; text-align: left; font-family: var(--mono); font-size: 13.5px; }

.igs-brand-head {
  display: flex; align-items: center; gap: 18px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 20px; margin-bottom: 26px;
}
.igs-brand-head img { width: 84px; height: 84px; object-fit: contain; background: #fff; border-radius: var(--radius); padding: 6px; }
.igs-brand-head .igs-brand-count { font-size: 13px; color: var(--text-muted); }
.igs-products { margin: 8px 0 36px; }
.igs-products-title { margin-bottom: 20px; }

.igs-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.igs-prod {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.igs-prod:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(120, 96, 52, .13);
  transform: translateY(-3px);
}

.igs-prod-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.igs-prod-media::after {          
  content: '';
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0; transition: opacity .2s;
  z-index: 2;
}
.igs-prod:hover .igs-prod-media::after { opacity: 1; }

.igs-prod-media::before {
  content: '';
  position: absolute;
  top: 10px; inset-inline-start: 10px;
  width: 22px; height: 25px;
  background: var(--gold-tint);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
  transition: background .2s, transform .25s;
}
.igs-prod:hover .igs-prod-media::before { background: var(--gold); transform: rotate(30deg); }
.igs-prod-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
  transition: transform .3s;
}
.igs-prod:hover .igs-prod-media img { transform: scale(1.04); }
.igs-prod-noimg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff;              
  z-index: 0;
}
.igs-prod-media img { z-index: 1; }
.igs-prod-noimg svg { width: 42px; height: 42px; fill: var(--gold-tint); }

.igs-prod-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 15px 13px;
}

.igs-prod-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.75em);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--ink);
}
.igs-prod:hover .igs-prod-title { color: var(--brand); }

.igs-prod-code {
  align-self: flex-start;
  margin-top: 8px;
  padding: 2px 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .02em;
  color: var(--brand);
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  border-radius: 5px;
  direction: ltr;
}

.igs-prod-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.igs-prod-brand {
  font-size: 11.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.igs-prod-cta {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  position: relative;
  padding-inline-start: 14px;
}
.igs-prod-cta::before {           
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 50%;
  width: 6px; height: 6px;
  border-inline-start: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s;
}
.igs-prod:hover .igs-prod-cta::before { transform: translateY(-50%) rotate(45deg) translate(2px, 2px); }

.igs-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.igs-products-head .igs-products-title { margin-bottom: 0; }
.igs-car-nav { display: flex; gap: 8px; flex: 0 0 auto; }
.igs-car-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s, opacity .2s;
}
.igs-car-btn::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: translate(-40%, -50%) rotate(45deg);   
}
.igs-car-btn[data-dir="next"]::before {
  transform: translate(-60%, -50%) rotate(-135deg); 
}
.igs-car-btn:hover:not(:disabled) { border-color: var(--gold); background: var(--gold-pale); }
.igs-car-btn:disabled { opacity: .35; cursor: default; }
.igs-car-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 212px;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.igs-car-track > .igs-prod { scroll-snap-align: start; height: auto; }
.igs-car-track::-webkit-scrollbar { height: 6px; }
.igs-car-track::-webkit-scrollbar-thumb { background: var(--gold-tint); border-radius: 3px; }
@media (min-width: 1100px) { .igs-car-track { grid-auto-columns: calc((100% - 4 * 18px) / 5); } }
@media (max-width: 1099px) and (min-width: 700px) { .igs-car-track { grid-auto-columns: calc((100% - 2 * 18px) / 3); } }
@media (max-width: 699px) { .igs-car-track { grid-auto-columns: 62%; gap: 12px; } }

.igs-brand-head {
  display: flex; align-items: center; gap: 18px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 20px; margin-bottom: 26px;
}
.igs-brand-head img { width: 84px; height: 84px; object-fit: contain; background: #fff; border-radius: var(--radius); padding: 6px; }

.igs-pdp {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "media head"
    "media info";
  column-gap: 32px;
  row-gap: 0;
  align-items: start;
  margin: 4px 0 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.igs-pdp-head  { grid-area: head; min-width: 0; }
.igs-pdp-media { grid-area: media; }
.igs-pdp-info  { grid-area: info; }

.igs-pdp-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.igs-pdp-media::after {          
  content: '';
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.igs-pdp-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 22px;
  display: block;
  z-index: 1;
}
.igs-pdp-noimg {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.igs-pdp-noimg svg { width: 74px; height: 74px; fill: var(--gold-tint); }

.igs-pdp-info { min-width: 0; }
.igs-pdp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.igs-pdp-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 11px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--gold-tint);
  border-radius: 50px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.igs-pdp-tag span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding-inline-end: 7px;
  border-inline-end: 1px solid var(--border);
}
.igs-pdp-tag:hover { border-color: var(--gold); background: var(--gold-pale); }
.igs-pdp-h1 {
  font-size: clamp(20px, 2.6vw, 29px);
  line-height: 1.65;
  margin: 0 0 12px;
}

.igs-pdp-spec {
  border: 1px solid var(--gold-tint);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.igs-pdp-spec-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  border-bottom: 1px solid var(--border);
}
.igs-pdp-spec-row:last-child { border-bottom: 0; }
.igs-pdp-spec dt {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
}
.igs-pdp-spec dd {
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.igs-pdp-spec dd.igs-ltr {
  direction: ltr; text-align: left;
  font-family: var(--mono); font-size: 13px; letter-spacing: .02em;
}

.igs-pdp-buy {
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.igs-pdp-price {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.igs-pdp-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.igs-pdp-btns .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
.igs-pdp-btns .btn-primary { background: var(--ink); border-color: var(--ink); }
.igs-pdp-btns .btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.igs-pdp-trust { list-style: none; margin: 16px 0 0; display: grid; gap: 8px; }
.igs-pdp-trust li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.igs-pdp-trust li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 6px;
  width: 9px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@media (max-width: 860px) {
  .igs-pdp {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "head"
      "media"
      "info";
    column-gap: 0;
    row-gap: 18px;
  }
  .igs-pdp-media { width: 100%; max-width: 340px; margin-inline: auto; }
  .igs-pdp-head  { margin-bottom: 0; }
  .igs-pdp-head .igs-pdp-h1 { margin-bottom: 0; }
}
@media (max-width: 600px) {
  .igs-pdp { padding-bottom: 24px; margin-bottom: 26px; }
  .igs-pdp-spec-row { grid-template-columns: 96px minmax(0, 1fr); }
  .igs-pdp-btns .btn { flex: 1 1 100%; }
}

.igs-pdp-media.is-zoomable {
  cursor: zoom-in;
  padding: 0;
  border: 1px solid var(--border);
  font: inherit;
  text-align: inherit;
  width: 100%;
}
.igs-pdp-zoom {
  position: absolute;
  bottom: 12px; inset-inline-end: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.igs-pdp-zoom svg { width: 17px; height: 17px; fill: var(--brand); }
.igs-pdp-media.is-zoomable:hover .igs-pdp-zoom { background: var(--gold); border-color: var(--gold); }
.igs-pdp-media.is-zoomable:hover .igs-pdp-zoom svg { fill: #fff; }

.igs-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20, 18, 14, .93);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity .18s;
}
.igs-lightbox.is-open { opacity: 1; }
.igs-lb-stage {
  flex: 1;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px 16px;
  overflow: auto;
}
.igs-lb-stage img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  transition: transform .25s;
}
.igs-lb-stage img.is-zoomed { transform: scale(2.2); cursor: zoom-out; }
.igs-lb-close {
  position: absolute; top: 16px; inset-inline-end: 20px;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.igs-lb-close:hover { background: var(--gold); }
.igs-lb-hint { padding: 0 0 18px; font-size: 12.5px; color: rgba(255,255,255,.65); }
@media (max-width: 600px) {
  .igs-lb-stage { padding: 56px 12px 12px; }
  .igs-lb-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .igs-lightbox, .igs-lb-stage img { transition: none; }
}

.page-content img,
.section-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.page-content p:has(> img:only-child),
.section-content p:has(> img:only-child) { margin: 0; text-align: center; }
.page-content figure,
.section-content figure { margin: 30px auto; text-align: center; }
.page-content figure img,
.section-content figure img { margin: 0 auto 10px; }
.page-content figcaption,
.section-content figcaption { font-size: 12.5px; color: var(--text-muted); }

.page-content img[width]:not([width=""]),
.section-content img[width]:not([width=""]) { max-width: 100%; }
.page-content a > img,
.section-content a > img { cursor: zoom-in; }

.igs-quote { padding: 62px 0; background: var(--gold-pale); }
.igs-quote-inner { display: grid; grid-template-columns: 1fr 420px; gap: 34px; align-items: start; }
.igs-quote-text h2 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; margin-bottom: 12px; }
.igs-quote-text p { color: var(--text-muted); line-height: 2; font-size: 14.5px; }
.igs-quote-points { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.igs-quote-points li { position: relative; padding-right: 24px; font-size: 14.5px; line-height: 2; }
.igs-quote-points li::before {
  content: '';
  position: absolute;
  top: 11px; right: 0;
  width: 11px; height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.igs-form-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.igs-form-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.igs-form-title i { color: var(--brand); }

@media (max-width: 900px) {
  .igs-quote-inner { grid-template-columns: 1fr; }
  .igs-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .igs-hero-hex { opacity: .35; left: -140px; }
}
@media (max-width: 600px) {
  .igs-hero { padding: 40px 0 46px; }
  .igs-hero-hex { display: none; }
  .igs-stats { grid-template-columns: repeat(2, 1fr); }
  .igs-stat:nth-child(2) { border-left: 0; }
  .igs-stat:nth-child(-n+2) { border-bottom: 1px solid var(--gold-tint); }
  .igs-hero h1 { font-size: 22px; line-height: 1.75; }
  .igs-hero-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .igs-hero-btns .btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
    padding-inline: 10px;
    font-size: 13.5px;
    white-space: nowrap;
  }
  .igs-hero-btns .btn i { flex-shrink: 0; }
  .igs-cat-grid { grid-template-columns: 1fr 1fr; }
  .igs-cat { padding: 15px 13px; border-right-width: 3px; }
  .igs-cat-title { font-size: 13.5px; }
  .igs-cat-sub { display: none; }
  .igs-prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .igs-prod-body { padding: 11px 12px 11px; }
  .igs-prod-title { font-size: 12.5px; }
  .igs-prod-media img { padding: 10px; }
  .igs-prod-cta { font-size: 11px; }
  .page-content img, .section-content img { margin: 22px auto; }
  .page-type-product .section-table td:first-child { width: 42%; }
}
@media (hover: none) {
  .igs-cat:hover, .igs-prod:hover { transform: none; box-shadow: none; }
  .igs-cat:active { border-color: var(--brand); }
}
@media (prefers-reduced-motion: reduce) {
  .igs-cat, .igs-prod, .btn { transition: none; }
}

html, body { overflow-x: clip; }           
.hdr-inner { min-width: 0; }
.hdr-inner > * { min-width: 0; }
.hdr-nav { min-width: 0; flex: 1 1 auto; }
.hdr-actions { flex: 0 1 auto; }
.hdr-search form { max-width: 100%; }
.hdr-search input { width: 110px; }
.hdr-search input:focus { width: 150px; }

@media (max-width: 1200px) {
  .nav-list > .ni > a { padding-left: 10px; padding-right: 10px; font-size: 14px; }
  .hdr-search { display: none; }           
}
@media (max-width: 1040px) {
  .hdr-phone { display: none; }
}

.site-logo img { height: 57px; width: auto; transition: height .22s ease; }
.hdr-inner { height: 82px; transition: height .22s ease; }
.site-header.is-compact .hdr-inner { height: 60px; }
.site-header.is-compact .site-logo img { height: 40px; }
@media (max-width: 600px) {
  .site-logo img { height: 44px; }
  .hdr-inner { height: 64px; }
  .site-header.is-compact .site-logo img { height: 33px; }
  .site-header.is-compact .hdr-inner { height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-logo img, .hdr-inner { transition: none; }
}

:root {
  --h1:    clamp(21px, 1.15rem + 1.5vw, 30px);
  --h2:    clamp(18px, 1.02rem + 0.7vw, 23px);
  --h3:    clamp(16px, 0.96rem + 0.35vw, 18px);
  --lh-heading: 1.65;
}

.page-h1,
.igs-pdp-h1 {
  font-size: var(--h1);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.igs-pdp-h1 { margin-bottom: 14px; }

.section-title,
.page-section .section-title,
.igs-products-title,
.related-pages .section-title,
.faq-section .section-title,
.igs-quote-text h2,
.about-section .section-title {
  font-size: var(--h2);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: -.01em;
}

.page-content h2,
.section-content h2 {
  font-size: var(--h2);
  font-weight: 800;
  line-height: var(--lh-heading);
  margin: 34px 0 14px;
}
.page-content h3,
.section-content h3 {
  font-size: var(--h3);
  font-weight: 700;
  line-height: var(--lh-heading);
  margin: 26px 0 12px;
}
.page-content h4,
.section-content h4 { font-size: 15.5px; font-weight: 700; margin: 22px 0 10px; }

.section-head .section-title { font-size: var(--h2); }

@media (max-width: 600px) {
  .page-h1, .igs-pdp-h1 { margin-bottom: 16px; }
  .page-content h2, .section-content h2 { margin: 26px 0 12px; }
  .igs-products-head { margin-bottom: 14px; }
  .igs-car-btn { width: 34px; height: 34px; }
}

.igs-hero.is-full {
  width: 100%;
  padding: 66px 0 74px;
  background:
    radial-gradient(1200px 420px at 88% 30%, var(--gold-pale) 0%, transparent 62%),
    #fff;
}

.igs-hero.is-full .igs-hero-inner { max-width: 1160px; }
.igs-hero.is-full .igs-hero-inner > * { max-width: min(640px, 58%); }

/* The heading and paragraph are capped at 640px so the line length stays
   readable. The button row does not need that cap - with four buttons it was
   the cap, not the page width, that pushed the fourth one onto its own line.
   It still stops short of the hexagon artwork on the far side. */
.igs-hero.is-full .igs-hero-inner > .igs-hero-btns { max-width: min(820px, 70%); }

@media (max-width: 900px) {
  .igs-hero.is-full .igs-hero-inner > * { max-width: 100%; }
  .igs-hero.is-full .igs-hero-inner > .igs-hero-btns { max-width: 100%; }
}
.igs-hero-hex { opacity: .95; }

.btn-wa { background: #25d366; border-color: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb857; border-color: #1eb857; color: #fff; }

@media (max-width: 600px) {
  .igs-hero.is-full { padding: 40px 0 46px; }
}

.section-head { text-align: center; margin-bottom: 30px; }
.section-head .section-title {
  display: inline-block;
  border-bottom: 0;
  padding-bottom: 12px;
  margin-bottom: 0;
  position: relative;
}
.section-head .section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.igs-cat-car { position: relative; }
.igs-cat-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.igs-cat-track::-webkit-scrollbar { display: none; }
@media (min-width: 1100px) { .igs-cat-track { grid-auto-columns: calc((100% - 3 * 18px) / 4); } }
@media (max-width: 1099px) and (min-width: 760px) { .igs-cat-track { grid-auto-columns: calc((100% - 2 * 18px) / 3); } }
@media (max-width: 759px) { .igs-cat-track { grid-auto-columns: 62%; gap: 12px; } }

.igs-cat {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  padding: 22px 20px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.igs-cat::before { content: none; }

.igs-cat::after {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cc), var(--cc2));
}
.igs-cat:hover {
  border-color: var(--cc2);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--cc) 22%, transparent);
  transform: translateY(-4px);
}

.igs-cat-hexwrap { position: absolute; inset: 0; pointer-events: none; }
.igs-cat-hex {
  position: absolute;
  top: 20px; inset-inline-start: 20px;
  width: 34px; height: 38px;
  background: linear-gradient(140deg, var(--cc), var(--cc2));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .3s;
}
.igs-cat:hover .igs-cat-hex { transform: rotate(30deg); }
.igs-cat-hex-bg {
  position: absolute;
  top: -34px; inset-inline-end: -38px;
  width: 150px; height: 168px;
  background: var(--cc2);
  opacity: .10;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: opacity .25s, transform .3s;
}
.igs-cat:hover .igs-cat-hex-bg { opacity: .18; transform: rotate(18deg); }

.igs-cat-title {
  position: relative;
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.8;
  color: var(--ink);
}
.igs-cat:hover .igs-cat-title { color: var(--cc); }
.igs-cat-count, .igs-cat-sub, .igs-cat-go { display: none; }

@media (max-width: 600px) {
  .igs-cat { min-height: 146px; padding: 18px 16px 16px; }
  .igs-cat-title { font-size: 14px; }
  .igs-cat-hex { width: 28px; height: 31px; top: 16px; inset-inline-start: 16px; }
}

.igs-brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.igs-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 20px 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.igs-brand:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(120, 96, 52, .12);
  transform: translateY(-3px);
}
.igs-brand-mark {
  position: relative;
  width: 56px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background .2s;
  overflow: hidden;
}
.igs-brand:hover .igs-brand-mark { background: var(--gold-tint); }
.igs-brand-mark img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; padding: 10px;
  background: #fff;
}
.igs-brand-initial { font-size: 21px; font-weight: 800; color: var(--brand); }
.igs-brand-name { font-size: 13.5px; font-weight: 700; line-height: 1.7; }
.igs-brand-count { font-size: 11.5px; color: var(--text-muted); }
.igs-brand-all { border-style: dashed; }

@media (max-width: 600px) {
  .igs-brands { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 10px; }
  .igs-brand { padding: 15px 8px 12px; }
  .igs-brand-mark { width: 46px; height: 51px; }
  .igs-brand-name { font-size: 12px; }
}

.igs-quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 40px;
  align-items: stretch;
}
.igs-quote-text { display: flex; flex-direction: column; }
.igs-quote-text h2 { margin-bottom: 14px; }
.igs-quote-points { margin-top: 20px; margin-bottom: 0; }
.igs-quote-cta { margin-top: auto; padding-top: 22px; }
.igs-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 6px 28px rgba(120, 96, 52, .10);
}
.igs-form-title {
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
}
@media (max-width: 900px) {
  .igs-quote-inner { grid-template-columns: 1fr; gap: 26px; }
}

.igs-art-car { position: relative; }
.igs-art-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.igs-art-track::-webkit-scrollbar { display: none; }
@media (min-width: 1100px) { .igs-art-track { grid-auto-columns: calc((100% - 3 * 18px) / 4); } }
@media (max-width: 1099px) and (min-width: 760px) { .igs-art-track { grid-auto-columns: calc((100% - 18px) / 2); } }
@media (max-width: 759px) { .igs-art-track { grid-auto-columns: 78%; gap: 12px; } }

.igs-art {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.igs-art:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(120, 96, 52, .14);
  transform: translateY(-3px);
}
.igs-art-img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  overflow: hidden;
}
.igs-art-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.igs-art:hover .igs-art-img img { transform: scale(1.05); }
.igs-art-body { display: flex; flex-direction: column; flex: 1; padding: 15px 16px 16px; }
.igs-art-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.75em);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--ink);
}
.igs-art:hover .igs-art-title { color: var(--brand); }
.igs-art-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 9px;
  font-size: 12.5px;
  line-height: 2;
  color: var(--text-muted);
}
.igs-art-more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
}

.igs-art-btn {
  position: absolute;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(120, 96, 52, .18);
  cursor: pointer;
  z-index: 3;
  transition: background .2s, border-color .2s, opacity .2s;
}
.igs-art-btn::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 9px; height: 9px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: translate(-40%, -50%) rotate(45deg);
}

.igs-art-btn[data-dir="prev"] { inset-inline-start: -14px; }
.igs-art-btn[data-dir="next"] { inset-inline-end: -14px; }
.igs-art-btn[data-dir="next"]::before { transform: translate(-60%, -50%) rotate(-135deg); }
.igs-art-btn:hover:not(:disabled) { background: var(--gold-pale); border-color: var(--gold); }
.igs-art-btn:disabled { opacity: 0; pointer-events: none; }
@media (max-width: 1240px) {
  .igs-art-btn[data-dir="prev"] { inset-inline-start: 4px; }
  .igs-art-btn[data-dir="next"] { inset-inline-end: 4px; }
}
@media (max-width: 759px) { .igs-art-btn { display: none; } }

.igs-subcats {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 15px 18px;
  margin: 0 0 26px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  border-radius: var(--radius-lg);
}
.igs-subcats-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  flex: 0 0 auto;
}
.igs-subcats ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.igs-subcats a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--gold-tint);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.igs-subcats a:hover { border-color: var(--gold); background: var(--gold-pale); }
.igs-subcats a.is-parent { background: var(--ink); border-color: var(--ink); color: #fff; }
.igs-subcats a.is-parent:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.igs-subcats a span {
  font-size: 11px;
  color: var(--text-muted);
  padding-inline-start: 7px;
  border-inline-start: 1px solid var(--border);
}
@media (max-width: 600px) {
  .igs-subcats { padding: 12px 13px; gap: 8px; }
  .igs-subcats a { padding: 5px 11px; font-size: 12.5px; }
}

.igs-brand-car { position: relative; }
.igs-brand-car .igs-brands {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 160px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.igs-brand-car .igs-brands::-webkit-scrollbar { display: none; }
.igs-brand-car .igs-brand { scroll-snap-align: start; }
@media (min-width: 1100px) { .igs-brand-car .igs-brands { grid-auto-columns: calc((100% - 6 * 14px) / 7); } }
@media (max-width: 1099px) and (min-width: 760px) { .igs-brand-car .igs-brands { grid-auto-columns: calc((100% - 4 * 14px) / 5); } }
@media (max-width: 759px) { .igs-brand-car .igs-brands { grid-auto-columns: 41%; gap: 10px; } }

.igs-contact { margin-top: 28px; }

.igs-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.igs-cc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.igs-cc-hex {
  width: 42px; height: 47px;
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--brand);
  font-size: 16px;
}
.igs-cc-label { font-size: 12px; color: var(--text-muted); }
.igs-cc a, .igs-cc-text {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.95;
}
.igs-cc a:hover { color: var(--brand); }
.igs-cc-text { font-weight: 600; font-size: 13.5px; }

.igs-contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  margin-bottom: 24px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-tint);
  border-radius: var(--radius-lg);
}
.igs-contact-social > span { font-size: 13.5px; font-weight: 700; color: var(--brand); }
.igs-contact-social > div { display: flex; gap: 9px; flex-wrap: wrap; }
.igs-soc {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff; font-size: 17px;
  text-decoration: none;
  transition: transform .2s, filter .2s;
}
.igs-soc:hover { transform: translateY(-2px); filter: brightness(1.08); }
.igs-soc-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.igs-soc-tg { background: #229ed9; }
.igs-soc-wa { background: #25d366; }
.igs-soc-li { background: #0a66c2; }
.igs-soc-tw { background: #111; }

.igs-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.igs-map {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-alt);
}
.igs-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }

@media (max-width: 900px) {
  .igs-contact-grid { grid-template-columns: 1fr; }
  .igs-map { min-height: 320px; }
  .igs-map iframe { min-height: 320px; }
}

.igs-why {
  background: var(--ink);
  color: #fff;
  padding: 62px 0 54px;
  position: relative;
  overflow: hidden;
}

.igs-why::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpolygon points='60,2 116,28 116,76 60,102 4,76 4,28' fill='none' stroke='%23c2a476' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 120px 104px;
}
.igs-why > .container { position: relative; z-index: 1; }

.igs-why-head { text-align: center; margin-bottom: 36px; }
.igs-why-head h2 {
  font-size: var(--h2);
  font-weight: 800;
  line-height: var(--lh-heading);
  margin-bottom: 8px;
}
.igs-why-head h2::after {
  content: '';
  display: block;
  width: 54px; height: 3px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.igs-why-head p { font-size: 13.5px; color: rgba(255,255,255,.62); }

.igs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.igs-why-card {
  position: relative;
  padding: 26px 22px 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(194,164,118,.28);
  border-radius: var(--radius-lg);
  transition: background .25s, border-color .25s, transform .25s;
}
.igs-why-card:hover {
  background: rgba(194,164,118,.11);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.igs-why-hex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 58px;
  margin-bottom: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--ink);
  font-size: 20px;
  transition: transform .3s;
}
.igs-why-card:hover .igs-why-hex { transform: rotate(30deg); }
.igs-why-card:hover .igs-why-hex i { transform: rotate(-30deg); }
.igs-why-hex i { transition: transform .3s; }
.igs-why-num {
  position: absolute;
  top: 18px; inset-inline-end: 20px;
  font-size: 34px;
  font-weight: 800;
  color: rgba(194,164,118,.22);
  line-height: 1;
}
.igs-why-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
.igs-why-card p {
  font-size: 13px;
  line-height: 2.05;
  color: rgba(255,255,255,.72);
  margin: 0;
}

.igs-partners {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.igs-partners-label {
  display: block;
  font-size: clamp(16px, 1rem + 0.4vw, 19px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.01em;
  margin: 0 0 22px;
}
.igs-partners-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin-inline: auto;
}

.igs-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 380 / 170;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius);
}

.igs-partner img { width: 100%; height: auto; display: block; }

@media (max-width: 900px) {
  .igs-partners-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .igs-why { padding: 42px 0 38px; }
  .igs-why-grid { gap: 14px; }
  .igs-why-card { padding: 20px 17px 18px; }
  .igs-why-num { font-size: 27px; top: 14px; }
  .igs-partners-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .igs-partner { padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .igs-why-card, .igs-why-hex, .igs-why-hex i { transition: none; }
}

.igs-pager {
  margin: 30px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.igs-pager-info { font-size: 12.5px; color: var(--text-muted); }
.igs-pager ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 7px; justify-content: center;
}
.igs-pager a,
.igs-pager span.is-current,
.igs-pager span.is-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, background .2s, color .2s;
}
.igs-pager a:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--brand); }
.igs-pager span.is-current { background: var(--ink); border-color: var(--ink); color: #fff; }
.igs-pager span.is-gap { border-color: transparent; background: transparent; color: var(--text-muted); min-width: 24px; padding: 0 4px; }
.igs-pager a.is-nav { font-weight: 600; color: var(--brand); }
@media (max-width: 600px) {
  .igs-pager a, .igs-pager span.is-current { min-width: 36px; height: 36px; padding: 0 9px; font-size: 12.5px; }
}

.igs-sep {
  position: relative;
  line-height: 0;
  margin-bottom: -1px;
  pointer-events: none;
}
.igs-sep svg {
  display: block;
  width: 100%;
  height: 86px;
}
.igs-sep-curve svg { height: 92px; }

.igs-sep-curve .igs-sep-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  opacity: .55;
  vector-effect: non-scaling-stroke;
}

.igs-sep-fade {
  height: 96px;
  background: linear-gradient(to bottom, var(--sep-from), var(--sep-to));
  display: flex;
  align-items: center;
  justify-content: center;
}

.igs-sep-fade { position: relative; }
.igs-sep-fade::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 76vw);
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(194,164,118,.62) 20%,
      rgba(194,164,118,.62) 80%,
      transparent);
}
.igs-sep-fade::after {
  content: '';
  position: relative;
  z-index: 1;
  width: 17px; height: 19px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 0 8px var(--sep-to);
}

.igs-sep-fade.is-mark {
  height: 78px;
  background: var(--sep-from);
}

@media (max-width: 760px) {
  .igs-sep svg { height: 52px; }
  .igs-sep-curve svg { height: 56px; }
  .igs-sep-fade { height: 64px; }
  .igs-sep-fade.is-mark { height: 56px; }
  .igs-sep-fade::before { width: 78vw; }
}

.mcb-quote {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.igs-qm {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.igs-qm.is-open { opacity: 1; }
.igs-qm[hidden] { display: none; }
.igs-qm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, .62);
}
.igs-qm-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px 20px 28px;
  box-shadow: 0 -10px 40px rgba(0,0,0,.28);
  transform: translateY(24px);
  transition: transform .24s;
}
.igs-qm.is-open .igs-qm-panel { transform: translateY(0); }
.igs-qm-panel::before {          
  content: '';
  display: block;
  width: 44px; height: 4px;
  margin: -8px auto 14px;
  border-radius: 3px;
  background: var(--border);
}
.igs-qm-close {
  position: absolute;
  top: 12px; inset-inline-end: 14px;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 22px; line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.igs-qm-close:hover { background: var(--gold-pale); color: var(--brand); }
.igs-qm-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.igs-qm-title i { color: var(--brand); }
.igs-qm-lead {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 700px) {
  .igs-qm { align-items: center; }
  .igs-qm-panel { border-radius: var(--radius-lg); max-height: 88vh; }
  .igs-qm-panel::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .igs-qm, .igs-qm-panel { transition: none; }
}

@media (max-width: 960px) {
  .mobile-contact-bar.igs-mcb {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(28,31,36,.12);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .igs-mcb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 2px;
    border: 0;
    background: none;
    font: inherit;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    min-width: 0;
    transition: color .15s;
  }
  .igs-mcb-item > span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .igs-mcb-ico {
    width: 36px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: #fff;
    background: var(--ink);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: background .15s, transform .15s;
  }
  .igs-mcb-item:active .igs-mcb-ico { transform: scale(.93); }
  .igs-mcb-item.is-wa    .igs-mcb-ico { background: #25d366; }
  .igs-mcb-item.is-ig    .igs-mcb-ico { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
  .igs-mcb-item.is-quote .igs-mcb-ico { background: linear-gradient(140deg, var(--gold), var(--brand)); }
  .igs-mcb-item.is-quote { color: var(--brand); }
}

.igs-hero-hex .hx {
  transform-box: fill-box;
  transform-origin: center;
  animation: igs-hx-float 9s ease-in-out infinite;
}
.igs-hero-hex .hx-1 { animation-duration: 8.5s;  animation-delay: 0s;    }
.igs-hero-hex .hx-2 { animation-duration: 11s;   animation-delay: -1.6s; }
.igs-hero-hex .hx-3 { animation-duration: 9.8s;  animation-delay: -3.1s; }
.igs-hero-hex .hx-4 { animation-duration: 13s;   animation-delay: -2.2s; animation-name: igs-hx-breathe; }
.igs-hero-hex .hx-5 { animation-duration: 15s;   animation-delay: -5.4s; animation-name: igs-hx-breathe; }

@keyframes igs-hx-float {
  0%,100% { transform: translateY(0)     rotate(0deg);    }
  33%     { transform: translateY(-9px)  rotate(1.4deg);  }
  66%     { transform: translateY(6px)   rotate(-1deg);   }
}
@keyframes igs-hx-breathe {
  0%,100% { transform: scale(1);     opacity: .75; }
  50%     { transform: scale(1.045); opacity: 1;   }
}

.igs-hero-hex .hx-sheen {
  animation: igs-hx-sheen 7s ease-in-out infinite;
  animation-delay: 1.2s;
}
@keyframes igs-hx-sheen {
  0%, 62%, 100% { transform: translateX(0);    opacity: 0; }
  68%           { opacity: .9; }
  92%           { transform: translateX(420px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .igs-hero-hex .hx, .igs-hero-hex .hx-sheen { animation: none; }
}

.igs-latest { background: var(--bg-alt); padding: 54px 0 58px; }
.igs-latest .igs-products { margin: 0; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: #fff;
  direction: ltr;
  flex-shrink: 0;
}
.lang-switch-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-inline-start: 4px;
  color: var(--brand);
  flex-shrink: 0;
}
.lang-switch-ico svg { width: 16px; height: 16px; fill: currentColor; }
.lang-opt {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background .16s, color .16s;
}
a.lang-opt:hover { background: var(--gold-pale); color: var(--brand); }
.lang-opt.is-active {
  background: var(--gold);
  color: #fff;
  cursor: default;
  box-shadow: 0 1px 4px rgba(138,106,53,.25);
}

.lang-switch.is-block { display: flex; width: 100%; }
.lang-switch.is-block .lang-opt { flex: 1; text-align: center; font-size: 14px; padding: 9px 10px; }

.hdr-m-lang {
  display: none;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: #fff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  direction: ltr;
  flex-shrink: 0;
}
.hdr-m-lang svg { width: 15px; height: 15px; fill: currentColor; }

.drawer-lang { display: none; }
.drawer-lang-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: .02em;
}

@media (max-width: 960px) {
  .hdr-m-lang { display: inline-flex; }
  .drawer-lang {
    display: block;
    padding: 14px 18px 4px;
  }
}

@media (max-width: 380px) {
  .hdr-m-lang span { display: none; }
  .hdr-m-lang { padding: 0 9px; }
}

.page-content,
.section-content,
.section-table,
.faq-answer,
.tab-panel-content,
.igs-pdp-info,
.search-result-excerpt {
  font-family: inherit;
}

.page-content *:not([class*="fa-"]):not(.fa):not(svg):not(svg *),
.section-content *:not([class*="fa-"]):not(.fa):not(svg):not(svg *),
.section-table *:not([class*="fa-"]):not(.fa):not(svg):not(svg *),
.faq-answer *:not([class*="fa-"]):not(.fa):not(svg):not(svg *),
.tab-panel-content *:not([class*="fa-"]):not(.fa):not(svg):not(svg *) {
  font-family: inherit !important;
}

.page-content font,
.section-content font,
.section-table font {
  font-family: inherit !important;
}

@media (max-width: 400px) {
  .igs-hero-btns { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .mry-footer-logo img { height: 60px; padding: 12px 18px; border-radius: 14px; }
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch.on-dark {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  padding: 2px;
}
.lang-switch.on-dark .lang-switch-ico { color: #fff; width: 18px; height: 18px; margin-inline-start: 3px; }
.lang-switch.on-dark .lang-switch-ico svg { width: 14px; height: 14px; }
.lang-switch.on-dark .lang-opt { color: #fff; font-size: 12px; padding: 3px 10px; }
.lang-switch.on-dark a.lang-opt:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.lang-switch.on-dark .lang-opt.is-active {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

@media (max-width: 960px) {
  .topbar-actions .lang-switch { display: none; }
}
@media (max-width: 600px) {
  .topbar-actions { gap: 8px; }
  .topbar-phone { font-size: 12px; }
}
