:root {
  --navy: #071c30;
  --navy-2: #0d2b45;
  --gold: #c9a84c;
  --gold-soft: #ddc986;
  --ivory: #f7f4ec;
  --ink: #142638;
  --muted: #667482;
  --white: #fff;
  --green: #1f7a5a;
  --warn: #c98721;
  --red: #a94343;
  --line: rgba(7, 28, 48, 0.12);
  --shadow: 0 24px 70px rgba(7, 28, 48, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.77rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}
.display {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 24px 0;
}
.gold {
  color: var(--gold);
}
.lead {
  font-size: 1.12rem;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.topbar {
  background: #061727;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}
.topbar .container {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar strong {
  color: var(--gold);
  letter-spacing: 0.08em;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 28, 48, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.navwrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-mark span {
  color: var(--gold);
}
.brand-sub {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}
.nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.nav a:hover {
  color: #fff;
}
.nav .login {
  color: var(--gold);
  font-weight: 500;
}
.nav .cta,
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 21px;
  border-radius: 7px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
}
.nav-dropdown{position:relative}.nav-dropdown-toggle{border:0;background:transparent;color:inherit;padding:10px 0;font:inherit;cursor:pointer}.nav-dropdown-toggle i{font-size:.62rem;margin-left:5px;transition:.2s}.nav-dropdown:hover .nav-dropdown-toggle i,.nav-dropdown:focus-within .nav-dropdown-toggle i{transform:rotate(180deg)}.nav-dropdown-menu{position:absolute;top:calc(100% + 17px);left:-25px;width:340px;padding:10px;background:#fff;color:var(--ink);border:1px solid var(--line);border-radius:12px;box-shadow:0 22px 60px rgba(0,0,0,.22);opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s}.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu,.nav-dropdown.open .nav-dropdown-menu{opacity:1;visibility:visible;transform:none}.nav-dropdown-menu>a{display:flex;gap:13px;align-items:flex-start;padding:13px;border-radius:8px}.nav-dropdown-menu>a:hover{background:var(--ivory);color:var(--navy)}.nav-dropdown-menu>a>i{color:var(--gold);width:20px;margin-top:3px}.nav-dropdown-menu b{display:block;font-size:.8rem}.nav-dropdown-menu small{display:block;color:var(--muted);font-size:.65rem;font-weight:400;margin-top:2px}.nav-dropdown-menu .view-all{border-top:1px solid var(--line);border-radius:0;margin-top:5px;color:var(--navy);font-weight:700;font-size:.72rem;justify-content:space-between}.nav-dropdown-menu .view-all i{margin:2px 0 0}
.ip-section{background:#fff}.ip-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.ip-card{display:block;padding:25px;border:1px solid var(--line);border-radius:11px;background:var(--ivory);transition:.2s}.ip-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}.ip-card>span{color:var(--gold);font-size:.65rem;font-weight:800;letter-spacing:.12em}.ip-card h3{font-family:"Playfair Display",serif;font-size:1.3rem;line-height:1.15;margin:12px 0}.ip-card p{font-size:.76rem;color:var(--muted);margin:0}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 105px 0 92px;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 83% 20%,
      rgba(201, 168, 76, 0.08),
      transparent 25%
    ),
    linear-gradient(
      115deg,
      transparent 55%,
      rgba(255, 255, 255, 0.025) 55% 56%,
      transparent 56%
    );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 21px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 0.9rem;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.hero-notes {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}
.hero-notes i {
  color: var(--gold);
  margin-right: 7px;
}
.command-card {
  background: linear-gradient(155deg, #fff, #f2efe7);
  color: var(--ink);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
  transform: rotate(1deg);
}
.command-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.command-title {
  font-weight: 800;
}
.status {
  padding: 6px 9px;
  border-radius: 99px;
  background: rgba(31, 122, 90, 0.1);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}
.score-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
}
.score {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--gold) 0 78%, #dedbd3 78%);
  position: relative;
}
.score:before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}
.score strong {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
}
.score-copy h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}
.score-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.metric-list {
  display: grid;
  gap: 9px;
}
.metric {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(7, 28, 48, 0.07);
}
.metric i {
  color: var(--gold);
}
.metric span {
  font-size: 0.76rem;
  font-weight: 700;
}
.metric b {
  font-size: 0.7rem;
}
.ok {
  color: var(--green);
}
.warning {
  color: var(--warn);
}
.proof {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.proof-item {
  padding: 10px 24px;
  border-right: 1px solid var(--line);
}
.proof-item:first-child {
  padding-left: 0;
}
.proof-item:last-child {
  border: 0;
}
.proof-item b {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}
.proof-item span {
  font-size: 0.72rem;
  color: var(--muted);
}
.section {
  padding: 100px 0;
}
.section-ivory {
  background: var(--ivory);
}
.section-navy {
  background: var(--navy);
  color: #fff;
}
.section-head {
  max-width: 750px;
  margin-bottom: 45px;
}
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 17px 0;
}
.section-head p {
  color: var(--muted);
  max-width: 650px;
}
.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.62);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 12px;
  transition: 0.25s;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.42);
}
.number {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gold);
}
.problem-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 18px 0 10px;
}
.problem-card p {
  font-size: 0.82rem;
  color: var(--muted);
  min-height: 78px;
}
.text-link {
  font-size: 0.79rem;
  font-weight: 800;
  color: var(--navy);
}
.text-link i {
  color: var(--gold);
  margin-left: 5px;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}
.system-step {
  padding: 34px 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.system-step:last-child {
  border: 0;
}
.system-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-soft);
}
.system-step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}
.system-step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}
.system-step small {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lane {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px;
  background: #fff;
}
.lane.featured {
  background: var(--navy);
  color: #fff;
  transform: translateY(-8px);
}
.lane-tag {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--gold);
}
.lane h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  margin: 15px 0;
}
.lane p {
  font-size: 0.84rem;
  color: var(--muted);
}
.lane.featured p {
  color: rgba(255, 255, 255, 0.62);
}
.lane ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.lane li {
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.lane.featured li {
  border-color: rgba(255, 255, 255, 0.1);
}
.lane li i {
  color: var(--gold);
  margin-right: 9px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry {
  min-height: 310px;
  padding: 32px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}
.industry:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 50%;
  right: -80px;
  top: -80px;
}
.industry i {
  font-size: 1.5rem;
  color: var(--gold);
}
.industry h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  margin: 18px 0 8px;
}
.industry p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.assessment {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.assessment-box {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow);
}
.assessment-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-top: 0;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.check {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
}
.check i {
  color: var(--gold);
  margin-right: 8px;
}
.assessment .section-head {
  margin: 0;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case {
  border-top: 3px solid var(--gold);
  padding: 27px;
  background: #fff;
}
.case small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
}
.case h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}
.case p {
  font-size: 0.8rem;
  color: var(--muted);
}
.final-cta {
  padding: 80px 0;
  background: linear-gradient(110deg, var(--navy), var(--navy-2));
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 15px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.65);
}
.final-cta .actions {
  justify-content: center;
}
.footer {
  background: #04131f;
  color: rgba(255, 255, 255, 0.58);
  padding: 65px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer a,
.footer li {
  font-size: 0.78rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 45px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
}
.whatsapp {
  position: fixed;
  right: 23px;
  bottom: 23px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.4rem;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 960px) {
  .ip-grid{grid-template-columns:1fr 1fr}
  .nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-grid,
  .assessment {
    grid-template-columns: 1fr;
  }
  .command-card {
    max-width: 620px;
    transform: none;
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .system-grid {
    grid-template-columns: 1fr 1fr;
  }
  .system-step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .lane-grid,
  .industry-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .lane.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .ip-grid{grid-template-columns:1fr}
  .container {
    width: min(100% - 28px, 1180px);
  }
  .topbar .container {
    justify-content: center;
  }
  .topbar span:last-child {
    display: none;
  }
  .navwrap {
    height: 70px;
  }
  .brand-sub {
    display: none;
  }
  .hero {
    padding: 70px 0;
  }
  .display {
    font-size: 2.65rem;
  }
  .hero-notes {
    display: grid;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-item {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 72px 0;
  }
  .problem-grid,
  .system-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
  .system-step {
    border-right: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .score-row {
    grid-template-columns: 1fr;
  }
  .score {
    margin: auto;
  }
}
