/* =============================
   RESET & GLOBAL STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =============================
   NAVBAR
============================= */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

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

.logo img {
  height: 64px;
  width: auto;
}

.brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #002b65;
  letter-spacing: 0.5px;
}

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

.nav-links a:hover {
  color: #0078ff;
}

/* =============================
   HERO SECTION
============================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(120, 180, 255, 0.75), rgba(0, 102, 204, 0.65)),
              url("../img/clouds-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 43, 101, 0.2);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.cta-group {
  margin-top: 25px;
}

.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin: 10px;
  transition: all 0.2s ease;
}

.cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

.cta-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Scroll cue arrow */
.scroll-cue {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-top: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================
   RESULTS SECTION
============================= */
.results {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  text-align: center;
  padding: 70px 20px;
}

.results h2 {
  font-size: 2rem;
  color: #002b65;
  margin-bottom: 10px;
}

.results-subtext {
  color: #555;
  margin-bottom: 45px;
  font-size: 1.1rem;
}

.results-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.result-box {
  background: #ffffff;
  border-radius: 12px;
  border-top: 4px solid #0078ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  width: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.result-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002b65;
  margin-bottom: 10px;
}

.result-box p {
  color: #444;
  font-size: 1.05rem;
}

/* =============================
   VCMS PREVIEW (home)
============================= */
.vcms-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  padding: 80px 20px;
}

.vcms-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.vcms-preview h2 {
  color: #002b65;
  margin-bottom: 12px;
}

.vcms-preview p {
  color: #3f4b61;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.vcms-preview ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.vcms-preview ul li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: #3a4254;
}

.vcms-preview ul li::before {
  content: "•";
  color: #0078ff;
  position: absolute;
  left: 0;
  top: 0;
}

.vcms-preview-panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #d7e3f5;
  box-shadow: 0 12px 26px rgba(0, 43, 101, 0.08);
  padding: 32px;
}

.vcms-preview-panel h3 {
  color: #002b65;
  margin-bottom: 18px;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.preview-metrics strong {
  display: block;
  font-size: 1.6rem;
  color: #002b65;
}

.preview-metrics .metric-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6a758a;
}

/* Services VCMS callout */
.vcms-callout {
  background: #002b65;
  color: #ffffff;
  padding: 80px 20px;
}

.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.callout-text {
  max-width: 520px;
}

.callout-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 30px;
}

.callout-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
}

.callout-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c2ff;
  position: absolute;
  left: 0;
  top: 8px;
}

.callout-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px;
  display: grid;
  gap: 16px;
}

.callout-panel strong {
  font-size: 1.4rem;
  display: block;
  margin-top: 4px;
}

.vcms-callout .metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================
   VALUE PROPOSITION
============================= */
.value {
  padding: 80px 20px;
  text-align: center;
}

.value h2 {
  font-size: 2rem;
  color: #002b65;
  margin-bottom: 20px;
}

.value p {
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

/* Shared hero metrics */
.hero-metrics {
  margin-top: 30px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-metrics > div {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 16px 26px;
  min-width: 180px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.hero-metrics .metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-metrics .metric-label {
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

/* =============================
   CORE SERVICES (2x2 GRID)
============================= */
.services {
  background: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #f7f9fc;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 1px solid #0078ff;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #002b65;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  color: #333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card a {
  font-weight: 600;
  color: #0078ff;
  text-decoration: none;
}

/* =============================
   WHY CAST
============================= */
.why-cast {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  text-align: left;
  padding: 80px 20px;
}

.why-cast h2 {
  color: #002b65;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.proof {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
}

.checklist li {
  margin: 12px 0;
  font-size: 1.1rem;
  padding-left: 8px;
  border-left: 3px solid #0078ff;
}

/* =============================
   TESTIMONIAL
============================= */
.testimonial {
  background: #eef3f8;
  padding: 80px 20px;
  text-align: center;
}

.testimonial blockquote {
  background: #ffffff;
  border-left: 4px solid #0078ff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #333;
}

.testimonial cite {
  display: block;
  margin-top: 15px;
  color: #002b65;
  font-style: normal;
  font-weight: 500;
}

/* =============================
   FOOTER
============================= */
.footer {
  background: #002b65;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.footer-cta {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-button {
  background: #0078ff;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-button:hover {
  background: #005ec3;
}

.footer a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 10px;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .brand-name {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .navbar .container {
    flex-direction: column;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .results-grid,
  .service-grid {
    flex-direction: column;
  }

  .result-box {
    width: 100%;
  }
}

/* =============================
   SUBPAGE HERO (smaller hero)
============================= */
.sub-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(120,180,255,0.75), rgba(0,102,204,0.65)),
              url("../img/clouds-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
}

.sub-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 43, 101, 0.18);
}

.sub-hero .container {
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sub-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* =============================
   PAGE CONTENT
============================= */
.page-content {
  padding: 80px 20px;
  background: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.page-content h2 {
  color: #002b65;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.page-content h3 {
  color: #002b65;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .profile-img {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* =============================
   CTA SECTION (bottom of Services page)
============================= */
.cta-section {
  background: linear-gradient(135deg, #0078ff, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
}

/* Adjust bullet lists in service cards */
.service-card ul {
  margin-top: 15px;
  margin-left: 18px;
  color: #333;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
/* =============================
   SERVICES PAGE ENHANCEMENTS
============================= */

/* Lists inside service cards */
.service-card ul {
  margin-top: 15px;
  margin-left: 20px;
  color: #333;
  line-height: 1.6;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0078ff, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
}
/* =============================
   PROCESS PAGE STYLES
============================= */

/* === Layout container === */
.page-content {
  padding: 80px 20px;
  background: #ffffff;
}

.page-content h2 {
  text-align: center;
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* === Process grid === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* === Individual process cards === */
.process-card {
  background: #f7f9fc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 350px; /* Ensures consistent card height */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

/* === Sequential fade animation delay === */
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.4s; }
.process-card:nth-child(4) { animation-delay: 0.6s; }

/* === Hover state === */
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* === Phase number === */
.phase-number {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 120, 255, 0.15);
}

/* === Card content === */
.process-card h3 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 10px;
  padding-left: 5px;
}

.process-card p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.process-card ul {
  margin-left: 18px;
  color: #444;
  font-size: 0.95rem;
}

.process-card li {
  margin-bottom: 8px;
}

/* === Fade animation keyframes === */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============================
   CTA SECTION (bottom banner)
============================= */
.cta-section {
  background: linear-gradient(135deg, #005ec3, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .phase-number {
    font-size: 2rem;
  }

  .process-card {
    min-height: auto;
  }

  .page-content {
    padding: 60px 15px;
  }

  .cta-section {
    padding: 60px 15px;
  }
}
/* WHO WE SERVE PAGE ENHANCEMENTS */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.serve-card {
  background: #f7f9fc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.serve-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.serve-card h3 {
  color: #002b65;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.serve-card p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.serve-card ul {
  margin-left: 18px;
  color: #444;
  font-size: 0.95rem;
}

.serve-card li {
  margin-bottom: 8px;
}

.cta-section {
  background: linear-gradient(135deg, #005ec3, #002b65);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-section .cta-primary {
  background: #ffffff;
  color: #002b65;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.cta-section .cta-primary:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .serve-img {
    height: 160px;
  }
}
/* INSIGHTS PAGE FINAL POLISH */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.insight-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e9f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: #0078ff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.insight-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-body {
  padding: 20px 25px;
  flex-grow: 1;
}

.insight-date {
  display: block;
  font-size: 0.85rem;
  color: #0078ff;
  margin-bottom: 6px;
}

.insight-card h3 {
  color: #002b65;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #0078ff;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .insight-img {
    height: 160px;
  }
}
/* =============================
   CONTACT HUB
============================= */
.contact-hub {
  background: linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
  padding: 110px 20px 90px;
}

.contact-intro {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-intro h2 {
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-intro p {
  font-size: 1.08rem;
  color: #3c4b61;
  line-height: 1.75;
}

.contact-metrics {
  margin-top: 34px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  border: 1px solid #dbe4f2;
  border-radius: 999px;
  padding: 16px 30px;
  min-width: 190px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 43, 101, 0.08);
}

.metric-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #002b65;
}

.metric-label {
  font-size: 0.95rem;
  color: #5f6e84;
  letter-spacing: 0.3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  align-items: stretch;
  margin-top: 50px;
}

.contact-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid #d9e4f3;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 18px 40px rgba(0, 43, 101, 0.08);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card.primary {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid #c7daf5;
  box-shadow: 0 22px 45px rgba(0, 43, 101, 0.12);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 43, 101, 0.15);
}

.contact-card h3 {
  color: #002b65;
  font-size: 1.25rem;
}

.contact-card p {
  color: #44536a;
  margin: 0;
  line-height: 1.7;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0078ff;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 120, 255, 0.25);
}

.contact-btn.ghost {
  background: #0078ff;
  color: #ffffff;
  border: 1px solid #0078ff;
  box-shadow: 0 12px 24px rgba(0, 120, 255, 0.15);
}

.contact-btn.ghost:hover {
  background: #005ec3;
  border-color: #005ec3;
}

.response-time {
  font-size: 0.92rem;
  color: #6c7590;
}

.contact-info-panel {
  margin-top: 60px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #dbe4f2;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 43, 101, 0.08);
}

.contact-email {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0078ff;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-info-panel .channels {
  margin-top: 12px;
  color: #56657b;
}

@media (max-width: 768px) {
  .contact-hub {
    padding: 80px 16px;
  }

  .contact-card {
    padding: 30px 26px;
  }

  .contact-metrics {
    gap: 14px;
  }
}
/* =============================
   VCMS LANDING
============================= */
.vcms-hero {
  padding-bottom: 90px;
}

.vcms-hero .vcms-badges {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.vcms-hero .vcms-badges span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.vcms-overview {
  padding: 80px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.vcms-list {
  margin-top: 20px;
  list-style: none;
}

.vcms-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #38445a;
}

.vcms-list li::before {
  content: "•";
  color: #0078ff;
  position: absolute;
  left: 0;
  top: 0;
}

.vcms-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid #dfe8f7;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(0, 43, 101, 0.08);
}

.vcms-panel h3 {
  color: #002b65;
  margin-bottom: 14px;
}

.panel-pair {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.panel-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #5a6780;
}

.panel-pair strong {
  display: block;
  font-size: 1.6rem;
  color: #002b65;
  margin-top: 4px;
}

.vcms-highlights {
  background: #f4f8fb;
  padding: 80px 0;
  text-align: center;
}

.vcms-feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.vcms-feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 43, 101, 0.08);
  text-align: left;
}

.vcms-feature-card h3 {
  color: #002b65;
  margin-bottom: 12px;
}

.vcms-feature-card p {
  color: #445166;
  line-height: 1.7;
}

.vcms-dashboard-cta {
  padding: 80px 0;
}

.dashboard-card {
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.12), rgba(0, 43, 101, 0.85));
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.dashboard-card h2 {
  margin-bottom: 10px;
}

.dashboard-card p {
  max-width: 520px;
  line-height: 1.7;
}

.dashboard-card .cta-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vcms-proof {
  background: #002b65;
  color: #ffffff;
  text-align: center;
  padding: 70px 20px;
}

.vcms-proof blockquote {
  font-size: 1.3rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 15px;
}

.vcms-proof cite {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .panel-pair {
    flex-direction: column;
  }

  .dashboard-card {
    padding: 32px;
  }
}

/* Process page extras */
.vcms-tag {
  margin-top: 12px;
  background: #eef3ff;
  color: #002b65;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.vcms-backbone {
  background: #f4f8fb;
  padding: 80px 20px;
}

.backbone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.backbone-card,
.backbone-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 30px rgba(0, 43, 101, 0.08);
}

.backbone-card h2,
.backbone-panel h3 {
  color: #002b65;
  margin-bottom: 12px;
}

.vcms-backbone ul {
  list-style: none;
  padding-left: 0;
}

.vcms-backbone ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: #3d4861;
}

.vcms-backbone ul li::before {
  content: "•";
  color: #0078ff;
  position: absolute;
  left: 0;
  top: 0;
}
/* =============================
   LEGAL PAGES STYLES
============================= */
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.8;
}

.legal-text h2 {
  color: #002b65;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-text p,
.legal-text ul {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.legal-text ul {
  list-style: disc;
  margin-left: 25px;
}
/* =============================
   THANK YOU PAGE STYLES
============================= */
.thank-you-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-text h2 {
  color: #002b65;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.thank-you-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.7;
}
/* --- Center both buttons on thank-you page --- */
.thank-you-text {
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;
  flex-wrap: wrap;           /* handles small screens */
  gap: 12px;                 /* even space between buttons */
  text-align: center;
}

.thank-you-text a {
  display: inline-block;
  text-align: center;
}

/* Secondary button visual style */
.cta-secondary {
  border: 2px solid #0078ff;
  color: #0078ff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: #0078ff;
  color: #ffffff;
}
/* =============================
   INSIGHTS COMING SOON STYLES
============================= */
.insights-coming-soon {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 80px 20px;
}

.insights-coming-soon h2 {
  color: #002b65;
  font-size: 2rem;
  margin-bottom: 20px;
}

.insights-coming-soon p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.insights-coming-soon .cta-primary {
  margin-top: 20px;
  background: #0078ff;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.insights-coming-soon .cta-primary:hover {
  background: #005ec3;
  transform: translateY(-2px);
}
.brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #002b65;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.brand-name:hover {
  color: #0078ff;
  text-decoration: none;
}
