/* ============================================================
   RENOVA STRATEGY — MAIN STYLESHEET
   White-first, editorial, clean. Inspired by sundancefg.com
   Navy #1C2B3A | Teal #4a7c6f | Accent #8bbcb3 | White #FFFFFF
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

img, video, iframe, embed, object { max-width: 100%; height: auto; }

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1C2B3A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1C2B3A;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 400; }
h4 { font-size: 1rem; font-weight: 600; }

em { font-style: italic; }

p { margin-bottom: 1rem; color: #3a4a58; }
p:last-child { margin-bottom: 0; }

a { color: #4a7c6f; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }
ul.plain-list { list-style: disc; padding-left: 1.25rem; }
ul.plain-list li { color: #3a4a58; margin-bottom: 0.4rem; font-size: 0.9rem; }

/* --- Utilities --- */
.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a7c6f;
  margin-bottom: 0.75rem;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow { max-width: 760px; }
.container--wide { max-width: 1280px; }

.section {
  padding: 5rem 2rem;
}

.section--sm { padding: 3rem 2rem; }
.section--lg { padding: 7rem 2rem; }

.section--white { background: #fff; }
.section--gray { background: #f7f8fa; }
.section--navy { background: #1C2B3A; }
.section--teal { background: #4a7c6f; }

/* Text color overrides for dark sections */
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: #fff; }
.section--navy p { color: #c3ccd5; }
.section--navy .eyebrow { color: #8bbcb3; }

.section--teal h1,
.section--teal h2,
.section--teal h3 { color: #fff; }
.section--teal p { color: rgba(255,255,255,0.9); }

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid #e2e6ea;
  margin: 2rem 0;
}
.divider--teal { border-top-color: #8bbcb3; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: #1C2B3A;
  color: #fff;
  border-color: #1C2B3A;
}
.btn--primary:hover {
  background: #2a3f55;
  border-color: #2a3f55;
  text-decoration: none;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: #1C2B3A;
  border-color: #1C2B3A;
}
.btn--outline-dark:hover {
  background: #1C2B3A;
  color: #fff;
  text-decoration: none;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; align-items: center; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e2e6ea;
  padding: 0 2rem;
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1C2B3A;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav__links a:hover { color: #4a7c6f; text-decoration: none; }
.nav__links a.active { color: #4a7c6f; }

.nav__cta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  background: #1C2B3A;
  padding: 0.5rem 1.1rem !important;
  border-radius: 2px;
  margin-left: 0.5rem;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: #2a3f55; text-decoration: none !important; }

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1C2B3A;
  transition: all 0.2s;
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid #e2e6ea;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.7rem 0; width: 100%; border-bottom: 1px solid #f0f2f4; }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { margin-left: 0; margin-top: 0.75rem; }
}

/* --- Hero --- */
.hero {
  padding: 6rem 2rem 5rem;
  background: #fff;
  border-bottom: 1px solid #e2e6ea;
}
.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: start;
}
.hero__left {}
.hero__right {}
@media (max-width: 820px) {
  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
    width: 100%;
    max-width: 100%;
  }
  .hero__left,
  .hero__right {
    width: 100%;
    max-width: 100%;
  }
  .container,
  .container--narrow,
  .container--wide {
    width: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }
  .page-header {
    padding: 3rem 1.25rem 2.5rem;
  }
  .page-header__inner {
    padding: 0 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-header--split {
    padding: 3rem 1.25rem 2.5rem;
  }
  .section {
    padding: 3rem 1.25rem;
  }
  .section--sm {
    padding: 2rem 1.25rem;
  }
  .section--lg {
    padding: 4rem 1.25rem;
  }
}

.hero__eyebrow { margin-bottom: 1.25rem; }

.hero h1 { margin-bottom: 1.5rem; }

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #4a5568;
  max-width: 620px;
  margin-bottom: 0;
}

.hero__disclosure {
  font-size: 0.72rem;
  font-style: italic;
  color: #8a9bab;
  margin-top: 1.25rem;
}
.hero__disclosure a { color: #8a9bab; }

/* --- Page Header (interior pages) --- */
.page-header {
  padding: 5rem 2rem 4rem;
  background: #f7f8fa;
  border-bottom: 1px solid #e2e6ea;
}
.page-header__inner { max-width: 1140px; margin: 0 auto; }
.page-header h1 { max-width: 760px; }
.page-header__sub {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 620px;
  margin-top: 1rem;
}
.page-header__disclosure {
  font-size: 0.72rem;
  font-style: italic;
  color: #8a9bab;
  margin-top: 1.5rem;
}
.page-header__disclosure a { color: #8a9bab; }

/* --- Two-column grid --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.grid-2--wide { grid-template-columns: 3fr 2fr; }
.grid-2--narrow { grid-template-columns: 2fr 3fr; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

@media (max-width: 900px) {
  .grid-2, .grid-2--wide, .grid-2--narrow { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Service Cards --- */
.service-item { padding: 0; }
.service-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; color: #1C2B3A; }
.service-item p { font-size: 0.9rem; margin-bottom: 0; }
.service-item a { color: #4a7c6f; font-size: 0.85rem; font-weight: 600; }

/* --- Pull Quote / Callout --- */
.callout {
  border-left: 3px solid #4a7c6f;
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.callout p { font-style: italic; font-size: 1rem; color: #4a5568; }

/* --- Feature Block (numbered) --- */
.feature-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e2e6ea;
  align-items: start;
}
.feature-row:last-child { border-bottom: none; }

.feature-num {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #c5cdd5;
  line-height: 1;
}

@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; gap: 1rem; }
  .feature-num { font-size: 1.5rem; }
}

/* --- Comparison Table (vCISO reactive→proactive) --- */
.compare-table-wrap { overflow-x: auto; width: 100%; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table tr { border-bottom: 1px solid #e2e6ea; }
.compare-table tr:last-child { border-bottom: none; }
.compare-table td { padding: 0.85rem 0; font-size: 0.875rem; vertical-align: middle; }
.compare-table .col-before { color: #6b7a8a; width: 44%; }
.compare-table .col-arrow { color: #4a7c6f; font-size: 1rem; width: 8%; text-align: center; }
.compare-table .col-after { color: #1C2B3A; font-weight: 600; width: 48%; }

/* --- Credential Bar --- */
.cred-bar {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e6ea;
}
.cred-item {}
.cred-item .cred-label {
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a7c6f;
  margin-bottom: 0.2rem;
}
.cred-item .cred-value { font-size: 0.9rem; font-weight: 600; color: #1C2B3A; }

/* --- Languages display --- */
.lang-list {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
}

/* --- CTA Section --- */
.cta-section { text-align: center; }
.cta-section h2 { color: inherit; margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { justify-content: center; }

/* --- Insight Cards --- */
.insight-card {
  border-top: 2px solid #4a7c6f;
  padding-top: 1.25rem;
}
.insight-card .insight-meta {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9bab;
  margin-bottom: 0.5rem;
}
.insight-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; }
.insight-card h3 a { color: #1C2B3A; }
.insight-card h3 a:hover { color: #4a7c6f; text-decoration: none; }
.insight-card p { font-size: 0.875rem; margin-bottom: 0.75rem; }
.insight-card .read-more { font-size: 0.8rem; font-weight: 600; color: #4a7c6f; font-family: Arial, sans-serif; }

/* --- Contact form --- */
.contact-form { margin-top: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a5568;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d0d7de;
  border-radius: 2px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #1C2B3A;
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a7c6f;
  box-shadow: 0 0 0 3px rgba(74,124,111,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --- Contact sidebar --- */
.contact-info-item { margin-bottom: 1.25rem; }
.contact-info-item .contact-label {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a7c6f;
  margin-bottom: 0.25rem;
}
.contact-info-item p { font-size: 0.95rem; margin: 0; color: #1C2B3A; }

/* --- Footer --- */
.footer {
  background: #1C2B3A;
  color: #c3ccd5;
  padding: 3.5rem 2rem;
}

.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.85rem; color: #8a9bab; line-height: 1.6; }

.footer__col h4 {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8bbcb3;
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.5rem; }
.footer__col ul li a { font-size: 0.875rem; color: #8a9bab; }
.footer__col ul li a:hover { color: #fff; text-decoration: none; }

.footer__bottom {
  max-width: 1140px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: #5a6a7a;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer__bottom a { color: #5a6a7a; }
.footer__bottom a:hover { color: #8a9bab; text-decoration: none; }

.footer-methodology {
  width: 100%;
  font-size: 0.68rem;
  color: #3a4a58;
  line-height: 1.6;
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr 1fr; width: 100%; max-width: 100%; }
  .footer__bottom { width: 100%; max-width: 100%; }
}
@media (max-width: 500px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Misc helpers --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- Sticky nav active state handling --- */
.nav { position: sticky; top: 0; }

/* Print */
@media print {
  .nav, .footer { display: none; }
}

/* === VALUATION WIDGET === */
.valuation-widget {
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 1.75rem;
}
.widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #1C2B3A;
}
.val-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f2f4;
}
.val-row:last-of-type { border-bottom: none; }
.val-label {
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a7c6f;
}
.val-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1C2B3A;
  text-align: right;
}
.val-value--large {
  font-size: 1.3rem;
  color: #1C2B3A;
}
.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e2e6ea;
  border-top-color: #4a7c6f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Page header two-column hero layout */
.page-header--split {
  padding: 5rem 2rem 4rem;
  background: #f7f8fa;
  border-bottom: 1px solid #e2e6ea;
}
.page-header--split .split-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) {
  .page-header--split .split-inner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
  .valuation-widget {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.field-hint {
  font-size: 0.72rem;
  color: #8a9bab;
  margin-top: 0.3rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.val-disclaimer {
  font-size: 0.72rem;
  font-style: italic;
  color: #8a9bab;
  margin-top: 0.75rem;
  line-height: 1.5;
}
