:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3560;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a8892e;
  --cream: #f8f5ef;
  --white: #ffffff;
  --gray: #8898aa;
  --light-gray: #f0f2f5;
  --danger: #c0392b;
  --success: #1a7a4a;
  --font-display: 'Libre Baskerville', serif;
  --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
}

/* -- TOPBAR -- */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: var(--gold-light); text-decoration: none; margin-left: 20px; transition: color .2s; }
.topbar a:hover { color: var(--white); }

/* -- NAV -- */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(10,22,40,0.06);
  box-shadow: 0 2px 30px rgba(10,22,40,0.06);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--navy); text-decoration: none;
}
.logo-badge {
  background: var(--gold); color: var(--navy);
  font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 3px;
  letter-spacing: 1.5px; font-family: var(--font-body);
}
.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a {
  color: var(--navy); text-decoration: none; font-size: 13px;
  font-weight: 500; letter-spacing: 0.3px;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 24px; border-radius: 5px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.5px; transition: all .2s;
  border: 1px solid var(--navy);
}
.nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* -- HERO -- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.62) 0%, rgba(26,53,96,0.48) 50%, rgba(10,22,40,0.58) 100%);
  z-index: 1;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 100px 32px 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
  width: 100%;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 3px; margin-bottom: 28px;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 700; color: var(--white);
  line-height: 1.12; margin-bottom: 26px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.65); font-size: 17px;
  max-width: 500px; margin-bottom: 40px; font-weight: 300;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 34px; border-radius: 5px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.5px; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-ghost {
  background: var(--navy); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light);
  padding: 15px 34px; border-radius: 5px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all .25s;
}
.btn-ghost:hover { background: var(--navy-mid); border-color: var(--gold); color: var(--gold); }
/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px; padding: 40px;
  backdrop-filter: blur(16px);
}
.hero-card-title {
  font-family: var(--font-display);
  color: var(--gold); font-size: 20px; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(201,168,76,0.15);
}
.hero-stat {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px;
}
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.hero-stat-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.hero-stat-text strong { color: var(--white); display: block; font-size: 15px; margin-bottom: 2px; }

/* -- TRUST BAR -- */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 22px 0;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
}
.trust-item span { font-size: 16px; }

/* -- SECTION COMMONS -- */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy); font-weight: 700; line-height: 1.2;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--gray); font-size: 16px; max-width: 580px;
  font-weight: 300; line-height: 1.8;
}
.section-divider {
  width: 48px; height: 3px; background: var(--gold);
  margin: 14px 0 0; border-radius: 2px;
}

/* -- PRODUCT SCOPE SECTION -- */
.product-scope {
  background: var(--white);
  padding: 80px 0;
}
.scope-columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 40px;
}
.scope-box {
  background: var(--light-gray); border-radius: 14px;
  padding: 32px; border: 1px solid rgba(10,22,40,0.06);
}
.scope-box h4 {
  font-family: var(--font-display); font-size: 17px;
  color: var(--navy); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.scope-box h4 span { font-size: 22px; }
.scope-list { list-style: none; }
.scope-list li {
  font-size: 14px; color: #374151; line-height: 1.6;
  padding: 6px 0; display: flex; align-items: flex-start; gap: 10px;
}
.scope-list li::before { margin-top: 8px; }
.scope-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.scope-excluded .scope-list li::before { background: var(--danger); }
.scope-channels {
  margin-top: 32px; padding: 24px 28px;
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px;
}
.scope-channels strong { color: var(--navy); font-size: 15px; }
.scope-channels p { font-size: 14px; color: #4a5568; margin-top: 6px; line-height: 1.7; }

/* -- RESPONSIBLE PERSON BANNER -- */
.rp-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
}
.rp-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.rp-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; flex-shrink: 0;
}
.rp-text h3 {
  font-family: var(--font-display); font-size: 28px;
  color: var(--gold); margin-bottom: 10px;
}
.rp-text p {
  font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.8;
}
.rp-text p strong { color: var(--white); }

/* -- WHAT IS GPSR -- */
.gpsr-what { background: var(--white); }
.gpsr-what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.gpsr-what-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.gpsr-what-img img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
}
.gpsr-what-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
  padding: 40px 32px 32px;
}
.reg-year {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 6px;
}
.reg-title {
  font-family: var(--font-display);
  font-size: 22px; color: var(--white); margin-bottom: 14px;
}
.reg-desc {
  color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.8;
  margin-bottom: 18px;
}
.reg-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 3px; margin: 3px 3px 0 0;
}
.bullet-list { list-style: none; margin-top: 28px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; color: #374151;
  line-height: 1.6;
}
.bullet-list li strong { display: inline; }
.bullet-list li::before {
  content: '';
  min-width: 20px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 1.5px solid var(--gold);
  flex-shrink: 0; margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.callout-box {
  margin-top: 32px; padding: 20px 24px;
  background: rgba(192,57,43,0.05); border-left: 4px solid var(--danger);
  border-radius: 0 8px 8px 0;
}
.callout-box strong { color: var(--danger); }
.callout-box p { font-size: 14px; color: #4a5568; margin-top: 6px; }

/* -- WHO IS COVERED -- */
.who-covered { background: var(--light-gray); }
.who-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 52px;
}
.who-card {
  background: var(--white); border-radius: 12px;
  padding: 32px 20px; text-align: center;
  border: 1px solid transparent;
  transition: all .3s; cursor: default;
  box-shadow: 0 2px 8px rgba(10,22,40,0.04);
}
.who-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
}
.who-icon { font-size: 34px; margin-bottom: 14px; }
.who-title { font-weight: 700; font-size: 14px; color: var(--navy); }
.who-note { font-size: 12px; color: var(--gray); margin-top: 6px; }
.warning-banner {
  background: linear-gradient(135deg, #c0392b, #922b21);
  color: var(--white); text-align: center;
  padding: 22px 32px; border-radius: 12px;
}
.warning-banner p { font-size: 15px; font-weight: 500; }
.warning-banner strong { color: #f1c40f; }

/* -- REQUIREMENTS -- */
.requirements {
  background: var(--white);
  position: relative;
}
.req-header { margin-bottom: 56px; }
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.step-card {
  border: 1px solid rgba(10,22,40,0.07);
  border-radius: 12px; padding: 36px;
  position: relative; overflow: hidden;
  transition: all .3s;
  background: var(--white);
}
.step-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(10,22,40,0.08);
  transform: translateY(-3px);
}
.step-card.full-width { grid-column: span 2; }
.step-num {
  font-family: var(--font-display); font-size: 56px;
  font-weight: 700; color: rgba(10,22,40,0.04);
  position: absolute; top: 8px; right: 20px;
  line-height: 1;
}
.step-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.step-desc {
  font-size: 14px; color: #4a5568; line-height: 1.8;
}
.step-tags { margin-top: 16px; }
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 3px; margin: 3px 3px 0 0;
}
.tag-gold { background: rgba(201,168,76,0.1); color: #8a6c1e; }
.tag-navy { background: rgba(10,22,40,0.06); color: var(--navy-mid); }

/* -- RISK TABLE (dark) -- */
.risk-table-section {
  background: #1e4470; padding: 100px 0;
  position: relative; overflow: hidden;
}
.risk-table-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.risk-table-section .section-title { color: var(--white); }
.risk-table-section .section-sub { color: rgba(255,255,255,0.55); }
.risk-table-section .section-divider { background: var(--gold); }
.risk-tbl {
  margin-top: 48px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}
.risk-tbl table { width: 100%; border-collapse: collapse; }
.risk-tbl th {
  background: rgba(201,168,76,0.12);
  padding: 18px 24px; text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
}
.risk-tbl td {
  padding: 0; font-size: 14px;
  border-top: 1px solid rgba(201,168,76,0.08);
  color: rgba(255,255,255,0.75);
  vertical-align: top;
}
.risk-tbl tr:hover td { background: rgba(255,255,255,0.02); }
.risk-tbl table { table-layout: fixed; }
.risk-tbl th:first-child, .risk-tbl td:first-child { width: 14%; text-align: center; }
.risk-tbl th:nth-child(2), .risk-tbl td:nth-child(2) { width: 34%; }
.risk-tbl th:nth-child(3), .risk-tbl td:nth-child(3) { width: 26%; }
.risk-tbl th:nth-child(4), .risk-tbl td:nth-child(4) { width: 26%; }
.risk-tbl td {
  vertical-align: middle;
  line-height: 1.7;
}
.risk-tbl-level-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.risk-tbl-level-bar {
  width: 4px; height: 28px; border-radius: 2px;
}
.risk-tbl-level-bar.bar-critical { background: #e74c3c; }
.risk-tbl-level-bar.bar-high { background: #e67e22; }
.risk-tbl-level-bar.bar-medium { background: #c9a84c; }
.risk-tbl-level-bar.bar-low { background: #27ae60; }
.risk-tbl-level-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--white);
}
.risk-tbl tr.row-critical td { background: rgba(231,76,60,0.04); }
.risk-tbl tr.row-high td { background: rgba(230,126,34,0.04); }
.risk-tbl tr.row-medium td { background: rgba(201,168,76,0.03); }
.risk-tbl tr.row-low td { background: rgba(39,174,96,0.03); }
.risk-tbl tr.row-critical:hover td { background: rgba(231,76,60,0.07); }
.risk-tbl tr.row-high:hover td { background: rgba(230,126,34,0.07); }
.risk-tbl tr.row-medium:hover td { background: rgba(201,168,76,0.06); }
.risk-tbl tr.row-low:hover td { background: rgba(39,174,96,0.06); }

/* -- CONSEQUENCES -- */
.consequences { background: #fafafa; }
.cons-header { margin-bottom: 56px; }
.cons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cons-card {
  background: var(--white); border-radius: 12px;
  padding: 32px 24px; text-align: center;
  border-top: 3px solid var(--danger);
  box-shadow: 0 2px 12px rgba(10,22,40,0.04);
  transition: all .3s;
}
.cons-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(192,57,43,0.1);
}
.cons-icon { font-size: 38px; margin-bottom: 16px; }
.cons-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.cons-text { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* -- RISK CARDS -- */
.risk-section { background: #f7f8fa; }
.risk-intro { max-width: 680px; margin-bottom: 52px; }
.risk-cards-grid {
  display: flex; flex-direction: column; gap: 18px;
}
.risk-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,22,40,0.05);
  border: 1px solid rgba(10,22,40,0.05);
  transition: transform .25s, box-shadow .25s;
}
.risk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.1);
}
.rc-header {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(10,22,40,0.05);
}
.rc-color-bar { width: 6px; flex-shrink: 0; align-self: stretch; }
.risk-card--critical .rc-color-bar { background: #c0392b; }
.risk-card--high     .rc-color-bar { background: #e67e22; }
.risk-card--medium   .rc-color-bar { background: #c9a84c; }
.risk-card--low      .rc-color-bar { background: #27ae60; }
.rc-title-block {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 28px;
}
.rc-icon { font-size: 28px; line-height: 1; }
.rc-level {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--navy);
  line-height: 1.1;
}
.rc-subtitle { font-size: 12px; color: var(--gray); letter-spacing: 0.3px; margin-top: 2px; }
.risk-card--critical .rc-header { background: rgba(192,57,43,0.03); }
.risk-card--high     .rc-header { background: rgba(230,126,34,0.03); }
.risk-card--medium   .rc-header { background: rgba(201,168,76,0.04); }
.risk-card--low      .rc-header { background: rgba(39,174,96,0.03); }
.rc-body {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 0;
}
.rc-col {
  padding: 24px 28px;
  border-right: 1px solid rgba(10,22,40,0.04);
}
.rc-col:last-child { border-right: none; }
.rc-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 10px;
}
.rc-text { font-size: 14px; color: #374151; line-height: 1.75; }
.rc-list { list-style: none; }
.rc-list li {
  font-size: 14px; color: #374151; line-height: 1.6;
  padding: 3px 0; display: flex; align-items: center; gap: 8px;
}
.rc-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; flex-shrink: 0;
}
.risk-card--critical .rc-list li::before { background: #c0392b; }
.risk-card--high     .rc-list li::before { background: #e67e22; }
.risk-card--medium   .rc-list li::before { background: #c9a84c; }
.risk-card--low      .rc-list li::before { background: #27ae60; }
.rc-footer {
  padding: 14px 28px 14px 34px;
  font-size: 13px; font-weight: 600;
  border-top: 1px solid rgba(10,22,40,0.04);
}
.rc-footer--critical { background: rgba(192,57,43,0.04); color: #922b21; }
.rc-footer--high     { background: rgba(230,126,34,0.04); color: #935116; }
.rc-footer--medium   { background: rgba(201,168,76,0.05); color: #7d6014; }
.rc-footer--low      { background: rgba(39,174,96,0.04);  color: #1a7a4a; }
.risk-footer-note {
  margin-top: 24px; padding: 18px 24px;
  background: var(--cream); border-radius: 10px;
  font-size: 13px; color: #4a5568;
  border-left: 3px solid var(--gold);
  line-height: 1.8;
}

/* -- REVIEW SCHEDULE -- */
.review-schedule {
  background: var(--white);
}
.review-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  margin-top: 52px;
}
.schedule-table {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
}
.schedule-table table { width: 100%; border-collapse: collapse; }
.schedule-table th {
  background: var(--navy); color: var(--gold);
  padding: 14px 20px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.schedule-table td {
  padding: 14px 20px; font-size: 13px; color: #374151;
  border-top: 1px solid rgba(10,22,40,0.06);
}
.schedule-table tr:hover td { background: rgba(201,168,76,0.04); }
.schedule-table .level-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; margin-right: 8px;
}
.dot-critical { background: #c0392b; }
.dot-high { background: #e67e22; }
.dot-medium { background: #c9a84c; }
.dot-low { background: #27ae60; }
.trigger-list {
  list-style: none;
}
.trigger-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.trigger-item:last-child { border-bottom: none; }
.trigger-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(201,168,76,0.1); color: var(--gold-dark);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trigger-text { font-size: 14px; color: #374151; line-height: 1.6; }
.trigger-text strong { color: var(--navy); }

/* -- PROCESS IMAGE SECTION -- */
.process-visual {
  position: relative;
  padding: 0;
  height: 360px;
  overflow: hidden;
}
.process-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.process-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(26,53,96,0.7) 100%);
  display: flex; align-items: center; justify-content: center;
}
.process-visual-content {
  text-align: center; max-width: 700px; padding: 0 32px;
}
.process-visual-content h2 {
  font-family: var(--font-display); font-size: 36px;
  color: var(--white); margin-bottom: 16px;
}
.process-visual-content p {
  color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.8;
}

/* -- WHY US -- */
.why-us { background: var(--light-gray); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.why-card {
  background: var(--white); border-radius: 12px;
  padding: 36px; border-bottom: 3px solid transparent;
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(10,22,40,0.03);
}
.why-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 16px 40px rgba(10,22,40,0.08);
  transform: translateY(-5px);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.why-title { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.why-text { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* -- CTA -- */
.cta-section {
  position: relative;
  text-align: center; padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('../images/industrial-ship-dock-lit-at-night.jpg') center/cover no-repeat;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(26,53,96,0.88) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display); font-size: 42px;
  color: var(--white); margin-bottom: 18px;
}
.cta-section p {
  color: rgba(255,255,255,0.6); font-size: 16px;
  margin-bottom: 44px; line-height: 1.8;
}
.cta-section .btn-primary { font-size: 15px; padding: 17px 44px; }

/* -- TESTIMONIALS -- */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.testi-card {
  border: 1px solid rgba(10,22,40,0.06); border-radius: 12px;
  padding: 32px; position: relative;
  transition: all .3s;
}
.testi-card:hover {
  box-shadow: 0 12px 36px rgba(10,22,40,0.08);
  transform: translateY(-3px);
}
.testi-card::before {
  content: '\201C'; font-family: var(--font-display);
  font-size: 80px; color: rgba(201,168,76,0.12);
  position: absolute; top: -10px; left: 20px; line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; padding-top: 12px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px; color: #4a5568; line-height: 1.8;
  margin-bottom: 20px;
}
.testi-author { font-weight: 700; font-size: 13px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray); }

/* -- CONTACT -- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 28px;
  color: var(--navy); margin-bottom: 20px;
}
.contact-info p { font-size: 15px; color: var(--gray); margin-bottom: 28px; line-height: 1.8; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-item-text { font-size: 14px; line-height: 1.6; }
.contact-item-text a { color: var(--navy); text-decoration: none; }
.contact-item-text a:hover { color: var(--gold); }
.contact-form {
  background: var(--white); border-radius: 14px;
  padding: 44px; box-shadow: 0 4px 40px rgba(10,22,40,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--navy);
  margin-bottom: 7px; text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(10,22,40,0.1); border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--navy);
  background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group .iti { width: 100%; }
.form-group .iti__tel-input { width: 100%; padding: 13px 16px 13px 52px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer; transition: all .25s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }

/* -- FOOTER -- */
footer {
  background: var(--navy); color: rgba(255,255,255,0.55);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 52px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.footer-desc { font-size: 14px; line-height: 1.8; max-width: 320px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* -- LANGUAGE SWITCHER -- */
.lang-switcher {
  display: flex; align-items: center; gap: 0; margin-left: 18px;
}
.lang-switcher a {
  color: var(--gray); text-decoration: none; font-size: 13px;
  font-weight: 600; letter-spacing: 0.5px; padding: 4px 8px;
  transition: color .2s;
}
.lang-switcher a.active { color: var(--gold); }
.lang-switcher a:hover { color: var(--gold-light); }
.lang-switcher span { color: rgba(10,22,40,0.2); font-size: 12px; }

/* -- HOME PAGE CARDS -- */
.home-cards {
  background: var(--light-gray);
  padding: 80px 0;
}
.home-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.home-card {
  background: var(--white); border-radius: 14px;
  padding: 36px 28px; text-align: center;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all .3s; text-decoration: none; color: inherit;
  display: block;
}
.home-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
  transform: translateY(-5px);
}
.home-card-icon { font-size: 38px; margin-bottom: 16px; }
.home-card h3 {
  font-family: var(--font-display); font-size: 18px;
  color: var(--navy); margin-bottom: 10px;
}
.home-card p {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  margin-bottom: 16px;
}
.home-card .card-link {
  color: var(--gold); font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px;
}

/* -- PAGE HERO (sub-pages) -- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero .section-label { color: var(--gold); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-sub { color: rgba(255,255,255,0.6); margin: 18px auto 0; }
.page-hero .section-divider { margin: 14px auto 0; }

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .home-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner, .gpsr-what-grid, .contact-grid,
  .footer-grid, .review-grid, .scope-columns { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .cons-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card.full-width { grid-column: span 1; }
  .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .rc-body { grid-template-columns: 1fr; }
  .rc-col { border-right: none; border-bottom: 1px solid rgba(10,22,40,0.04); }
  .rc-col:last-child { border-bottom: none; }
  .rp-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .home-cards-grid { grid-template-columns: 1fr; }
  .risk-tbl table { table-layout: auto; }
  .risk-tbl th, .risk-tbl td { display: block; width: 100% !important; text-align: left !important; }
  .risk-tbl thead { display: none; }
  .risk-tbl td { padding: 12px 20px; border-top: none; }
  .risk-tbl td:first-child { padding-top: 20px; background: rgba(201,168,76,0.08) !important; }
  .risk-tbl td::before { content: attr(data-label); display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .risk-tbl tr { border-bottom: 1px solid rgba(201,168,76,0.1); }
}
@media (max-width: 600px) {
  .who-grid { grid-template-columns: 1fr; }
  .cons-grid { grid-template-columns: 1fr; }
}
