/* ── INSITELY, SHARED STYLESHEET ── */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #0F4D70; color: #fff; line-height: 1; }

:root {
  --b:   #0F4D70;   /* Insitely Blue */
  --b2:  #0a3a56;   /* darker */
  --b3:  #07293e;   /* darkest */
  --o:   #E8630A;   /* Insitely Orange */
  --g:   #95A3AB;   /* Insitely Grey */
  --rad: 6px;
  --px:  80px;      /* horizontal page padding */
}

/* ── UTILITIES ── */
.eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--o); margin-bottom: 10px;
}
.section-title {
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.5px; color: #fff; margin-bottom: 10px;
}
.section-sub {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.5); line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-p {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--o); color: #fff;
  padding: 14px 32px; border-radius: var(--rad);
  text-decoration: none; transition: background 0.15s, transform 0.1s;
}
.btn-p:hover { background: #d05508; transform: translateY(-1px); }
.btn-s {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 14px 28px; border-radius: var(--rad);
  text-decoration: none; transition: color 0.15s, border-color 0.15s;
}
.btn-s:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── NAV ── */
nav.sitenav {
  position: sticky; top: 0; z-index: 100;
  background: var(--b3);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--px); height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { height: 27px; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.cta { color: var(--o); }
.nav-links a.cta::after { content: ' →'; }
.nav-links a.cta:hover { color: #fff; }

/* ── LANGUAGE TOGGLE IN NAV ── */
.lang-toggle {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  overflow: hidden;
  margin-left: 8px;
}
.lang-toggle button {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 10px;
  border: none; background: transparent;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle button.active {
  background: var(--o);
  color: #fff;
}



/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--b);
  padding: 80px var(--px) 72px;
  border-bottom: 3px solid var(--o);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: 52px; font-weight: 900;
  letter-spacing: -2px; line-height: 1.0; color: #fff;
  margin-bottom: 20px;
}
.page-hero h1 span { color: var(--o); }
.page-hero p {
  font-size: 16px; font-weight: 400; line-height: 1.8;
  color: rgba(255,255,255,0.55); max-width: 580px; margin-bottom: 36px;
}
.page-hero .h-ctas { display: flex; gap: 16px; }

/* ── CONTENT SECTIONS ── */
.section-light { background: var(--b); padding: 80px var(--px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.section-mid   { background: var(--b2); padding: 80px var(--px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.section-dark  { background: var(--b3); padding: 80px var(--px); border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; margin-top: 36px; }
.feature-item { background: var(--b2); padding: 36px 30px; }
.feature-nr { font-size: 40px; font-weight: 900; color: rgba(255,255,255,0.05); letter-spacing: -1px; margin-bottom: 14px; }
.feature-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-body { font-size: 13px; color: rgba(255,255,255,0.44); line-height: 1.72; }

/* ── MODULE CARD ── */
.mod-card {
  background: var(--b2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rad); border-top: 3px solid var(--o);
  padding: 40px; transition: border-color 0.2s;
}
.mod-card:hover { border-color: rgba(255,255,255,0.15); }
.mod-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--o); margin-bottom: 14px; }
.mod-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.3px; }
.mod-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 24px; }
.mod-list { list-style: none; margin-bottom: 28px; }
.mod-list li { font-size: 13px; color: rgba(255,255,255,0.6); padding: 7px 0 7px 20px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.mod-list li:last-child { border-bottom: none; }
.mod-list li::before { content: '>'; position: absolute; left: 0; color: var(--o); font-weight: 700; }
.mod-cta { margin-bottom: 24px; }
.mod-price { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.22); padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.mod-price strong { color: rgba(255,255,255,0.6); }

/* ── COMPARISON TABLE ── */
.ctbl { width: 100%; border-collapse: collapse; margin-top: 40px; }
.ctbl thead th { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 28px; border-bottom: 2px solid rgba(255,255,255,0.08); text-align: center; }
.ctbl thead th:first-child { text-align: left; color: rgba(255,255,255,0.22); width: 30%; }
.ctbl thead th.col-w { color: rgba(255,255,255,0.35); }
.ctbl thead th.col-i { color: var(--o); }
.ctbl tbody td { font-size: 13px; padding: 17px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; color: rgba(255,255,255,0.38); }
.ctbl tbody td:first-child { text-align: left; font-weight: 600; color: rgba(255,255,255,0.65); font-size: 12px; letter-spacing: 0.04em; }
.ctbl tbody td.good { color: #5ecb8a; font-weight: 700; }
.ctbl tbody tr:hover td { background: rgba(255,255,255,0.02); }
.ctbl-footer { margin-top: 32px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.25); }

/* ── STATS BAR ── */
.stats { display: grid; grid-template-columns: repeat(3,1fr); background: var(--b3); border-top: 3px solid var(--o); }
.stat { padding: 28px var(--px); border-right: 1px solid rgba(255,255,255,0.07); }
.stat:last-child { border-right: none; }
.stat-val { font-size: 30px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.stat-val span { color: var(--o); font-size: 18px; font-weight: 700; }
.stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-top: 6px; line-height: 1.55; }
.stat-lbl a { color: rgba(255,255,255,0.4); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.12); transition: color 0.15s; }
.stat-lbl a:hover { color: #fff; }

/* ── ROEL CARD ── */
.roel-card { background: var(--b3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--rad); padding: 34px; }
.roel-initials { width: 56px; height: 56px; border-radius: 50%; background: var(--b); border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.roel-card-name { font-size: 18px; font-weight: 800; color: #fff; }
.roel-card-fn { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--o); margin-bottom: 16px; margin-top: 4px; }
.roel-card-body { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.78; }
.roel-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.roel-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.33); padding: 5px 10px; border-radius: 3px; }

/* ── CTA SECTION ── */
.cta-section { padding: 96px var(--px); background: var(--b3); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cta-section .section-title { font-size: 36px; margin-bottom: 14px; }
.cta-section .section-sub { max-width: 500px; margin: 0 auto 36px; display: block; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 560px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 400;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--rad);
  padding: 13px 16px; outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--o); background: rgba(255,255,255,0.09); }
.form-row textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-row select option { background: var(--b3); color: #fff; }

/* ── FOOTER ── */
footer.sitefooter {
  background: var(--b3);
  border-top: 3px solid var(--o);
  padding: 56px var(--px) 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { height: 22px; filter: brightness(0) invert(1); opacity: 0.45; margin-bottom: 20px; display: block; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.26); line-height: 1.8; }
.footer-col-title { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--o); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; margin-bottom: 9px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 10px; color: rgba(255,255,255,0.18); }
.footer-bottom a { color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --px: 40px; }
  .page-hero h1 { font-size: 40px; }
}
@media (max-width: 900px) {
  :root { --px: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero h1 { font-size: 32px; letter-spacing: -1px; }
}
