:root {
  --navy: #061b33;
  --navy2: #09264a;
  --gold: #d9a33d;
  --gold2: #f0b84f;
  --white: #ffffff;
  --muted: #c6d0df;
  --panel: rgba(2, 20, 42, 0.58);
  --border: rgba(217, 163, 61, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top right, #164674 0%, var(--navy) 42%, #031224 100%);
  color: var(--white);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.contact-bar {
  background: linear-gradient(180deg, #e2ad4b, #c88e28);
  color: #090909;
  text-align: center;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.2;
}

.contact-bar a {
  color: #090909;
  text-decoration: none;
}

.contact-bar a:hover {
  text-decoration: underline;
}

.contact-bar span {
  display: inline-block;
  margin: 0 24px;
}

.logo-section {
  background: #ffffff;
  text-align: center;
  padding: 34px 20px 30px;
}

.main-logo {
  width: min(380px, 82vw);
  height: auto;
  display: inline-block;
}

.top-nav {
  background: linear-gradient(90deg, #061b33, #09284d);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 12%;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #101010;
  padding: 15px 30px;
  border-radius: 13px;
  font-weight: 900;
  border: 1px solid var(--gold);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn.small {
  padding: 14px 32px;
  font-size: 18px;
}

.btn.ghost {
  background: transparent;
  color: var(--gold2);
  border-color: var(--gold2);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 72px 8% 74px;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 420px;
  height: 240px;
  opacity: 0.16;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 15px,
      var(--gold) 16px 18px,
      transparent 19px 24px
    );
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 70%);
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 900;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  margin: 0;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  text-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

.hero-line {
  width: 88px;
  height: 5px;
  background: var(--gold2);
  margin: 30px 0 22px;
}

.lead {
  font-size: 21px;
  line-height: 1.45;
  color: var(--white);
  max-width: 520px;
  margin: 0;
}

.actions {
  display: flex;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.process-card {
  position: relative;
  z-index: 1;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background: rgba(2, 22, 45, 0.56);
  box-shadow: 0 22px 70px rgba(0,0,0,0.26);
  overflow: hidden;
}

.process-card h2 {
  color: var(--gold2);
  text-align: center;
  margin: 0;
  padding: 34px 20px 18px;
  font-size: 25px;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px 40px 36px;
}

.process-step {
  text-align: center;
}

.circle-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border: 2px solid var(--gold2);
  border-radius: 999px;
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 45px;
  line-height: 1;
}

.process-step p {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.arrow {
  color: var(--gold2);
  font-size: 27px;
  font-weight: 900;
  padding-top: 34px;
}

.feature-row {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-row div {
  color: var(--white);
  font-weight: 800;
  text-align: center;
  padding: 26px 12px;
  border-right: 1px solid rgba(217, 163, 61, 0.45);
}

.feature-row div:last-child {
  border-right: none;
}

.section {
  padding: 54px 7% 68px;
}

.section h2 {
  font-size: 38px;
  margin: 0 0 24px;
  color: var(--white);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.20);
}

.card h3 {
  color: var(--gold2);
  margin-top: 0;
}

.card p {
  color: var(--muted);
  line-height: 1.5;
}

footer {
  padding: 28px 7%;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.form-wrap {
  max-width: 430px;
  margin: 70px auto;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  margin: 8px 0 16px;
  background: rgba(255,255,255,0.08);
  color: white;
}

label {
  color: var(--muted);
  font-size: 14px;
}

.error {
  color: #ffb3b3;
  margin-top: 12px;
}

.success {
  color: #b6ffc2;
  margin-top: 12px;
}

.dashboard {
  padding: 30px 7%;
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}

.table th {
  color: var(--gold2);
}

@media (max-width: 980px) {
  .hero,
  .grid,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: center;
    padding: 18px 7%;
  }

  .process-flow {
    grid-template-columns: 1fr;
    padding: 20px 24px 34px;
  }

  .arrow {
    padding: 0;
    transform: rotate(90deg);
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row div {
    border-right: none;
    border-bottom: 1px solid rgba(217, 163, 61, 0.45);
  }

  .feature-row div:last-child {
    border-bottom: none;
  }

  .contact-bar {
    font-size: 16px;
  }

  .contact-bar span {
    margin: 0 8px;
  }
}
