 
:root {
  --navy: #0B1628;
  --navy-2: #162040;
  --gold: #C9A84C;
  --gold-2: #E2C06A;
  --gold-pale: #F5EDD6;
  --cream: #FAF8F3;
  --white: #ffffff;
  --muted: #8A8FA8;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--navy); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.merk-nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.merk-nav.scrolled {
  background: rgba(11, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-logo span { color: var(--gold); }
.nav-logo img{
    width: 200px;
}
.nav-link-item {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.25s;
  font-family: var(--font-ui);
}
.nav-link-item:hover { color: var(--gold) !important; }
.btn-nav-demo {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold) !important;
  padding: 8px 22px;
  border-radius: 1px;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-ui);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-nav-demo:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.btn-nav-trial {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 22px;
  border-radius: 1px;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-ui);
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid var(--gold);
}
.btn-nav-trial:hover { background: var(--gold-2); }

/* ══════════════════════════════════════════
   HERO — FULL-SCREEN WITH BACKGROUND IMAGE
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../Images/HR-Autopilot.webp') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,22,40,0.92) 0%,
    rgba(11,22,40,0.75) 50%,
    rgba(11,22,40,0.60) 100%
  );
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 18px; border-radius: 2px;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-ui); font-weight: 600;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
}
.hero-badge .badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 26px;
  opacity: 0; transform: translateY(30px);
}
.hero-headline .gold { color: var(--gold); font-style: italic; }
.hero-headline .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 38px;
  opacity: 0; transform: translateY(20px);
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
  opacity: 0; transform: translateY(20px);
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 15px 38px; border-radius: 1px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; font-family: var(--font-ui);
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-2); color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }
.btn-outline-w {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 15px 38px; border-radius: 1px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; font-family: var(--font-ui);
  display: inline-block;
}
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
  font-family: var(--font-ui);
}
.trust-pill i { color: var(--gold); }

/* Hero Right — Stacked Cards */
.hero-cards {
  position: relative; height: 540px;
  opacity: 0; transform: translateX(40px);
}
.hcard {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  padding: 24px 28px;
}
.hcard-main { width: 100%; top: 0; left: 0; }
.hcard-stat { top: 190px; right: 0; width: 48%; }
.hcard-stat2 { bottom: 0; left: 0; width: 48%; }
.hcard-ai { bottom: 0; right: 0; width: 48%; }

.hcard-label {
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-ui); margin-bottom: 14px;
}
.hcard-big {
  font-family: var(--font-display); font-size: 3.8rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hcard-sm { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.hcard-icon {
  width: 38px; height: 38px; background: var(--gold);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.hcard-icon i { color: var(--navy); font-size: 0.95rem; }
.hcard-title { font-size: 0.82rem; color: var(--white); font-weight: 600; }
.hcard-val { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

.metric-row { display: flex; gap: 28px; margin-top: 14px; }
.metric-item .num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.metric-item .lbl { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ══════════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════════ */
.ticker-strip { background: var(--gold); padding: 0; overflow: hidden; height: 52px; display: flex; align-items: center; }
.ticker-track { display: flex; gap: 0; animation: tickerRun 30s linear infinite; white-space: nowrap; }
.ticker-item {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; font-style: italic;
  color: var(--navy); padding: 0 40px; display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.ticker-item::after { content: '◆'; font-size: 0.5rem; color: rgba(11,22,40,0.4); font-style: normal; }
@keyframes tickerRun { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.sec-tag {
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-ui); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.sec-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.sec-tag.center { justify-content: center; }
.sec-tag.center::before { display: none; }
.sec-tag.center::after { content: ''; width: 28px; height: 1px; background: var(--gold); }

.sec-h {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1;
  color: var(--navy);
}
.sec-h em { color: var(--gold); font-style: italic; }
.sec-h.light { color: var(--white); }

.reveal { opacity: 0; transform: translateY(40px); }

/* ══════════════════════════════════════════
   VALUE PROP — SPLIT LAYOUT WITH IMAGE
══════════════════════════════════════════ */
.value-section { background: var(--cream); overflow: hidden; }
.value-image-col {
  min-height: 600px; position: relative; overflow: hidden;
}
.value-image-col img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.value-image-col:hover img { transform: scale(1.04); }
.value-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,22,40,0.3) 0%, transparent 100%);
}
.value-content { padding: 80px 60px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; background: rgba(201,168,76,0.1); }
.vg-item {
  background: var(--cream); padding: 28px 24px;
  transition: all 0.3s;
}
.vg-item:hover { background: var(--white); }
.vg-icon { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; }
.vg-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.vg-body { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   BENEFITS — DARK WITH IMAGE COLLAGE
══════════════════════════════════════════ */
.benefits-section { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.benefits-section::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=900&q=80&fit=crop') center/cover no-repeat;
  opacity: 0.12;
}

.benefit-num {
  font-family: var(--font-display); font-size: 4.5rem; font-weight: 900;
  color: rgba(201,168,76,0.1); line-height: 1; min-width: 70px;
  transition: color 0.3s;
}
.benefit-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: default; transition: all 0.3s;
}
.benefit-row:hover .benefit-num { color: var(--gold); }
.benefit-row:hover { padding-left: 14px; }
.benefit-title { font-size: 1rem; color: var(--white); font-weight: 600; margin-bottom: 5px; }
.benefit-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

.stat-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sbox {
  background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px; padding: 28px 20px; text-align: center;
}
.sbox-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.sbox-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 0.5px; }

.golive-box {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 32px;
}
.golive-tag { font-size: 0.62rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; font-family: var(--font-ui); }
.golive-big { font-family: var(--font-display); font-size: 4.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.golive-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ══════════════════════════════════════════
   PRODUCT SUITE — MAGAZINE GRID
══════════════════════════════════════════ */
.products-section { background: var(--white); padding: 100px 0; }
.product-mag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 2px;
  background: #e8e4dc;
  margin-top: 50px;
}
.ptile {
  background: var(--white); padding: 42px 36px;
  position: relative; overflow: hidden; cursor: default;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ptile.wide { grid-column: span 2; }
.ptile::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 0; height: 3px; background: var(--gold); transition: width 0.4s;
}
.ptile:hover::before { width: 100%; }
.ptile:hover { background: var(--navy); }
.ptile:hover .ptile-tag { color: var(--gold); }
.ptile:hover .ptile-title { color: var(--white); }
.ptile:hover .ptile-body { color: rgba(255,255,255,0.5); }
.ptile:hover .ptile-num { color: rgba(201,168,76,0.15); }
.ptile-num {
  font-family: var(--font-display); font-size: 6rem; font-weight: 900;
  color: rgba(11,22,40,0.04); position: absolute; top: 10px; right: 20px;
  line-height: 1; transition: color 0.4s; pointer-events: none;
}
.ptile-icon {
  width: 52px; height: 52px; background: var(--gold-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.3s;
}
.ptile:hover .ptile-icon { background: rgba(201,168,76,0.15); }
.ptile-icon i { color: var(--gold); font-size: 1.3rem; }
.ptile-tag { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-family: var(--font-ui); font-weight: 600; margin-bottom: 8px; transition: color 0.3s; }
.ptile-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; transition: color 0.4s; }
.ptile-body { font-size: 0.86rem; color: var(--muted); line-height: 1.7; transition: color 0.4s; max-width: 320px; }

/* ══════════════════════════════════════════
   CAPABILITIES — DARK SPLIT
══════════════════════════════════════════ */
.cap-section { background: linear-gradient(135deg, #0d1e38 0%, var(--navy) 100%); padding: 100px 0; position: relative; overflow: hidden; }
.cap-section::after {
  content: 'MERK';
  position: absolute; right: -60px; bottom: -40px;
  font-family: var(--font-display); font-size: 20rem; font-weight: 900;
  color: rgba(201,168,76,0.03); pointer-events: none; line-height: 1;
}
.cap-image-wrap {
  border-radius: 6px; overflow: hidden; position: relative; height: 500px;
}
.cap-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cap-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.7) 0%, transparent 50%);
}
.cap-badge {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  background: rgba(201,168,76,0.9); padding: 14px 20px; border-radius: 4px;
}
.cap-badge-title { font-size: 0.65rem; letter-spacing: 2px; color: var(--navy); text-transform: uppercase; font-family: var(--font-ui); margin-bottom: 4px; }
.cap-badge-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--navy); }

.cap-list-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.1); margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s; cursor: default;
}
.cap-list-item:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.3); transform: translateX(6px); }
.cap-list-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cap-list-icon i { color: var(--gold); }
.cap-list-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

.int-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.int-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.76rem; color: rgba(255,255,255,0.6); font-family: var(--font-ui);
  transition: all 0.3s;
}
.int-pill:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--gold-2); }
.int-pill i { color: var(--gold); }

/* ══════════════════════════════════════════
   DIFF TABLE
══════════════════════════════════════════ */
.diff-section { padding: 100px 0; background: var(--cream); }
.diff-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 4px 60px rgba(11,22,40,0.1); }
.diff-head { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--navy); padding: 20px 32px; }
.diff-head-col { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: var(--font-ui); }
.diff-head-col.gold { color: var(--gold); }
.diff-r { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 18px 32px; border-bottom: 1px solid #f0ece4; align-items: center; transition: background 0.2s; }
.diff-r:last-child { border: none; }
.diff-r:hover { background: #faf8f3; }
.diff-feat { font-size: 0.88rem; color: var(--navy); font-weight: 500; }
.diff-cell { text-align: center; }
.diff-yes { color: var(--gold); font-size: 1.05rem; }
.diff-no { color: #d0d0d8; font-size: 1.05rem; }

/* ══════════════════════════════════════════
   ROLES — THREE COLUMNS WITH IMAGE HEADER
══════════════════════════════════════════ */
.roles-section { padding: 100px 0; background: var(--navy); }
.role-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px; overflow: hidden; height: 100%;
  transition: all 0.4s; position: relative;
}
.role-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.role-card:hover { transform: translateY(-8px); background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.3); }
.role-card:hover::after { transform: scaleX(1); }
.role-img { height: 180px; overflow: hidden; position: relative; }
.role-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.7) saturate(0.7); }
.role-card:hover .role-img img { transform: scale(1.05); }
.role-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(11,22,40,0.8) 100%); }
.role-body { padding: 28px 28px 32px; }
.role-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.role-title { font-family: var(--font-display); font-size: 1.7rem; color: var(--white); margin-bottom: 10px; }
.role-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.role-list { list-style: none; }
.role-list li {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.role-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════
   TESTIMONIALS — FULL BG IMAGE
══════════════════════════════════════════ */
.testi-section { position: relative; padding: 100px 0; overflow: hidden; }
.testi-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1920&q=80&fit=crop') center/cover no-repeat;
}
.testi-overlay { position: absolute; inset: 0; background: rgba(11,22,40,0.92); }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px; padding: 38px 32px;
  border-bottom: 3px solid var(--gold); height: 100%;
  transition: all 0.3s;
}
.testi-card:hover { background: rgba(201,168,76,0.07); transform: translateY(-6px); }
.testi-quote { font-family: var(--font-display); font-size: 4.5rem; color: rgba(201,168,76,0.2); line-height: 0.6; margin-bottom: 18px; display: block; }
.testi-text { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); line-height: 1.7; font-style: italic; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.testi-avatar { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ══════════════════════════════════════════
   RESOURCES
══════════════════════════════════════════ */
.resources-section { padding: 100px 0; background: var(--white); }
.res-card {
  border: 1px solid #ece8df; border-radius: 4px; padding: 30px 26px;
  transition: all 0.3s; position: relative; overflow: hidden; height: 100%;
}
.res-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0; background: var(--gold); transition: height 0.3s; }
.res-card:hover::before { height: 2px; }
.res-card:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.12); transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.res-icon { width: 46px; height: 46px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.res-icon i { color: var(--gold); font-size: 1.1rem; }
.res-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.res-body { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: 100px 0; background: var(--navy-2); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201,168,76,0.12); border-radius: 4px;
  margin-bottom: 10px; overflow: hidden; background: rgba(255,255,255,0.03);
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 28px; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); font-size: 0.95rem; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { color: var(--gold); transition: transform 0.3s; font-size: 0.8rem; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 200px; }
.faq-a-inner { padding: 0 28px 22px; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ══════════════════════════════════════════
   FINAL CTA — IMAGE BG
══════════════════════════════════════════ */
.cta-section { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1920&q=80&fit=crop') center/cover no-repeat;
}
.cta-overlay { position: absolute; inset: 0; background: var(--gold); opacity: 0.92; }
.cta-overlay-2 { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%); }
.cta-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 22rem; font-weight: 900;
  color: rgba(11,22,40,0.05); white-space: nowrap; pointer-events: none;
  line-height: 1;
}
.cta-h { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.8rem); font-weight: 900; color: var(--navy); line-height: 1.05; }
.cta-sub { font-size: 1.05rem; color: rgba(11,22,40,0.65); line-height: 1.75; max-width: 500px; margin: 20px 0 36px; }
.btn-navy { background: var(--navy); color: var(--white); padding: 16px 44px; border-radius: 1px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; font-family: var(--font-ui); }
.btn-navy:hover { background: var(--navy-2); color: var(--white); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(11,22,40,0.3); }
.btn-border-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 14px 44px; border-radius: 1px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; font-family: var(--font-ui); }
.btn-border-navy:hover { background: var(--navy); color: var(--white); }
.cta-note { font-size: 0.76rem; color: rgba(11,22,40,0.5); margin-top: 16px; font-family: var(--font-ui); }

.quickstart {
  background: rgba(11,22,40,0.1); border: 2px solid rgba(11,22,40,0.15);
  border-radius: 6px; padding: 36px; backdrop-filter: blur(4px);
}
.qs-tag { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(11,22,40,0.5); margin-bottom: 22px; font-family: var(--font-ui); }
.qs-step { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.qs-num { width: 32px; height: 32px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qs-num span { color: var(--gold); font-size: 0.75rem; font-weight: 700; font-family: var(--font-ui); }
.qs-text { font-size: 0.88rem; color: var(--navy); font-weight: 500; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.merk-footer { background: #060e1a; padding: 80px 0 32px; }
.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--white); letter-spacing: 3px; }
.footer-logo span { color: var(--gold); }
.footer-about { font-size: 0.84rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 300px; margin-top: 16px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px; }
.footer-contact-item i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-col-title { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-family: var(--font-ui); font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.84rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-2); }
.footer-divider { border-color: rgba(255,255,255,0.06); margin: 48px 0 28px; }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; transition: all 0.3s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-cards { display: none; }
  .value-image-col { min-height: 300px; }
  .value-content { padding: 50px 30px; }
  .product-mag-grid { grid-template-columns: 1fr 1fr; }
  .ptile.wide { grid-column: span 1; }
}
@media (max-width: 767px) {
  .product-mag-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }
  .cta-watermark { font-size: 8rem; }
  .hero-headline { font-size: 3rem; }
} 