:root{
  /* Base (bright) */
  --bg: #fffbf1;
  --panel: #ffffff;
  --card: #ffffff;
  --alt: #c8d7f0;

  --text: #111827;
  --muted: #5f6b7a;
  --line: #e3e8f0;

  /*
    Brand accents (tuned from your logo):
    - Navy: ~ #10152d
    - Magenta: ~ #ad023e
  */
  --brand-navy: #19224d;
  --brand-navy-2: #22327e; /* slightly brighter navy for interactive states */
  --brand-magenta: #ad023e;
  --brand-magenta-2: #c30045; /* hover/gradient partner */

  /* Functional accents (map UI to brand) */
  --accent: var(--brand-navy-2);
  --accent2: var(--brand-magenta);
  --shadow: 0 10px 28px rgba(16, 21, 45, 0.10);

  --radius: 14px;
  --radius2: 18px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% -12%, rgba(16,21,45,.10), transparent 62%),
    radial-gradient(780px 420px at 90% 0%, rgba(173,2,62,.10), transparent 58%),
    var(--bg);
}

a{ color: var(--brand-magenta); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section{ padding: 72px 0; }

.section--alt{
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  /* background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00)); */
}

.section-head{
  max-width: 760px;
  margin-bottom: 26px;
}
.section-head h2{
  position: relative;
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}


/* Brand underline */
.section-head h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 200px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-magenta),
    rgba(255, 229, 238, 0.55)
  );
}

.section-head p{
  margin:0;
  color: var(--muted);
}

.site-header{ padding: 22px 0 36px; }

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 24px;
}

.brand{
  display: inline-flex;
  align-items: baseline; /* key change */
  gap: 12px;
  font-weight: 800;
}

.brand-logo{
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: baseline; /* aligns image to text baseline  */
}

.brand-name{
    transform: translateY(-4px);
    font-weight: bold;
}

.brand-mark{
  width: 45px;
  height: 45px;
  display:grid;
  place-items:center;
  border-radius: 12px;

  /* Logo-inspired navy→magenta */
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-navy));
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-links a{
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
}
.nav-links a:hover{
  background: rgba(16,21,45,.06);
  color: var(--brand-navy);
  text-decoration:none;
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy h1{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}

.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.trust{
  list-style:none;
  padding:0;
  margin: 16px 0 0;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust li{
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 20px;
}

.card__price{
  margin-top: 12px;
  display:flex;
  align-items: baseline;
  gap: 6px;
}

.price{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

.unit{
  color: var(--muted);
  font-size: 14px;
}

.badge{
  display:inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(173,2,62,.10);
  color: var(--brand-magenta);
  border: 1px solid rgba(173,2,62,.18);
  margin-bottom: 10px;
}

.badge--strong{
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-navy));
  color: #fff;
  border: none;
}

.card--highlight{
  border-color: rgba(173,2,62,.22); /* magenta hint */
  box-shadow: 0 14px 34px rgba(173,2,62,.08);
}

.card--hosted{
  border-color: rgba(16,21,45,.18); /* navy hint */
}

.hero-card{
  background: #ffffff;
  border: 2px solid rgba(173,2,62,.22);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: 0 16px 42px rgba(16,21,45,.10);
}

.hero-card__tag{
  display:inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(173,2,62,.10);
  color: var(--brand-magenta);
  border: 1px solid rgba(173,2,62,.18);
  margin-bottom: 10px;
}

.checklist{
  list-style:none;
  padding:0;
  margin: 16px 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--brand-magenta);
  font-weight: 900;
}

.grid{ display:grid; gap: 16px; }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.panel{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--brand-navy);
  background: linear-gradient(135deg, var(--brand-navy-2), var(--brand-navy));
  color: #fff;
  font-weight: 800;
  cursor:pointer;
}
.btn:hover{
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-navy-2));
  border-color: rgba(173,2,62,.55);
  text-decoration:none;
}

.btn--ghost{
  background: #fff;
  color: var(--brand-navy);
  border-color: rgba(16,21,45,.28);
}

.btn--ghost:hover{
  background: rgba(16,21,45,.04);
  border-color: rgba(173,2,62,.40);
}

.btn--small{ padding: 10px 14px; }
.btn--full{ width: 100%; }

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-card .btn {
  margin-top: auto;
}
.compare{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare th,
.compare td{
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.compare thead th{
  background: linear-gradient(90deg, rgba(16,21,45,.06), rgba(173,2,62,.06));
  font-weight: 800;
  color: var(--brand-navy);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contact-card{
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
}
.contact-note{
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

input, select, textarea{
  width:100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
input:focus,
select:focus,
textarea:focus{
  border-color: rgba(173,2,62,.55);
  outline: none;
  box-shadow: 0 0 0 3px rgba(173,2,62,.14);
}

.site-footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}


/* Responsive */
/* Scorecard CTA Section */
.section--highlight{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scorecard-cta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.scorecard-cta__content h2{
  color: white;
  margin: 0 0 16px;
  font-size: 32px;
}

.scorecard-cta__content p{
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.scorecard-cta .benefits{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.scorecard-cta .benefits li{
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
}

.scorecard-cta .benefits li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.scorecard-cta__visual{
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-badge{
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.badge-number{
  font-size: 48px;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.badge-label{
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn--large{
  font-size: 16px;
  padding: 12px 32px;
}

@media (max-width: 980px){
  .scorecard-cta{ grid-template-columns: 1fr; }
  .scorecard-cta__visual{ margin-top: 24px; }
  .hero{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
    .nav{
    flex-wrap: wrap;
  }

  .brand{
    width: 100%;
    justify-content: center;
  }

  .nav-links{
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}


@media (max-width: 560px){
  .grid--4{ grid-template-columns: 1fr; }
  .hero-copy h1{ font-size: 36px; }
}

