/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0b1c33;
  background: #f7f7f7;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout helpers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: #0b1c33;
  color: #ffffff;
  padding: 1.25rem 0 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid #f0b434; /* gold line under header */
}

.site-header-inner {
  text-align: center;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo {
  height: 64px;
  margin-bottom: 0.5rem;
}

.brand-title {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  margin: 0.3rem 0 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.main-nav-tabs {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.main-nav-tabs .nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dfe5f2;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid transparent;
}

.main-nav-tabs .nav-link:hover {
  color: #ffffff;
}

.main-nav-tabs .nav-link.active {
  color: #ffffff;
  border-bottom-color: #f0b434;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #143053, #0b1c33);
  color: #ffffff;
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.3rem;
  margin: 0 0 1rem;
}

.hero-text p {
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 34rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: #ffffff;
  color: #0b1c33;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.hero-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Buttons */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #f0b434;
  color: #0b1c33;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(240, 180, 52, 0.7);
  color: #f0b434;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(240, 180, 52, 0.1);
}

/* Sections */
.section {
  padding: 3rem 0;
  background: #f7f7f7;
}

.section-alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 2rem;
  text-align: center;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Premium Contact CTA Card */
.contact-cta-card {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 180, 52, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.card-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #f0b434;
  margin-bottom: 0.4rem;
}

/* Contact form + FAQ */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #c5cad9;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.faq-card .faq-item + .faq-item {
  margin-top: 0.8rem;
}

.faq-question {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.faq-answer {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Callout box */
.callout {
  background: #0b1c33;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
}

.callout h3 {
  margin-top: 0;
}

.callout ul {
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

/* Next steps section */
.next-steps {
  text-align: center;
}

.next-steps p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.97rem;
}

/* Footer */
.site-footer {
  background: #0b1c33;
  color: #d3d7e0;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 600;
  margin: 0;
}

.footer-note {
  margin: 0.25rem 0 0;
}

.footer-links a {
  margin-left: 1rem;
  color: #d3d7e0;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

/* ================================
   PRICE STYLING
=================================*/
.price-line {
  margin: 1rem 0;
  font-size: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 500;
}

.price-badge {
  background: #f0b434;
  color: #0b1c33;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ================================
   GUIDE LINK (Under Product Image)
=================================*/
.guide-link {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f0b434;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #f0b434;
  transition: all 0.2s ease;
  text-decoration: none;
}

.guide-link:hover {
  background: #0b1c33;
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border-bottom-color: transparent;
}

/* Small CTA button at top of guide page */
.guide-top-cta {
  font-size: 0.9rem;
  background: #f0b434;      /* gold */
  color: #0b1c33;           /* navy text */
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.guide-top-cta:hover {
  background: #d79f2f;      /* slightly darker gold */
}

/* Make entire product card clickable */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link .card {
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.product-card-link .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 780px) {
  .main-nav-tabs {
    gap: 1rem;
  }

  .brand-title {
    font-size: 1.4rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================================
   CLIENT PORTAL LAYOUT
=================================*/

.portal-main {
  padding-bottom: 4rem;
}

.portal-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.portal-step-title {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.portal-step-caption {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.portal-logout-btn {
  margin: 3rem auto 0;
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid #f0b434;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.portal-logout-btn:hover {
  background: #f0b434;
  color: #0b1c33;
}

/* Mobile tweaks (optional but nice) */
@media (max-width: 780px) {
  .portal-main {
    padding-top: 2.5rem;
  }
}

