:root {
  --primary: #002e5d; /* French Navy Blue */
  --primary-dark: #001a36;
  --gold: #d4af37; /* Noble Gold */
  --gold-light: #f3e5ab;
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --text: #333333;
  --border: #e0e0e0;
  --font-head: "Libre Baskerville", serif;
  --font-body: "Montserrat", sans-serif;
  --shadow: 0 10px 30px rgba(0, 46, 93, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #555;
}

.italic-gold {
  font-style: italic;
  color: var(--gold);
}
.text-white {
  color: #fff !important;
}
.text-white h2,
.text-white p {
  color: #fff;
}

/* Buttons */
.btn-corp {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--primary);
  transition: 0.3s;
  cursor: pointer;
}

.btn-corp:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
}

.btn-outline {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-gold {
  display: inline-block;
  padding: 14px 35px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
}
.btn-gold:hover {
  background: #fff;
  color: var(--primary);
}

.btn-corp.lg,
.btn-outline.lg {
  padding: 18px 45px;
  font-size: 1.1rem;
}
.btn-corp.full {
  width: 100%;
  text-align: center;
}
.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 20px;
}
.link-gold:hover {
  color: var(--primary);
}

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  padding: 8px 0;
}
.tb-inner {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.tb-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Header */
.corp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.ch-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-sq {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-body);
  border: 2px solid var(--gold);
}
.logo-txt {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  font-size: 1.2rem;
}

.desk-menu {
  display: flex;
  gap: 30px;
}
.nav-lnk {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
}
.nav-lnk:hover {
  color: var(--gold);
}

.header-act {
  display: flex;
  align-items: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  margin-left: 20px;
}
.b-line {
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

/* Mobile Drawer */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transform: translateX(-100%);
  transition: 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.drawer.active {
  transform: translateX(0);
}

.dr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}
.dr-head span {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.2rem;
}
#closeDrawer {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
}

.dr-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.dr-body a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
}
.dr-cta {
  color: var(--gold) !important;
  margin-top: 20px;
  font-style: italic;
}

.dr-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: #888;
  text-align: center;
}

/* Hero */
.hero-corp {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.overlay-grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 40%,
    rgba(255, 255, 255, 0.6) 100%
  );
  z-index: -1;
}

.hero-pre {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary);
  padding-left: 15px;
}

.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.btn-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hc-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.stat-card {
  background: var(--white);
  padding: 25px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
}
.sc-icon {
  color: var(--primary);
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
}
.stat-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  font-family: var(--font-head);
}
.stat-card span {
  font-size: 0.9rem;
  color: #666;
}

/* Ticker */
.corp-ticker {
  background: var(--primary);
  color: var(--white);
  padding: 15px 0;
  overflow: hidden;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.track {
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.dot {
  color: var(--gold);
  margin: 0 20px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Section Generic */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.bg-light {
  background: var(--light-bg);
}
.bg-blue {
  background: var(--primary);
  color: #fff;
}

.sec-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.shr-left h2 {
  margin-bottom: 10px;
}
.gold-line {
  width: 100px;
  height: 4px;
  background: var(--gold);
}
.shr-right {
  max-width: 500px;
}

.sec-head-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-auto-rows: minmax(300px, auto);
}

.b-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.b-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.b-item.large {
  grid-column: span 2;
  background: var(--primary);
  color: #fff;
}
.b-item.large h3 {
  color: #fff;
}
.b-item.large p {
  color: rgba(255, 255, 255, 0.8);
}
.b-item.large .bi-icon {
  color: var(--gold);
}
.b-item.large .bi-link {
  color: var(--gold);
}

.b-item.wide {
  grid-column: span 3;
  background: var(--light-bg);
}

.bi-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.bi-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.row-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.rf-txt {
  max-width: 60%;
}

/* Journal */
.journal-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.main-article {
  background: var(--white);
  box-shadow: var(--shadow);
}
.ma-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.ma-body {
  padding: 40px;
}
.meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}
.cat {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.read-btn {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
}

.side-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sa-item {
  background: var(--white);
  padding: 30px;
  border-left: 4px solid var(--border);
  transition: 0.3s;
}
.sa-item:hover {
  border-left-color: var(--gold);
}
.sa-item .date {
  font-size: 0.75rem;
  color: #999;
}
.sa-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 10px 0;
  color: var(--primary);
}
.sa-link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* Solutions / Passive Income */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.label-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 5px 10px;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 20px;
}
.gold-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}
.gold-list i {
  color: var(--gold);
  width: 20px;
}
.mt-40 {
  margin-top: 40px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.gp-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--gold);
}
.gp-graph {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  height: 150px;
  margin-bottom: 30px;
}
.bar {
  width: 100%;
  background: var(--gold);
  opacity: 0.8;
  border-radius: 4px 4px 0 0;
}
.b1 {
  height: 40%;
}
.b2 {
  height: 60%;
}
.b3 {
  height: 50%;
}
.b4 {
  height: 80%;
}
.b5 {
  height: 100%;
  background: #fff;
}
.gp-foot strong {
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step-card {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border);
}
.step-idx {
  display: block;
  font-size: 3rem;
  font-family: var(--font-head);
  color: var(--light-bg);
  margin-bottom: 20px;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--primary);
}

/* FAQ */
.narrow-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.corp-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.acc-item {
  background: var(--white);
  border: 1px solid var(--border);
}
.acc-trigger {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
}
.acc-trigger::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
}
.acc-trigger.active::after {
  content: "-";
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  background: #fafafa;
}
.acc-content p {
  padding: 0 25px 25px;
  margin: 0;
}

/* Form */
.form-block-corp {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.office-info {
  margin-top: 40px;
}
.office-info h5 {
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.mt-20 {
  margin-top: 20px;
}
.office-info a {
  color: var(--primary);
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.strict-form {
  background: var(--light-bg);
  padding: 50px;
  border-top: 5px solid var(--primary);
}
.inp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inp-group {
  margin-bottom: 25px;
}
.inp-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
  text-transform: uppercase;
}
.inp-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}
.inp-group input:focus {
  border-color: var(--gold);
  outline: none;
}

.error-msg {
  color: #d9534f;
  font-size: 0.75rem;
  display: none;
  margin-top: 5px;
}
.inp-group.error input {
  border-color: #d9534f;
}
.inp-group.error .error-msg {
  display: block;
}

.cap-wrap input {
  width: 100px;
}

.check-group {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.check-group label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
}
.check-group a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.corp-footer {
  background: #00152e;
  color: #fff;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.f-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  margin-bottom: 15px;
}
.main-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.soc-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.soc-icons a {
  color: var(--gold);
}
.soc-icons a:hover {
  color: #fff;
}

.f-col h5 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.f-col li {
  margin-bottom: 12px;
}
.f-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.f-col a:hover {
  color: #fff;
  padding-left: 5px;
}
.hl {
  color: #fff !important;
  font-weight: 700;
}

.contact-col p {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
}
.contact-col i {
  width: 18px;
  color: var(--gold);
}
.contact-col a {
  display: inline;
  color: rgba(255, 255, 255, 0.8);
}

.f-btm {
  background: #000b1a;
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Cookie */
.cookie-box {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--primary);
  z-index: 9999;
  display: none;
  width: 320px;
}
.cb-inner button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-cols {
    grid-template-columns: 1fr;
  }
  .btn-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .sec-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hc-right {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .b-item.large,
  .b-item.wide {
    grid-column: auto;
  }
  .journal-layout {
    grid-template-columns: 1fr;
  }
  .sol-grid {
    grid-template-columns: 1fr;
  }
  .form-block-corp {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .row-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .desk-menu,
  .header-act .btn-corp,
  .header-act .link-gold {
    display: none;
  }
  .burger {
    display: flex;
  }
  .shr-left h2 {
    font-size: 2rem;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  .inp-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.8rem;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
