:root {
  --gold: #F6CC6D; /* ====this is the gold i like for buttons====*/
  --navy: #013D85;/* ====this is the navy for titles====*/
  --cream: #F7F3EB;
  --light: #fff;
  --border: #e6d9be;
  --muted: #4e5968;
}


/* other colors to have for the card borders it's #D7B15F; other words can be black #013D85;or that super dark
    navy that you keep trying to use that looks like black, Gold box for other word placement options #f2dfb2;
    for when we want navy buttons with white words #0b3a6e;*/

body {
  background: var(--cream);
}

/*Hey this setting here is wrong, see the changes made below
.tt-header {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
}

.tt-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.tt-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-brand img {
  width: 60px;
  height: auto;
}

.tt-brand-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.tt-brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.tt-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tt-nav a.btn {
  padding: 8px 16px;
}*/

.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;


/* ===============================
   GLOBAL HEADER (LOCKED)
=============================== */
.tt-header {
  background: #002357;/* HEADER NAVY */
}

.tt-header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tt-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-brand img {
  height: 44px;
}

/* TITLE */
.tt-brand-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
}

/* TAGLINE */
.tt-brand-tagline {
  font-size: 16.25px;
  font-weight: 550;
  color: #F6CC6D;
  margin-top: -4px;
}

.tt-nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

/* ===============================
   HERO BAND (LOCKED)
=============================== */
.pricing-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 40px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-hero h1 {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-lead {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.hero-panel {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(7, 20, 37, 0.07);
}

.hero-panel h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.hero-panel ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
}

.billing-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
}

.toggle-label {
  font-weight: 600;
  margin-right: 4px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
}

.toggle-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.toggle-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.plan-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 0 18px 40px rgba(7, 20, 37, 0.08);
}

.plan-card.popular {
  border: 2px solid var(--gold);
  transform: translateY(-6px);
}

.plan-card.firm {
  border: 1px solid #8aa0c8;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--light);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-card.popular .plan-badge {
  background: var(--gold);
  color: var(--navy);
}

.plan-card.firm .plan-badge {
  background: #3056a3;
}

.plan-card h3 {
  font-size: 1.4rem;
  margin-top: 8px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.price .descriptor {
  font-size: 0.9rem;
  color: var(--muted);
}

.plan-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 18px;
}

.plan-points li {
  position: relative;
}

.plan-points li::before {
  content: "•";
  position: absolute;
  left: -14px;
  color: var(--gold);
}

.plan-card button,
.plan-card a.btn {
  margin-top: auto;
  text-align: center;
}

.comparison-section {
  margin-top: 40px;
}

.comparison-section h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.comparison-note {
  color: var(--muted);
  margin-bottom: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 20, 37, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.comparison-table th {
  background: #fbf7ef;
  font-weight: 700;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.security-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.security-panel div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.security-panel h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.security-panel p,
.security-panel ul {
  color: var(--muted);
  font-size: 0.95rem;
}

.security-panel ul {
  list-style: disc;
  padding-left: 18px;
}

.final-cta {
  text-align: center;
  background: #fff7e8;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 20px;
}

.final-cta h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 20px;
}

.tt-footer {
  background: var(--navy);
  color: var(--light);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .pricing-hero {
    grid-template-columns: 1fr;
  }

  .tt-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tt-nav {
    flex-wrap: wrap;
  }
}
