/* ===================================
   BASE
=================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #0e1f2f;
  background: #ffffff;
}
html, body {
  overflow-x: hidden;
}
body {
  padding-top: 90px; /* όσο είναι το header height */
}
/* ===================================
   HEADER – CLEAN STICKY
=================================== */

header {
  background: #0e2438;
  color: #ffffff;
  padding: 22px 0;
  border-bottom: 3px solid #C7A33A;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);

  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.brand-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .6px;
}

.brand-subtitle {
  font-size: 13px;
  opacity: .85;
  letter-spacing: .3px;
  margin-top: 4px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

/* ===================================
   HERO
=================================== */
#hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 100px 60px;
  color: #ffffff;
  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      rgba(6, 18, 30, 0.58),
      rgba(6, 18, 30, 0.28)
    ),
    url("/images/hero.jpg") center / cover no-repeat;

  filter: contrast(1.12) brightness(0.92);
}
/* Vignette overlay για depth */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 40%,
    rgba(6, 18, 30, 0.35) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

#hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 12px 40px rgba(0,0,0,0.65);
}

#hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 30px auto;
}

/* ===================================
   HERO BUTTONS
=================================== */

.hero-actions {
  display: inline-flex;
  gap: 22px;
  padding: 22px 26px;
  background: rgba(8, 22, 36, 0.75);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}

.hero-actions .btn {
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #0B1F3B;
  color: #ffffff;
  border: 1px solid #0B1F3B;
}

.btn-primary:hover {
  background: #ffffff;
  color: #0B1F3B;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #0B1F3B;
  border: 1px solid #0B1F3B;
}

.btn-secondary:hover {
  background: #0B1F3B;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   RISK REVIEW BUTTONS
=================================== */

.risk-review-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ===================================
   FRAMEWORK BOXES
=================================== */

.framework-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 190px;
  padding: 25px 20px;
  text-align: center;
}

.step-number {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-subtitle {
  font-size: 15px;
  line-height: 1.35;
  max-width: 85%;
}

/* ===================================
   SECTIONS
=================================== */

section {
  padding: 100px 20px;
}

/* WIDE CONTAINER (για full layout sections) */
.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* CENTERED CONTAINER (για intro/text) */
.container-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ===================================
   FOOTER
=================================== */

footer {
  background: #020617;
  color: #cbd5e1;
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
}

/* ===================================
   MOBILE – FINAL CLEAN VERSION
=================================== */

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  /* ===============================
     HEADER
  =============================== */

  header {
    padding: 14px 12px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 11px;
    line-height: 1.3;
  }

  /* ===============================
     HERO
  =============================== */

  #hero {
    padding: 80px 22px 70px 22px;
    min-height: 75vh;
  }

  #hero h1 {
    font-size: 34px;
  }

  #hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* ===============================
     RISK REVIEW BUTTONS
  =============================== */

  .risk-review-buttons {
    flex-direction: column;
    align-items: center;
  }

  .risk-review-buttons a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* ===============================
     MEDIATION GRID
  =============================== */

  .mediation-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .mediation-grid .left {
    border-left: 3px solid #C7A33A;
    padding-left: 14px;
    font-weight: 600;
    margin-top: 18px;
  }

  .mediation-grid .right {
    margin-bottom: 24px;
  }

  /* ===============================
     CAPACITY GRID
  =============================== */

  .capacity-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .capacity-item {
    background: #f5f7fa;
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  }

  .capacity-number {
    font-size: 18px;
    letter-spacing: 2px;
    color: #C7A33A;
    font-weight: 600;
  }

  .capacity-content h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .capacity-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4f55;
  }

  /* ===============================
     METHOD GRID (CRITICAL FIX)
  =============================== */

  .method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .method-item {
    padding-left: 18px;
  }

  .method-item p {
    max-width: 100%;
  }

}
/* ===================================
   MODERN RISK ADVISORY REFINEMENT
=================================== */

section {
  padding: 100px 20px;
}

/* ONLY FOR MAIN SITE – EXCLUDE RER PAGE */

body:not(.rer-page) section:nth-of-type(even) {
  background: #f5f7fa;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
  font-size: 16px;
}

/* Clean centered lists */

section ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  text-align: center;
}

section ul li {
  margin-bottom: 12px;
  font-size: 16px;
  position: relative;
  padding-left: 0;
}

/* CTA Dark Block */

.cta-dark {
  background: #0e2438;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.cta-dark h2 {
  color: #ffffff;
}

.cta-dark .btn {
  margin: 10px;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-dark .btn-primary {
  background: #C7A33A;
  color: #0e2438;
}

.cta-dark .btn-primary:hover {
  background: #ffffff;
  color: #0e2438;
}

.cta-dark .btn-secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.cta-dark .btn-secondary:hover {
  background: #ffffff;
  color: #0e2438;
}
.cta-dark {
  position: relative;
  box-shadow: 0 -30px 60px rgba(0,0,0,0.25);
}

.cta-dark::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(14,36,56,1), rgba(2,6,23,1));
}

.cta-wrapper {
  text-align: center;
  margin-top: 30px;
}

.cta-private {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 360px;
  height: 54px;

  background-color: #C7A33A;
  color: #0B1F3B !important;

  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;

  border-radius: 4px;
  text-decoration: none !important;

  transition: all 0.25s ease;
}

.cta-private:hover {
  background-color: #d6b15a;
  transform: translateY(-2px);
}

.cta-private:active {
  transform: scale(0.98);
}
/* ===============================
   CINEMATIC HERO UPGRADE
================================ */


#hero .hero-content {
  position: relative;
  z-index: 2;
}

#hero h1 {
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

#hero p {
  opacity: 0.9;
}
/* Gold advisory accent */

.section-intro::before,
.cta-dark h2::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #C7A33A;
  margin: 0 auto 20px auto;
  border-radius: 2px;
}
/* Premium glow */

.btn-primary {
  box-shadow: 0 10px 25px rgba(199,163,58,0.25);
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(199,163,58,0.5);
  transform: translateY(-3px);
}

.btn-secondary:hover {
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}
/* Soft cinematic reveal */


section:nth-of-type(1) { animation-delay: 0.1s; }
section:nth-of-type(2) { animation-delay: 0.2s; }
section:nth-of-type(3) { animation-delay: 0.3s; }
section:nth-of-type(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.boutique-statement {
  padding: 80px 20px;
  background: #ffffff;
}

.boutique-statement p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: #1e293b;
}
.cta-filter {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}
.cta-note {
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.75;
  text-align: center;
}
.risk-review-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 34px;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #0B1F3B;
  color: #ffffff !important;
  border: 1px solid #0B1F3B;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.btn-primary:hover {
  background: #ffffff;
  color: #0B1F3B !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.75;
  text-align: center;
}
.cta-wrapper {
  text-align: center;
  margin-top: 36px;
}

.cta-private {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 360px;
  height: 54px;

  background: #C7A33A;
  color: #0B1F3B;

  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;

  border-radius: 4px;
  text-decoration: none;

  transition: all 0.25s ease;
}

.cta-private:hover {
  background: #d6b15a;
  transform: translateY(-2px);
}

.cta-private:active {
  transform: scale(0.98);
}

.breadcrumb {
  font-size: 13px;
  margin-bottom: 20px;
  color: #6b7280;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #0B1F3B;
}

.breadcrumb span {
  margin: 0 6px;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.7;
}
.private-page .breadcrumb {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.private-page .breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.private-page .breadcrumb a:hover {
  color: #C7A33A;
}

.private-page .breadcrumb span {
  margin: 0 6px;
}
.private-page .breadcrumb {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 40px;
  font-size: 13px;
  color: #ffffff;
}

.private-page .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.private-page .breadcrumb span {
  margin: 0 6px;
}
.hero {
  position: relative;
}

.hero .breadcrumb {
  position: absolute;
  top: 30px;
  left: 60px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.2s ease;
}

.hero .breadcrumb a:hover {
  color: #C7A33A;
}

.hero .breadcrumb span {
  margin: 0 6px;
}
.mediation-section {
  background: #f8f9fb;
}

.mediation-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mediation-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #0b1f36;
}

.mediation-section .intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
  font-size: 16px;
  line-height: 1.6;
}

.mediation-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  row-gap: 40px;
  column-gap: 40px;
  align-items: start;
}

.mediation-grid .left {
  font-weight: 600;
  color: #0b1f36;
}

.mediation-grid .right {
  line-height: 1.6;
  color: #333;
}
.mediation-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  row-gap: 45px;
  column-gap: 50px;
  align-items: start;
}

.mediation-grid .left {
  font-weight: 600;
  color: #0b1f36;
  position: relative;
  padding-left: 18px;
}

.mediation-grid .left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 20px;
  background: #C7A33A;
}

.mediation-grid .right {
  line-height: 1.7;
  color: #333;
}
.capacity-section {
  background: #f8f9fb;
  padding: 120px 20px;
}

.capacity-container {
  max-width: 1000px;
  margin: 0 auto;
}

.capacity-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
  color: #0b1f36;
}

.capacity-section .intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 90px auto;
  line-height: 1.6;
}

.capacity-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 50px;
  align-items: start;
  margin-bottom: 65px;
  position: relative;
}

.capacity-item::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #d9dde3;
}

.capacity-number {
  font-size: 36px;
  font-weight: 400;
  color: #C7A33A;
  letter-spacing: 2px;
}

.capacity-content h3 {
  margin-bottom: 14px;
  color: #0b1f36;
  font-size: 20px;
}

.capacity-content p {
  line-height: 1.7;
  color: #444;
  max-width: 600px;
}


.method-section {
  padding: 130px 20px;
  background: #f8f9fb;
}

.method-container {
  max-width: 1100px;
  margin: 0 auto;
}

.method-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
  color: #0b1f36;
}

.method-section .intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 90px auto;
  line-height: 1.6;
  font-size: 16px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 90px;
}

.method-item {
  border-left: 2px solid #e2e5ea;
  padding-left: 25px;
  position: relative;
}

.method-item .step {
  font-size: 13px;
  letter-spacing: 2px;
  color: #C7A33A;
  font-weight: 600;
  margin-bottom: 14px;
}

.method-item h3 {
  margin-bottom: 14px;
  color: #0b1f36;
  font-size: 20px;
}

.method-item p {
  line-height: 1.7;
  color: #333;
  max-width: 460px;
}
.hero-content {
  animation: fadeUp 0.9s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CONTAINER (κλειδώνει τα κενά δεξιά-αριστερά) */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION */
.section-light {
  padding: 70px 20px;
  background: #f8fafc;
}

/* INNER BOX (δώσε “βάρος” στο content) */
.section-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* INTRO */
.section-intro {
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* LIST */
.structured-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
}

.structured-list li {
  margin-bottom: 10px;
  font-size: 15.5px;
  color: #1f2d3a;
}

.section-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.container-wide-clean {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* GRID STRUCTURE */
.client-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  row-gap: 40px;
  column-gap: 60px;
  margin-top: 60px;
}

/* LEFT COLUMN */
.client-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1f36;
}

/* RIGHT COLUMN */
.client-item p {
  margin-top: 8px;
  line-height: 1.7;
  color: #333;
  max-width: 600px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  margin-top: 60px;
}

/* ΚΑΝΕ ΤΟ CONTENT ΝΑ ΜΗΝ FLOATAREI */
.client-item {
  max-width: 520px;
}

/* ΑΡΙΣΤΕΡΗ ΣΤΗΛΗ */
.client-item:nth-child(odd) {
  justify-self: start;
  text-align: left;
}

/* ΔΕΞΙΑ ΣΤΗΛΗ */
.client-item:nth-child(even) {
  justify-self: end;
  text-align: left;
}

.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  margin-top: 60px;
}

.reg-item {
  max-width: 520px;
}

.reg-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1f36;
  position: relative;
  padding-left: 14px;
}

/* gold accent */
.reg-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 16px;
  background: #C7A33A;
}

.reg-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {

  section {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

}

@media (max-width: 768px) {

  section {
    padding: 70px 18px !important;
  }

  .method-section,
  .capacity-section,
  .cta-dark {
    padding: 80px 18px !important;
  }

}

@media (max-width: 768px) {

  .cta-private {
    width: 100% !important;
    max-width: 320px;
  }

}

@media (max-width: 768px) {

  .container-wide,
  .container-wide-clean,
  .method-container,
  .capacity-container,
  .mediation-container {
    padding: 0 16px;
    max-width: 100%;
  }

}

@media (max-width: 768px) {

  .method-grid,
  .capacity-grid,
  .mediation-grid,
  .client-grid,
  .regulatory-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

}

@media (max-width: 768px) {

  body {
    padding-top: 80px;
  }

}

@media (max-width: 768px) {

  #hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }

  #hero h1 {
    font-size: 32px;
  }

  #hero p {
    font-size: 15px;
  }

}

/* ===================================
   CLEAN FIX – NO CONFLICTS
=================================== */

/* 1. Ακύρωση μόνο animation (όχι όλο το section) */
.fade-in,
.reveal,
.animate,
.scroll,
.show,
.hidden {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* 2. ΔΙΚΑ ΣΟΥ SECTIONS ΜΟΝΟ */

.rer-trust,
.rer-proof,
.rer-section,
.rer-form {
  position: relative;
  z-index: 2;
  background: #0b1220;
  opacity: 1;
}

/* 3. HERO stays κάτω */
.rer-hero {
  position: relative;
  z-index: 1;
}

/* 4. TEXT FIX */

.rer-trust h2,
.rer-proof h2,
.rer-section h2,
.rer-form h2 {
  color: #ffffff;
}

.rer-trust-text {
  color: #cbd5e1;
}

/* FORCE DARK FOR RER */

.rer-page section {
  background: #0b1220 !important;
}

/* ===================================
   HARD OVERRIDE – RER PAGE ONLY
=================================== */

.rer-page section {
  background: #0b1220 !important;
  color: #ffffff !important;
}

.rer-page p {
  color: #cbd5e1 !important;
}

.rer-page h2,
.rer-page h3 {
  color: #ffffff !important;
}

/* override even sections */
.rer-page section:nth-of-type(even) {
  background: #0b1220 !important;
}

.rer-trust {
  background: #020617; /* πιο καθαρό dark */
  padding: 120px 20px;
  position: relative;
}

/* Δίνουμε ένταση στο title */
.rer-trust h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Κείμενο πιο έντονο */
.rer-trust-text {
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* 🔥 subtle glow για να ξεχωρίζει */
.rer-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 70%);
  pointer-events: none;
}

/* HERO UPGRADE */

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.hero-description {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: #e2e8f0;
}

.hero-proof {
  margin-top: 35px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.proof-item {
  position: relative;
  padding-left: 18px;
}

.proof-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #facc15;
}

.btn-premium{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#d8a528;
    color:#0b1f33 !important;

    font-weight:700;
    font-size:15px;

    text-decoration:none;

    border:2px solid #d8a528;
    border-radius:8px;

    padding:16px 34px;

    box-shadow:0 0 20px rgba(216,165,40,.35);

    transition:.3s ease;
}

.btn-premium:hover{
    background:#f0bc35;
    color:#06111f !important;
    transform:translateY(-2px);
    box-shadow:0 0 28px rgba(216,165,40,.55);
}
.law5116-highlight{
  background:#f4f6f9;
  padding:70px 20px;
}

.law5116-highlight{
  padding:55px 20px 35px;
}

.law5116-card{
  max-width:900px;
  margin:0 auto;
  padding:42px 34px;
  text-align:center;
  background:rgba(11,31,51,.88);
  border:2px solid #d8a528;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(11,31,51,.35);
  backdrop-filter:blur(8px);
}

.law-badge{
  display:inline-block;
  background:#d8a528;
  color:#06111f;
  font-weight:800;
  padding:7px 18px;
  border-radius:999px;
  margin-bottom:20px;
}

.law5116-card h2{
  color:#ffffff;
  margin:0 0 18px;
  font-size:2rem;
  line-height:1.25;
}

.law5116-card p{
  color:#d7deea;
  max-width:720px;
  margin:0 auto 24px;
  line-height:1.7;
}

.btn-law{
  display:inline-block;
  background:#d8a528;
  color:#06111f !important;
  font-weight:800;
  text-decoration:none;
  padding:15px 32px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(216,165,40,.28);
}

.btn-law:hover{
  background:#f0bc35;
  transform:translateY(-2px);
}

.specialized-solutions{
margin-top:45px;
text-align:center;
}

.specialized-solutions h3{
color:#ffffff;
font-size:1.2rem;
margin-bottom:25px;
font-weight:700;
letter-spacing:.5px;
}

.solutions-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:15px;
max-width:1100px;
margin:0 auto;
}

.solution-card{
background:rgba(255,255,255,.08);
border:1px solid rgba(216,165,40,.25);
border-radius:14px;
padding:20px 15px;
text-decoration:none;
color:#ffffff;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
font-size:14px;
font-weight:600;
transition:.25s;
backdrop-filter:blur(8px);
}

.solution-card:hover{
transform:translateY(-4px);
border-color:#d8a528;
background:rgba(216,165,40,.10);
box-shadow:0 10px 25px rgba(216,165,40,.15);
}

.solution-card span{
display:block;
line-height:1.4;
}

@media(max-width:992px){

.solutions-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.solutions-grid{
grid-template-columns:1fr;
}

}

/* =========================
   SPECIALIZED SOLUTIONS
========================= */

.solutions-section{
background:#f4f6f9;
padding:90px 20px;
}

.solutions-container{
max-width:1280px;
margin:0 auto;
}

.solutions-container h2{
text-align:center;
font-size:42px;
color:#0b1f33;
margin-bottom:15px;
}

.solutions-intro{
max-width:800px;
margin:0 auto 60px;
text-align:center;
color:#64748b;
font-size:18px;
line-height:1.8;
}

.solutions-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.solution-card{
background:#ffffff;
padding:35px;
border-radius:18px;
text-decoration:none;
border:1px solid #e2e8f0;
box-shadow:0 10px 30px rgba(15,23,42,.06);
transition:.25s;
color:inherit;
}

.solution-card:hover{
transform:translateY(-6px);
border-color:#d8a528;
box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.solution-icon{
font-size:42px;
margin-bottom:15px;
}

.solution-card h3{
color:#0b1f33;
margin-bottom:12px;
font-size:22px;
}

.solution-card p{
color:#64748b;
line-height:1.7;
font-size:15px;
}

@media(max-width:768px){

.solutions-container h2{
font-size:32px;
}

.solutions-section{
padding:60px 20px;
}

}