/* Brand Colors & Typography System */
:root {
  overflow-x: hidden;
  
  /* Color Palette */
  --primary-dark-blue: #22336b;
  --primary-blue: #2a3a85;
  --primary-light-blue: #50b1d9;
  --accent-green: #1ec98b;
  --accent-orange: #ffb347;
  --secondary-light-grey: #f6f9fc;
  --secondary-dark-grey: #425466;
  --neutral-grey: #e5e8ef;
  --color-dark-blue: #0a2540;
  --color-dark-grey: #425466;
  --color-light-grey-bg: #f6f9fc;
  --color-light-grey-text: #e0e6eb;
  --color-accent-blue: #6772e5;
  --color-white: #ffffff;
  --color-border: #e6ebf1;
  --text: #0b3558;
  /* Typography & Text Colors */
  --font-family: 'Inter', Arial, sans-serif;
  --text-primary: #0b3558;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-title: #1e4483;
  --text-subtitle: #1ca8d8;
  --text-light: #f8fafc;
  --text-on-dark: #e3e8f0;
  
  /* Background & UI Colors */
  --bg: #ffffff;
  --bg-secondary: #f6f9fc;
  --widget-bg: #f0f4f8;
  --card-bg: #ffffff;
  --hover: #27b0df;
  --shadow: rgba(0, 0, 0, 0.05);
  
  /* Typography Scale */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Layout & Spacing */
  --section-padding: 3rem 0;
  --section-padding-large: 8rem 0;
  --section-padding-medium: 4rem 0;
  --section-padding-small: 3rem 0;
  --section-padding-xs: 2rem 0;
  --container-padding: 0 1.5rem;
  --container-padding-mobile: 0 1rem;
}
[data-theme="dark"] {
  /* Dark theme color overrides */
  --text-primary: #e3e8f0;
  --text-title: #e0eafc;
  --text-light: #1e293b;
  --text-on-dark: #c4d0d2;
  --text-subtitle: #1ca8d8;
  --text-secondary: #c4d0d2;
  --text-muted: #94a3b8;
  --text: #e3e8f0;
  --hover: #4fc4f2;
  --bg: #1e293b;
  --bg-secondary: #111827;
  --shadow: rgba(255, 255, 255, 0.1);
  --widget-bg: #fafafa;
  
  --primary-dark-blue: #b1c4ff;
  --primary-blue: #90a7e4;
  --primary-light-blue: #7fd9fb;
  --accent-green: #1edba3;
  --accent-orange: #ffcc80;
  --secondary-light-grey: #111827;
  --secondary-dark-grey: #cbd5e1;
  --neutral-grey: #334155;
  --color-dark-blue: #d1d1d1;
  
  --card-bg: #444f5f;
  --section-bg: #111827;
  --input-bg: #27303f;
  --input-border: #475569;
  --value-prop-bg: #1e293b;
  --free-trial-bg: #313e53;
  --contact-section-bg: #1e2532;
  --contact-card-bg: #26303d;
}



/* === TYPOGRAPHY SYSTEM === */

/* Base Typography */
body {
  font-family: var(--font-family);
  background: var(--secondary-light-grey);
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: var(--text-base);
}

/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  line-height: 1.2;
  margin: 0 0 1rem 0;
  font-weight: var(--font-bold);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--text-title);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--text-title);
  letter-spacing: -0.025em;
}



h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text-title);
}

h5 {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--text-title);
}

h6 {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--text-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Paragraph and Text Styles */
p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Text Utility Classes */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

/* Font Weight Utilities */
.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }

/* Text Color Utilities */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-title { color: var(--text-title); }
.text-subtitle { color: var(--text-subtitle); }
.text-light { color: var(--text-light); }
.text-on-dark { color: var(--text-on-dark); }
.text-white { color: var(--color-white); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Section Title Standardization */
.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--text-title);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-title.large {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
}

.section-title.small {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-subtitle);
  font-weight: var(--font-normal);
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* Lead Text */
.lead {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Small Text */
.small {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Link Styles */
a {
  color: var(--text-subtitle);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--hover);
  text-decoration: underline;
}

/* === BASE SECTION STYLING === */



.container {
  max-width: 100%;
  margin: 0 auto;
  top: 0;
  padding: var(--container-padding);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
    padding: var(--container-padding);
  }
}

@media (max-width: 768px) {
  .container {
    padding: var(--container-padding-mobile);
  }
}


/* --- Header --- */
.main-header {
  background: var(--bg);
  border-bottom: 1.5px solid var(--neutral-grey);
  box-shadow: 0 2px 12px rgba(42, 58, 133, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
  top: 0;
  padding-top: 0 !important;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}
.logo-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(42, 58, 133, 0.10);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(100deg, var(--bg) 0%, var(--secondary-light-grey) 60%,var(--bg) 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--primary-light-blue) 0%, transparent 80%);
  opacity: 0.18;
  z-index: 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  z-index: 1;
  padding: 40px;
}
.hero-text {
  flex: 1 1 0;
  max-width: 540px;
}
.hero-text h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--text-title);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.hero-text h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--text-subtitle);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary-light-blue), var(--primary-blue));
  color: var(--color-white);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  padding: 14px 36px;
  border: none;
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(80, 177, 217, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-light-blue));
  box-shadow: 0 4px 16px rgba(42, 58, 133, 0.13);
  color: var(--color-white);
  text-decoration: none;
}

.btn-secondary {
  background: var(--color-white);
  color: var(--text-title);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  padding: 14px 32px;
  border: 2px solid var(--primary-light-blue);
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--primary-light-blue);
  color: var(--color-white);
  text-decoration: none;
}
.hero-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder {
  width: 340px;
  height: 240px;
  background: var(--secondary-light-grey);
  border: 2.5px dashed var(--primary-light-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light-blue);
  font-size: 1.2rem;
}

/* --- Card Layouts --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin: 48px 0 0 0;
}
.card-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0 0 0;
}
.card-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0 0 0;
}
.card-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px 0 0 0;
}


.card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 0.75rem;
  color: var(--text-title);
}

.card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}
.card-content {
  width: 100%;
  flex: 1 1 auto;
}
.card-actions {
  margin-top: 18px;
  display: flex;
}
.card .btn-secondary,
.card .btn-primary {
  text-align: center;
}
@media (max-width: 900px) {
  .card {
    min-height: 160px;
  }
}


/* --- Responsive Design --- */
@media (max-width: 1100px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .hero-img-placeholder {
    width: 100%;
    max-width: 320px;
    height: 180px;
  }
  .card-grid--2col {
    grid-template-columns: 1fr;
  }
  .card-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
   .hero {
    padding: 48px 0 32px 0;
  }
  .card-grid {
    gap: 18px;
  }
  .card {
    padding: 20px 12px 18px 12px;
  }
  .card-grid--3col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .card-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .card-grid--4col {
    grid-template-columns: 1fr;
  }
}

/* --- Contact Section --- */
.contact-section {
  background: var(--contact-section-bg, #f0f8ff);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(42, 58, 133, 0.07);
  padding: 40px 32px 32px 32px;
  margin: 48px auto 0 auto;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.contact-form {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-family);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1.5px solid var(--neutral-grey);
  border-radius: 6px;
  background: var(--input-bg, #fff);
  color: var(--text, #222);
  margin-bottom: 8px;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary-light-blue);
  outline: none;
}
.contact-form button {
  margin-top: 8px;
}
contact-info {
    max-width: 200;
    display: flex;
    flex-direction: row;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 1px 6px rgba(42, 58, 133, 0.04);
}
.contact-info h3 {
  margin-top: 0;
  color: var(--text-title);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}
.contact-info a {
  color: var(--primary-light-blue);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.map-placeholder {
  background: #e3f0ff;
  color: var(--primary-light-blue);
  border-radius: 8px;
  padding: 24px 0;
  text-align: center;
  margin-top: 18px;
  font-size: 1.05rem;
  border: 1.5px dashed var(--primary-light-blue);
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    gap: 24px;
    padding: 28px 8px 20px 8px;
  }
  .contact-info {
    padding: 18px 8px;
  }
}

.contact-section--split {
  background: var(--contact-section-bg);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(42, 58, 133, 0.07);
  padding: 0;
  margin: 48px auto 0 auto;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 420px;
}
.contact-form-col {
  flex: 2 1 380px;
  padding: 40px 32px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-col {
  flex: 1 1 260px;
  padding: 40px 40px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--contact-card-bg);
}
.contact-divider {
  width: 1.5px;
  background: var(--neutral-grey);
  margin: 40px 0;
  align-self: stretch;
  border-radius: 2px;
}
.contact-info-col .contact-info {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
@media (max-width: 900px) {
  .contact-section--split {
    flex-direction: column;
    min-height: unset;
    padding: 0;
  }
  .contact-form-col, .contact-info-col {
    padding: 28px 12px 18px 12px;
  }
  .contact-divider {
    display: none;
  }
} 

.why-section {
  background: linear-gradient(100deg, #f6f9fc, #e3f0ff);
  
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(42, 58, 133, 0.06);
  transition: all 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(42, 58, 133, 0.1);
}
.why-card h3 {
  color: var(--text-title);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 48px 0 24px;
}

.footer-brand a {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 260px;
  line-height: 1.6;
}
.social-links a {
  display: inline-block;
  margin-right: 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.social-links a:hover {
  opacity: 1;
}
.social-links img {
  width: 22px;
  height: 22px;
}

.footer-links-group h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: 0.75rem;
  color: var(--text-title);
}
.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-group li {
  margin-bottom: 8px;
}
.footer-links-group a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--text-subtitle);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-grey);
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.footer-policies a {
  margin-left: 16px;
  font-size: 0.85rem;
  color: var(--secondary-dark-grey);
  text-decoration: none;
}
.footer-policies a:hover {
  color: var(--primary-light-blue);
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-policies {
    margin-top: 12px;
  }
  .footer-policies a {
    margin:  8px;
  }
}
.sf-cta-btn {
  display: block;
  width: 75%;
  text-align: center;
  margin-top: 24px;
  font-size: 1.1rem;
  padding: 16px 0;
}
.value-prop {
  padding: 80px 16px;
  text-align: center;
  background-color: var(--value-prop-bg);
  color: var(--text);
}

.value-prop-content {
  max-width: 880px;
  margin: 0 auto;
}

.vp-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.vp-subtext {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 36px;
}

.vp-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #0070f3;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #005fcb;
}

.btn-secondary {
  border: 2px solid #0070f3;
  color: #0070f3;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #0070f3;
  color: var(--text);
}
.free-trial-card {
  background: var(--free-trial-bg, #f0f8ff);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin: 64px auto;
  padding: 48px 24px;
  max-width: 1200px;
  color: var(--text);
}

.free-trial-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.trial-text {
  flex: 1 1 480px;
}

.trial-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.trial-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trial-image {
  flex: 1 1 400px;
  text-align: center;
}

.trial-image img {
  max-width: 80%;
  max-height: 400px;
  height: auto;
  border-radius: 12px;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Buttons */
.btn-primary {
  background-color: #0070f3;
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #005fcc;
}

.btn-secondary {
  border: 2px solid #0070f3;
  color: #0070f3;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #0070f3;
  color: #fff;
}
.growth-benefits {
  padding: 80px 16px;
  background: var(--value-prop-bg, #f0f8ff);
  text-align: center;
  color: var(--text, #002b5c);
}

.growth-title {
  font-size: 2rem;
  color: var(--text-title, #002b5c);
  font-weight: 700;
  margin-bottom: 48px;
}

.growth-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.growth-card {
  position: relative;
  width: 260px;
  border-radius: 24px;
  padding: 24px 16px 56px;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}
.growth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.growth-caption {
  font-size: 0.95rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}
.growth-card .growth-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgb(255, 255, 255);
  border-radius: 100%;
  padding: 6px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.growth-metric {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 40px;
}

.growth-metric span {
  font-size: 1rem;
  font-weight: normal;
}

.growth-text {
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 700;
}

.growth-person {
  margin-top: 16px;
  border-radius: 50%;
  width: 100%;
  max-width: 160px;
}

.growth-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #002b5c;
  text-decoration: underline;
  background: white;
  padding: 4px 0;
  border-radius: 4px;
}

.growth-card.blue {
  background-color: #0070f3;
}

.growth-card.teal {
  background-color: #00a3a3;
}

.growth-card.magenta {
  background-color: #c12465;
}

.growth-card.orange {
  background-color: #e87b00;
}

.contact-section {
  background-color: var(--contact-section-bg, #f0f8ff);
  color: var(--text);
  padding: 50px 16px;
  display: flex;
  justify-content: center;
}

.contact-card {
  color: var(--text);
  /* padding: 20px 24px; */
  border-radius: 16px;
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text, #003366); /* Dark blue headline */
}

.contact-subtext {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-grid input,
.contact-grid textarea {
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: #f9fbfd;
  width: 100%;
  box-sizing: border-box;
  color: #222;
}

.contact-grid textarea {
  grid-column: span 2;
  resize: vertical;
  min-height: 120px;
}

.contact-button {
  background-color: #0077cc;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  align-self: center;
  transition: 0.3s ease;
}

.contact-button:hover {
  background-color: #005fa3;
}

.contact-privacy {
  font-size: 0.85rem;
  color: #555;
}

.contact-privacy a {
  color: #0077cc;
  text-decoration: underline;
}




/* ============================================================
   NAVBAR  Mega-Menu Descriptive Design
   Inspired by LangChain's descriptive menus, DataMatter theme
   ============================================================ */

.navbar {
  background-color: var(--bg);
  border-bottom: 1px solid rgba(42,58,133,0.1);
  box-shadow: 0 2px 16px rgba(42,58,133,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-top: 0;
  padding-top: 0;
  visibility: visible !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* ---- Logo ---- */
.navbar-logo a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 52px;
  transition: opacity 0.2s;
}
.navbar-logo a:hover img {
  opacity: 0.85;
}

/* ---- Nav Links ---- */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  margin-left: 1.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-light-blue);
  background: rgba(28,168,216,0.07);
  text-decoration: none !important;
}

.nav-link:hover::after {
  width: 0 !important; /* disable underline on mega-menu links */
}

.nav-link--arrow .nav-arrow {
  transition: transform 0.25s ease;
  margin-left: 2px;
  opacity: 0.6;
}

.mega-dropdown:hover .nav-link--arrow .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* ---- Hamburger ---- */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.navbar-toggle:hover {
  background: rgba(0,0,0,0.06);
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Dark Toggle ---- */
.dark-toggle {
  background: var(--toggle-bg, rgba(240,244,248,0.9));
  border: none;
  border-radius: 50%;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.dark-toggle:hover {
  transform: rotate(15deg) scale(1.05);
}
.dark-toggle .icon { display: block; transition: transform 0.4s; }
html[data-theme='dark'] .dark-toggle { --toggle-bg: #1e293b; }
html[data-theme='dark'] .dark-toggle .icon { transform: rotate(360deg); }

/* ---- Navbar Right Section ---- */
.navbar-contact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}
.contact-info {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.contact-info a {
  color: var(--primary-dark-blue);
  text-decoration: none;
}
.contact-info a:hover {
  color: var(--primary-light-blue);
  text-decoration: none;
}

/* ---- Demo CTA Button ---- */
.navbar-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-light-blue));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(42,58,133,0.18);
  letter-spacing: 0.01em;
}
.navbar-demo-btn:hover {
  background: linear-gradient(90deg, var(--primary-light-blue), var(--primary-blue));
  box-shadow: 0 4px 16px rgba(42,58,133,0.25);
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* ============================================================
   MEGA DROPDOWN
   ============================================================ */

.dropdown {
  position: relative;
}

.mega-dropdown {
  position: static;
}

/* The actual panel */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  padding: 1.25rem;
  background-color: var(--bg);
  border: 1px solid rgba(42,58,133,0.1);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(42,58,133,0.12), 0 4px 16px rgba(0,0,0,0.06);
  z-index: 1001;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.mega-menu {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: auto;
  width: 560px;
  max-width: calc(100vw - 2rem);
  padding: 1.5rem;
  background-color: var(--bg);
  border: 1px solid rgba(42,58,133,0.1);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(42,58,133,0.13), 0 6px 20px rgba(0,0,0,0.07);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.mega-menu--compact {
  width: 420px;
}

.dropdown:hover .dropdown-menu,
.mega-dropdown:hover .mega-menu {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown.is-open .dropdown-menu,
.mega-dropdown.is-open .mega-menu {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown:hover .dropdown-menu:not(.mega-menu) {
  transform: translateY(0);
}

.dropdown.is-open .dropdown-menu:not(.mega-menu) {
  transform: translateY(0);
}

/* Position mega-menu relative to the navbar (not fixed) when in desktop */
@media (min-width: 961px) {
  .navbar-container {
    position: relative;
  }
  .mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    top: calc(100% + 4px);
  }
  .mega-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
}

/* ---- Mega Menu Internal Layout ---- */

.mega-menu-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 220px;
}

.mega-menu--compact .mega-menu-section {
  min-width: 180px;
}

.mega-menu-section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.mega-menu-divider {
  width: 1px;
  background: var(--neutral-grey);
  margin: 0 1rem;
  align-self: stretch;
  border-radius: 1px;
  flex-shrink: 0;
}

/* Two-column layout when there are sections + divider */
.mega-menu:has(.mega-menu-divider) {
  flex-direction: row;
  align-items: flex-start;
}

/* ---- Mega Menu Items ---- */
.mega-menu-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  text-decoration: none !important;
  transition: background 0.18s ease, transform 0.15s ease;
  cursor: pointer;
  color: inherit !important;
}

.mega-menu-item:hover {
  background: rgba(28, 168, 216, 0.07);
  transform: translateX(2px);
  text-decoration: none !important;
}

/* Remove default nav-link underline animation for items inside dropdown */
.mega-menu-item::after {
  display: none !important;
}

.mega-menu-item:hover::after {
  display: none !important;
}

/* Icon box */
.mega-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mega-menu-item:hover .mega-menu-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

/* Text group */
.mega-menu-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega-menu-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1.3;
  transition: color 0.18s;
}
.mega-menu-item:hover .mega-menu-title {
  color: var(--primary-light-blue);
}

.mega-menu-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

/* Badge  base */
.mega-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-light-blue));
  color: #fff;
  padding: 2px 6px;
  border-radius: 20px;
  vertical-align: middle;
  line-height: 1.4;
  flex-shrink: 0;
}

/* "New" badge  vivid indigo/purple */
.mega-badge--new {
  background: linear-gradient(90deg, #6772e5, #9b59b6);
}

/* "Coming Soon" badge  neutral grey */
.mega-badge--soon {
  background: linear-gradient(90deg, #64748b, #94a3b8);
}

/* Wide mega-menu for Platform (accommodates 2 sections with more items) */
.mega-menu--wide {
  width: 700px;
}

/* Featured flagship item (Agentic AI Orchestrator) */
.mega-menu-item--featured {
  background: rgba(103, 114, 229, 0.06);
  border: 1px solid rgba(103, 114, 229, 0.15);
  border-radius: 12px;
  padding: 0.85rem 0.85rem;
}
.mega-menu-item--featured:hover {
  background: rgba(103, 114, 229, 0.12);
  border-color: rgba(103, 114, 229, 0.3);
  transform: translateX(2px);
}
.mega-menu-item--featured .mega-menu-title {
  color: #6772e5;
}
.mega-menu-item--featured:hover .mega-menu-title {
  color: #4f5bd5;
}

/* Muted items (Coming Soon solutions) */
.mega-menu-item--muted {
  opacity: 0.72;
  cursor: default;
}
.mega-menu-item--muted:hover {
  background: rgba(148, 163, 184, 0.07);
  transform: none;
  opacity: 0.85;
}
.mega-menu-item--muted .mega-menu-icon {
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.mega-menu-item--muted:hover .mega-menu-icon {
  transform: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.mega-menu-item--muted .mega-menu-title {
  color: var(--text-secondary);
}
.mega-menu-item--muted:hover .mega-menu-title {
  color: var(--text-secondary);
}

/* Dark theme adjustments */
[data-theme="dark"] .dropdown-menu,
[data-theme="dark"] .mega-menu {
  background: var(--bg);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.25);
}
[data-theme="dark"] .mega-menu-item:hover {
  background: rgba(28, 168, 216, 0.12);
}
[data-theme="dark"] .mega-menu-divider {
  background: rgba(255,255,255,0.1);
}
[data-theme="dark"] .nav-link {
  color: var(--text-on-dark);
}
[data-theme="dark"] .nav-link:hover {
  color: var(--primary-light-blue);
  background: rgba(28,168,216,0.1);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .navbar-container {
    position: relative;
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1.25rem;
  }

  .navbar-logo {
    order: 1;
    flex: 1;
  }

  .navbar-toggle {
    display: flex !important;
    order: 2;
    z-index: 1001;
  }

  .navbar-links,
  #nav-links {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: none;
    border-top: 1px solid rgba(42,58,133,0.1);
    background: var(--bg);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    margin-left: 0;
    gap: 0;
    box-shadow: 0 8px 24px rgba(42,58,133,0.08);
  }

  .navbar-links::-webkit-scrollbar,
  #nav-links::-webkit-scrollbar { width: 4px; }
  .navbar-links::-webkit-scrollbar-track,
  #nav-links::-webkit-scrollbar-track { background: transparent; }
  .navbar-links::-webkit-scrollbar-thumb,
  #nav-links::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }

  .navbar-links.active,
  #nav-links.active {
    display: flex !important;
  }

  .dropdown,
  .mega-dropdown {
    width: 100%;
  }

  .nav-link {
    display: flex;
    padding: 0.9rem 1.25rem;
    border-radius: 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(42,58,133,0.06);
    width: 100%;
    justify-content: space-between;
  }

  /* In mobile, mega-menus become inline collapsed sections */
  .dropdown-menu,
  .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    transform: none !important;
    flex-direction: column !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(42,58,133,0.03) !important;
    display: flex !important;
  }

  .mega-menu-divider {
    display: none;
  }

  .mega-menu-section {
    padding: 0.5rem 0;
    min-width: unset;
  }

  .mega-menu-section-label {
    padding-left: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .mega-menu-item {
    padding: 0.6rem 1.5rem 0.6rem 1.5rem;
    border-radius: 0;
    gap: 0.75rem;
  }

  .mega-menu-icon {
    width: 34px;
    height: 34px;
  }

  .mega-menu-title {
    font-size: 0.85rem;
  }

  .mega-menu-desc {
    font-size: 0.75rem;
  }

  .navbar-contact {
    order: 3;
    width: 100%;
    border-top: 1px solid rgba(42,58,133,0.1);
    padding: 0.6rem 1.25rem;
    gap: 0.75rem;
    justify-content: flex-end;
  }

  .contact-info { display: none; }

  .navbar-demo-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
  }

  .navbar-logo img {
    height: 42px;
  }
}

/* Legacy dropdown (non-mega) still works */
.dropdown-menu:not(.mega-menu) {
  flex-direction: column;
}
.dropdown-menu:not(.mega-menu) a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 4px;
  transition: color 0.2s ease;
  font-size: 0.88rem;
}
.dropdown-menu:not(.mega-menu) a:hover {
  color: var(--hover);
}
.dropdown-highlighted {
  color: var(--primary-blue) !important;
  font-weight: 600;
}
.support-hero {
  background-color: var(--section-bg);
  color: var(--text);
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.support-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-hero p {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
}

.support-topics {
  padding: 3rem 1rem;
  background-color: var(--bg);
}

.support-topics h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.support-card {
  background-color: var(--card-bg);
  color: var(--text);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  padding: 2rem;
  max-width: 320px;
  transition: transform 0.2s ease;
}

.support-card h3 {
  margin-bottom: 0.5rem;
}

.support-card p {
  margin-bottom: 1rem;
  color: var(--text);
}

.support-card a {
  color: var(--hover);
  text-decoration: none;
  font-weight: 600;
}

.support-card:hover {
  transform: translateY(-4px);
}

.support-contact {
  background-color: var(--section-bg);
  color: var(--text);
  padding: 3rem 1rem;
}

.contact-flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-box {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  max-width: 400px;
  text-align: center;
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #0070f3;
  color: white;
}

.btn-primary:hover {
  background-color: #005bb5;
}

.btn-secondary {
  border: 2px solid #0070f3;
  color: #0070f3;
}

.btn-secondary:hover {
  background-color: #0070f3;
  color: white;
}
.features-section {
  
  background: var(--bg, #f9fafb);
}

.features-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  color:  var(--text-title, #061d49);
}

.features-subtitle {
  font-size: 1.1rem;
  color:  var(--text-subtitle, #4a5568);
  margin-top: 0.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg, #ffffff);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px
  
  rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #061d49;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}


.persona-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.persona-block.reverse {
  flex-direction: row-reverse;
}
.persona-text {
  flex: 1;
}
.persona-avatar {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.persona-image {
  flex: 1;
  text-align: center;
}
.persona-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.persona-solutions .section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 20px 0;
}

/* Section title styling is handled by the global typography system */
.about-section {
  padding: var(--section-padding);
  position: relative;
}

.about-section.alt-bg {
  background: var(--bg, #f9fafb);
}

.about-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1 1 600px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text, #0f172a);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-block {
  background: transparent;
  border-left: 4px solid var(--primary, #0ea5e9);
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.value-block:hover {
  background: rgba(0, 0, 0, 0.02);
}

.value-block .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.final-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text, #0f172a);
}

.centered-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: none;
  }
}
.about-icon {
  width: 48px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.about-visual {
  flex: 1 1 400px;
  text-align: center;
}
.about-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Optional: tighter spacing for story section */
.about-text p + p {
  margin-top: 1rem;
}

/* Use .section-title.small instead of .small-title for consistency */
.resources-section {
  padding: var(--section-padding);
  background-color: var(--bg, #f9fafb);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.resource-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  background: var(--card-bg, #ffffff);
  border-left: 4px solid var(--primary, #0ea5e9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.resource-item .icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--primary, #0ea5e9);
}

.resource-item .text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text, #0f172a);
}

.resource-item .text p {
  font-size: 1rem;
  color: var(--text, #374151);
  margin-bottom: 1rem;
}

.btn-link {
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Responsive design for resources grid */
@media (max-width: 1100px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 800px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 500px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .resource-item {
    padding: 20px;
  }
}
.coming-soon-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: center;
  padding: var(--section-padding-large);
}

.coming-soon-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-title, #0f172a);
  margin-bottom: 1rem;
}

.coming-soon-section .section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-subtitle, #4b5563);
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
  z-index: 10;
}

#voice-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0066ff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: background-color 0.3s ease;
}

#voice-btn:hover {
  background-color: #004fcc;
}
.donnee-fixed-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  background: --var(--widget-bg, #ffffff);
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  font-family: sans-serif;
}

.donnee-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  background: var(--widget-bg, #f0f4f8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.donnee-button {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #0052ff, #00b2ff);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.donnee-button img {
  width: 25px;
  height: 22px;
  padding: 2px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: white;
}

.donnee-button:hover {
  transform: translateY(-2px);
}

.chat-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 340px;
  height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

.chat-header {
  background: var(--card-bg);;
  padding: 12px 16px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: var(--card-bg);
}

.chat-body h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color:var(--text)
}

.highlight {
  color: var(--value-prop-bg);
}

.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: black;
}

.chat-bubble img {
  width: 32px;
  height: 22px;
  border-radius: 50%;
}

.chat-bubble p {
  background: #f0f4ff;
  padding: 10px 14px;
  border-radius: 10px;
  margin: 0;
  font-size: 14px;
  max-width: 240px;
}

.chat-bar {
  padding: 12px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.chat-bar input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.chat-bar button {
  background: #0052ff;
  color: white;
  border: none;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
}

.chat-close {
  font-size: 18px;
  color: #555;
  border: none;
  cursor: pointer;
}
.intro-bubble {
  margin-bottom: 16px;
}

.intro-bubble .chat-bubble {
  background: #f0f4ff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.intro-bubble .chat-bubble ul {
  padding-left: 20px;
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.intro-bubble .chat-bubble p {
  margin: 6px 0;
  font-size: 14px;
}
.info-icon {
  cursor: pointer;
  margin-left: 6px;
  font-size: 1rem;
  vertical-align: middle;
}

.info-tooltip {
  display: none;
  position: relative;
  top: 0px;
  right: 0px;
  width: 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 1000;
  border-left: 4px solid #007bff;
  color: #333;
}

.special-page-section {
  background: linear-gradient(120deg, var(--primary-light-blue), var(--primary-blue));
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
}

.special-wrapper {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 48px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  animation: fadeInUp 0.8s ease both;
}

.special-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-title, #ffffff);
}

.special-subtitle {
  font-size: 1.2rem;
  color: var(--text-subtitle, #e0e0e0);
  margin-bottom: 36px;
  line-height: 1.6;
}

.special-wrapper .btn-primary {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(90deg, #50b1d9, #2a3a85);
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.special-wrapper .btn-primary:hover {
  background: linear-gradient(90deg, #2a3a85, #50b1d9);
  transform: scale(1.05);
}
h1.text-centered {
    padding: 40px;
    text-align: center;
}

/* Entrance Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-listing
.blog-listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg, #f9fafb);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.75rem 0;
  color: var(--text, #222);
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--text, #555);
  margin-bottom: 1rem;
}

.blog-card .meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.blog-card .read-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent, #0056cc);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card .read-more:hover {
  color: var(--accent-hover, #0040aa);
}

.blog-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.blog-feature-image {
  margin-bottom: 1.5rem;
  text-align: center;
}

.blog-feature-image img {
  width: 100%;
  max-width: 750px;
  border-radius: 16px;
  padding-top: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 40px;
}

.blog-header h1 {
  font-size: 2rem;
  color: var(--text, #222);
  margin-bottom: 0.5rem;
}

.blog-header .meta {
  font-size: 0.95rem;
  color: var(--text-secondary, #777);
}

.comment-section {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem auto 2rem auto;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px var(--shadow);
  max-width: 750px;
}

.comment-section h3 {
  color: var(--text-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
}

.comment-section p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 1.5rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-section textarea,
.comment-section input[type="text"],
.comment-section input[type="email"] {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-size: var(--text-base);
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.comment-section textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.comment-section textarea:focus,
.comment-section input[type="text"]:focus,
.comment-section input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-light-blue);
  box-shadow: 0 0 0 3px rgba(80, 177, 217, 0.1);
  background: var(--bg);
}

.comment-section textarea::placeholder,
.comment-section input::placeholder {
  color: var(--text-muted);
  font-size: var(--text-base);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.5rem 0;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--primary-light-blue);
}

.comment-form .post-comment {
  background: linear-gradient(135deg, var(--primary-light-blue), var(--primary-blue));
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(80, 177, 217, 0.2);
}

.comment-form .post-comment:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 177, 217, 0.3);
}

.comment-form .post-comment:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(80, 177, 217, 0.2);
}

.related-posts {
  margin-top: 3rem;
}

.related-posts h3 {
  margin-bottom: 1rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.related-post-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.related-post-card:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.related-post-card img {
  width: 100%;
  height: auto;
  display: block;
}

.related-post-card p {
  padding: 0.8rem;
  font-size: 0.95rem;
}

textarea {
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}
.blog-article {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  max-width: 750px;
  background: var(--bg, #f9f9f9);
  margin: 2rem auto;
  padding: 1rem;
  color: var(--text, #333);
}

.blog-article header h1 {
  font-size: 2rem;
  color: var(--text, #222);
}

.blog-article .tagline {
  font-size: 1.1rem;
  color: var(--text-secondary, #666);
  margin-bottom: 0.5rem;
}

.blog-article .hashtags {
  font-size: 0.9rem;
  color:var(--text-secondary, #666);
  margin-bottom: 2rem;
}

.blog-article h2 {
  margin-top: 2rem;
  color: var(--heading, #003366);
}

.blog-article h3,
.blog-article h4 {
  margin-top: 2rem;
  color: var(--heading, #005599);
}

.blog-article ul {
  padding-left: 1.5rem;
}

.blog-article blockquote {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg-secondary, #f5f5f5);
  border-left: 4px solid var(--accent, #0066cc);
  font-style: italic;
  color: var(--text-tertiary, #444);
}

/* Blog Search Styles */
.blog-search {
  position: relative;
  max-width: 400px;
  margin: 2rem auto;
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: var(--accent, #0066cc);
}

.clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-search:hover {
  background: #f0f0f0;
  color: #333;
}

.no-results {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary, #666);
}

.no-results h3 {
  margin-bottom: 0.5rem;
  color: var(--text, #333);
}

/* Social Sharing Styles */
.social-sharing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-secondary, #f8f9fa);
  border-radius: 8px;
  flex-wrap: wrap;
}

.share-label {
  font-weight: 600;
  color: var(--text-secondary, #666);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.twitter {
  background: #1DA1F2;
}

.share-btn.linkedin {
  background: #0077B5;
}

.share-btn.facebook {
  background: #1877F2;
}

.share-btn.email {
  background: #34495e;
}

.share-btn.copy {
  background: #6c757d;
}

.share-btn.twitter:hover {
  background: #1a91da;
}

.share-btn.linkedin:hover {
  background: #006398;
}

.share-btn.facebook:hover {
  background: #166fe5;
}

.share-btn.email:hover {
  background: #2c3e50;
}

.share-btn.copy:hover {
  background: #5a6268;
}

.careers-section {
  padding: 20px 4rem 2rem;
  background: var(--bg);
  text-align: center;
}

/* Blog Category Styles */
.blog-categories {
  margin: 2rem 0 1rem;
  text-align: center;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.category-btn {
  background: var(--card-bg);
  border: 2px solid var(--border);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.category-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.blog-category-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Mobile Responsive Styles */
@media (max-width: 768px) {
  .category-filters {
    gap: 0.25rem;
  }
  
  .category-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .blog-category-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .blog-card {
    margin: 0 0.5rem;
  }
  
  
  .blog-header h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .blog-article {
    margin: 1rem auto;
    padding: 1rem;
    max-width: 100%;
  }
  
  .blog-feature-image {
    margin-bottom: 1rem;
  }
  
  .blog-feature-image img {
    border-radius: 12px;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comment-section {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
  
  .comment-section h3 {
    font-size: var(--text-lg);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comment-form textarea {
    min-height: 100px;
  }
  
  .comment-form .post-comment {
    width: 100%;
    padding: 14px;
    justify-self: stretch;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .blog-card {
    margin: 0;
    border-radius: 8px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-card h2 {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .blog-header h1 {
    font-size: 1.5rem;
  }
  
  .blog-article {
    padding: 0.75rem;
  }
  
  .blog-article h2 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  
  .blog-article h3 {
    font-size: 1.2rem;
  }
  
  .blog-feature-image img {
    border-radius: 8px;
  }
  
  .comment-section {
    padding: 1rem;
    margin-top: 1.5rem;
  }
  
  .comment-section textarea,
  .comment-section input[type="text"],
  .comment-section input[type="email"] {
    padding: 14px;
    font-size: var(--text-sm);
  }
  
  .comment-form .post-comment {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--text-sm);
  }
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.careers-block {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,  0, 0, 0.06);
  text-align: left;
}

.block-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text, #002b5c);
  margin-bottom: 1rem;
}

.block-text {
  color: var(--text-secondary, #415a6c);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Global heading styles are defined in the typography system above */


/* --- Section 1: Hook --- */
.hook-section {
    text-align: center;
    padding: var(--section-padding);
}

.hook-section .sub-headline {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* --- Section 2: Tier 1 - Core Problem Solvers --- */
.tier-one-section {
    background-color: var(--bg);
}

.feature-spotlight {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding:40px;
}

.feature-spotlight:last-child {
    margin-bottom: 0;
}

.feature-spotlight.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-grey);
    font-style: italic;
    border: 1px solid var(--color-border);
}

.feature-text {
    flex: 1;
}

.feature-icon-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-title);
}

.feature-text ul {
    list-style: none;
    padding-left: 0;
}

.feature-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-text li::before {
    content: '✔';
    color: var(--color-accent-blue);
    position: absolute;
    left: 0;
}

/* Feature Image Styles */
.feature-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
}

/* Pipeline Images Layout */
.pipeline-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.primary-pipeline-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-pipeline-image {
    width: 80%;
    max-width: 350px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.pipeline-images:hover .primary-pipeline-image {
    transform: translateY(-3px);
}

.pipeline-images:hover .detail-pipeline-image {
    transform: translateY(-2px);
    opacity: 1;
}

/* --- Section 3: Tier 2 - Critical Enablers --- */


.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 14px rgba(50,50,93,0.1), 0 3px 6px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

/* --- Section 4: Tier 3 - Foundation --- */
.tier-three-section {
    background-color: var(--bg-secondary);
    padding: 4rem 0;
}

.foundation-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.foundation-text {
    flex: 1;
}

.foundation-visual {
    flex: 1;
    background-color: var(--color-light-grey-bg);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-grey);
    font-style: italic;
    border: 1px solid var(--color-border);
}

.foundation-feature {
    margin-bottom: 2rem;
}

.foundation-feature:last-child {
    margin-bottom: 0;
}

/* --- Section 5: CTA --- */
.cta-section {
    background-color: var(--bg);
    text-align: center;
    padding: 30px;
}


.cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }

    .feature-spotlight, .feature-spotlight.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text ul {
        text-align: left;
    }
    
    /* Mobile feature image styles */
    .feature-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .pipeline-images {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .primary-pipeline-image,
    .detail-pipeline-image {
        max-width: 100%;
        width: 90%;
    }
    
    .foundation-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-visual, .foundation-visual {
        width: 100%;
        margin-bottom: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --section-padding-large: 5rem 0;
        --section-padding-medium: 3rem 0;
        --section-padding-small: 2rem 0;
        --section-padding-xs: 1.5rem 0;
        /* Responsive typography scale */
        --text-5xl: 2.5rem;      /* Reduce main heading size */
        --text-4xl: 2rem;        /* Reduce secondary heading size */
        --text-3xl: 1.75rem;     /* Reduce tertiary heading size */
    }
    
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
}

/* Extra small screens */
@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
        --section-padding-large: 4rem 0;
        --section-padding-medium: 2.5rem 0;
        --section-padding-small: 2rem 0;
        --section-padding-xs: 1.5rem 0;
    }
}

.solutions-by-role-section {
  background: var(--secondary-light-grey);
  padding: 30px;
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

  
.role-card {
  background: var(--card-bg, #fff);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(42, 58, 133, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(42, 58, 133, 0.1);
}

.role-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.role-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

  
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--text-on-primary, #fff);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.role-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
}

.role-card h3 {
  font-size: 1.5rem;
  color: var(--text-title);
  margin-bottom: 16px;
}

.role-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.role-benefits {
  margin-bottom: 32px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
}

.benefit-icon {
  color: var(--accent-green);
  flex-shrink: 0;
}

.role-cta {
  width: 100%;
  padding: 12px 24px;
  background: var(--secondary-light-grey);
  border: 2px solid var(--secondary-light-grey);
  color: var(--text-title);
  border-radius: var(--radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.role-cta.primary {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.role-cta:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.role-cta.primary:hover {
  background: var(--primary-dark-blue);
  border-color: var(--primary-dark-blue);
}

/* Responsive design for role cards */
@media (max-width: 1024px) {
  .role-cards {
    gap: 24px;
    margin-top: 40px;
  }
  
  .role-card {
    padding: 32px 24px;
  }
  
  .role-card.featured {
    transform: scale(1.02);
  }
  
  .role-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 768px) {
  .role-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  
  .role-card {
    padding: 28px 20px;
    margin: 0 auto;
    max-width: 400px;
  }
  
  .role-card.featured {
    transform: none;
  }
  
  .role-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .role-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .role-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .role-description {
    margin-bottom: 24px;
    font-size: 0.95rem;
  }
  
  .role-benefits {
    margin-bottom: 24px;
  }
  
  .benefit {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .role-cards {
    gap: 16px;
    margin-top: 24px;
  }
  
  .role-card {
    padding: 24px 16px;
    border-radius: 16px;
    max-width: 100%;
  }
  
  .role-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .role-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .role-description {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  
  .role-benefits {
    margin-bottom: 20px;
  }
  
  .benefit {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .role-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
.tos-section {
 
  color: var(--text);
  font-family: 'Segoe UI', Roboto, sans-serif;
  max-width: 960px;
  margin: auto;
  line-height: 1.6;
}

.tos-section .container {
  padding: 0 16px;
}

.toc ul {
  padding-left: 20px;
  margin-bottom: 40px;
}

.toc ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.toc ul li a {
  color: #0077cc;
  text-decoration: none;
}

.toc ul li a:hover {
  text-decoration: underline;
}

.tos-content section {
  margin-bottom: 40px;
}

.tos-content h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}
.faq-section {
  padding: 32px 16px;
  max-width: 800px;
  margin: auto;
}
.faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}
.faq-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: #555;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px 18px;
  background-color: #fafafa;
  cursor: pointer;
  color: black;
  transition: all 0.3s ease;
}
.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item[open] {
  background-color: #f0f8ff;
}
.faq-answer {
  margin-top: 12px;
  padding-left: 32px;
  color: #333;
}
.icon {
  font-size: 1.2rem;
}
.faq-item summary {
  position: relative;
  padding-right: 24px; /* space for the arrow */
}

.faq-item summary::after {
  content: "▾"; /* down arrow */
  position: absolute;
  right: 0;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq-item[open] summary::after {
  transform: rotate(180deg); /* up arrow */
}
/* Container + Typography */
.db-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.db-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.db-subtitle {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 48px;
  color: #5a5a5a;
}

/* Section Backgrounds */
.db-overview { background-color: #f5f9ff; }
.db-benefits { background-color: #ffffff; }
.db-recovery { background-color: #f0f7f4; }
.db-compliance { background-color: #fff7f3; }

/* Grid Layout */
.db-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.db-feature {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 1px #e1e1e1;
  transition: 0.3s ease all;
}

.db-feature:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.db-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.db-feature p {
  font-size: 1rem;
  color: #4a4a4a;
}

/* Recovery List */
.db-list {
  list-style: none;
  padding-left: 0;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.db-list li {
  font-size: 1.125rem;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* CTA Button */
.db-btn-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.db-btn-primary:hover {
  background-color: #1e40af;
}

.db-footer {
  text-align: center;
}
/* New Solutions Page Styles */
.solutions-hero {
  padding: 30px 0 80px;
  text-align: center;
  background-color: var(--bg);
}

.solutions-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.solutions-hero-title {
  font-size: var(--text-4xl);
  color: var(--text-title);
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.solutions-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-subtitle);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Products Overview Section */
.products-overview-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card.featured {
  border-color: var(--primary-light-blue);
  transform: translateY(-8px);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #10b981 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 600;
}

.product-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--neutral-grey);
}

.product-icon {
  font-size: 64px;
  margin-bottom: 16px;
  display: block;
}

.product-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-tagline {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.product-content {
  margin-bottom: 32px;
}

.product-description {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--widget-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.highlight-icon {
  font-size: 20px;
}

.product-features h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

/* Responsive design for product cards */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    padding: 30px;
  }
}

@media (max-width: 800px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  
  .product-card {
    padding: 24px;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .product-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  
  .product-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .product-title {
    font-size: var(--text-xl);
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .product-actions .btn-primary,
  .product-actions .btn-secondary {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .product-icon {
    font-size: 40px;
  }
  
  .product-title {
    font-size: var(--text-lg);
  }
  
  .product-tagline {
    font-size: var(--text-sm);
  }
  
  .highlight {
    padding: 10px 12px;
  }
}

/* Core Capabilities Section */
.core-capabilities-section {
  background: var(--bg);
  padding-bottom: 20px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.capability {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.capability:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.capability-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.capability h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.capability p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* =====================================
   DataMigration Page Specific Styles
   ===================================== */

/* Migration Hero Section */
.migration-hero {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
  color: var(--text-light);
  padding: var(--section-padding-large);
  text-align: center;
}

.migration-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.migration-hero .hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  margin-bottom: 24px;
  color: var(--text-light);
}

.migration-hero .hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-on-dark);
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--accent-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--text-base);
  color: var(--text-on-dark);
  opacity: 0.9;
}

/* Migration Overview Section */
.migration-overview {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-item {
  background: var(--bg);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-item h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Migration Workflow Section */
.migration-workflow {
  padding: var(--section-padding);
  background: var(--bg);
  margin-bottom: 64px; /* Increased bottom margin for better section separation */
  overflow: hidden; /* Ensure content doesn't overflow outside the section */
}

.workflow-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

/* Workflow Grid Layout */
.workflow-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Phase Navigation */
.phase-navigation {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.phase-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-secondary);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.phase-nav-btn:hover {
  border-color: var(--primary-light-blue);
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.phase-nav-btn.active {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42, 58, 133, 0.3);
}

.phase-number {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--primary-blue);
}

.phase-nav-btn.active .phase-number {
  color: white;
}

.phase-nav-title {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
}

.phase-nav-btn.active .phase-nav-title {
  color: white;
}

/* Hero Phase Container */
.hero-phases-container {
  position: relative;
  min-height: 800px; /* Increased for better content containment */
}

/* Hero Phase Cards */
.hero-phase {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%);
  border-radius: 24px;
  padding: 48px;
  border: 2px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.6s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-phase.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  border-color: var(--primary-light-blue);
  box-shadow: 0 20px 60px rgba(42, 58, 133, 0.15);
}

/* Hero Phase Header */
.hero-phase-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-border);
}

.phase-icon {
  font-size: 4rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(42, 58, 133, 0.2);
}

.phase-title-section {
  flex: 1;
}

.hero-phase-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.phase-subtitle {
  font-size: var(--text-lg);
  color: var(--text-subtitle);
  font-weight: var(--font-medium);
  margin: 0;
}

/* Hero Phase Content */
.hero-phase-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Problem Solved Section */
.problem-solved {
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 200, 216, 0.1), rgba(80, 177, 217, 0.1));
  border-radius: 16px;
  border-left: 4px solid var(--primary-light-blue);
}

.problem-badge {
  display: inline-block;
  background: var(--primary-light-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-solved p {
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
  font-weight: var(--font-medium);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 100%;
}

/* Dynamic grid adjustments based on number of children */

/* Adjust container height when there are 4 cards for better containment */


/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .feature-grid:has(.feature-item:nth-child(4):not(.feature-item:nth-child(5))) {
    /* 4 items on tablet: still 2x2 but smaller */
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid:has(.feature-item:nth-child(3):not(.feature-item:nth-child(4))) {
    /* 3 items on tablet: 3x1 but might wrap */
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Adjust container height for tablets */
  .hero-phases-container {
    min-height: 900px;
  }
  
  .hero-phases-container:has(.feature-grid .feature-item:nth-child(4):not(.feature-item:nth-child(5))) {
    min-height: 1000px;
    margin-bottom: 48px;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-phases-container {
    min-height: 800px;
    margin-bottom: 32px;
  }
  
  .hero-phases-container:has(.feature-grid .feature-item:nth-child(4):not(.feature-item:nth-child(5))) {
    min-height: 1100px; /* More height needed for mobile 4-card layouts */
    margin-bottom: 48px;
  }

}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.feature-item .feature-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(42, 58, 133, 0.1), rgba(80, 177, 217, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.feature-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Legacy workflow styles - keeping for compatibility */
.workflow-phase {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.workflow-phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.phase-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}

.phase-description {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-light-blue);
}

.phase-description p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.phase-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.mini-step:hover {
  transform: translateX(8px);
  border-color: var(--primary-light-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mini-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
}

.mini-content h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.mini-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Process Flow */
.process-flow {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.flow-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 32px;
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  min-width: 80px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.flow-item:hover,
.flow-item.active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.flow-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.flow-item span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-light);
}

.flow-arrow {
  font-size: var(--text-xl);
  color: var(--text-light);
  opacity: 0.7;
  margin: 0 8px;
}

/* Migration Benefits Section */
.migration-benefits {
  margin: 30px;
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--bg);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Technology Stack Section */

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.tech-feature {
  padding: 24px;
  border-left: 4px solid var(--primary-light-blue);
  background: var(--bg-secondary);
  border-radius: 0 12px 12px 0;
  transition: all 0.3s ease;
}

.tech-feature:hover {
  transform: translateX(8px);
  border-left-color: var(--accent-green);
}

.tech-feature h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.tech-feature p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Migration CTA Section */
.migration-cta {
  padding: var(--section-padding);
  background: var(--bg);
  color: var(--text-light);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-bottom: 24px;
  color: var(--text-light);
}

.cta-description {
  font-size: var(--text-lg);
  color: var(--text-on-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for Migration Page */
@media (max-width: 768px) {
  .migration-hero .hero-title {
    font-size: var(--text-4xl);
  }
  
  .migration-hero .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .workflow-phase {
    padding: 24px;
  }
  
  .mini-step {
    padding: 12px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
  
  .overview-features {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-title {
    font-size: var(--text-3xl);
  }
  
  .flow-container {
    flex-direction: column;
    gap: 12px;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
  
  .process-flow {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .migration-hero {
    padding: var(--section-padding-medium);
  }
  
  .workflow-phase {
    padding: 20px;
  }
  
  .feature-item,
  .benefit-card {
    padding: 24px;
  }
  
  .phase-title {
    font-size: var(--text-lg);
  }
  
  .mini-content h4 {
    font-size: var(--text-sm);
  }
  
  .mini-content p {
    font-size: var(--text-xs);
  }
  
  .mini-number {
    width: 28px;
    height: 28px;
    font-size: var(--text-xs);
  }
  
  .flow-title {
    font-size: var(--text-xl);
  }
  
  .flow-item {
    min-width: 60px;
    padding: 12px 8px;
  }
}

/* =====================================
   DataBackup Page Specific Styles
   ===================================== */

/* Backup Hero Section */
.backup-hero {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
  color: var(--text-light);
  padding: var(--section-padding-large);
  text-align: center;
}

.backup-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.backup-hero .hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  margin-bottom: 24px;
  color: var(--text-light);
}

.backup-hero .hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-on-dark);
  margin-bottom: 48px;
  line-height: 1.6;
}

/* Backup Overview Section */
.backup-overview {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

/* Backup Types Section */
.backup-types {
  padding: var(--section-padding);
  background: var(--bg);
}

.types-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.backup-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.backup-type-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.backup-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.backup-type-card.featured {
  border-color: var(--accent-green);
  position: relative;
}

.backup-type-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--accent-green);
  color: white;
  padding: 4px 40px;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  transform: rotate(45deg);
}

.backup-type-card.premium {
  border-color: var(--accent-orange);
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.1) 0%, var(--bg-secondary) 100%);
}

.type-header {
  text-align: center;
  margin-bottom: 24px;
}

.type-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.type-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.type-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-style: italic;
}

.type-content {
  text-align: left;
}

.type-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.type-benefits {
  margin-bottom: 24px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.benefit-icon {
  color: var(--accent-green);
  font-weight: var(--font-bold);
}

.type-use-cases h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.type-use-cases ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-use-cases li {
  padding: 4px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.type-use-cases li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-light-blue);
  font-weight: var(--font-bold);
}

/* Backup Features Section */
.backup-features {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.feature-header {
  text-align: center;
  margin-bottom: 24px;
}

.feature-header .feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-header h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-details li {
  padding: 6px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.feature-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: var(--font-bold);
}

/* Backup Benefits Section */
.backup-benefits {
  padding: var(--section-padding);
  background: var(--bg);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-highlight {
  text-align: center;
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.benefit-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light-blue);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.benefit-highlight h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.benefit-highlight p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Backup CTA Section */
.backup-cta {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
  color: var(--text-light);
  text-align: center;
}

.backup-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.backup-cta .cta-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-bottom: 24px;
  color: var(--text-light);
}

.backup-cta .cta-description {
  font-size: var(--text-lg);
  color: var(--text-on-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.backup-cta .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for Backup Page */
@media (max-width: 768px) {
  .backup-hero .hero-title {
    font-size: var(--text-4xl);
  }
  
  .backup-hero .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .backup-types-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-showcase {
    grid-template-columns: 1fr;
  }
  
  .overview-features {
    grid-template-columns: 1fr;
  }
  
  .backup-cta .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .backup-cta .cta-title {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  .backup-hero {
    padding: var(--section-padding-medium);
  }
  
  .backup-type-card,
  .feature-card,
  .benefit-highlight {
    padding: 24px;
  }
  
  .type-title {
    font-size: var(--text-xl);
  }
  
  .type-icon,
  .feature-icon,
  .highlight-icon {
    font-size: 36px;
  }
  
  .backup-types-grid {
    gap: 20px;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .benefits-showcase {
    gap: 20px;
  }
}

/* =====================================
   Salesforce Integration Styles
   ===================================== */

/* Trusted Integrations Section */
.trusted-integrations {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.integrations-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.integration-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--primary-light-blue);
}

.integration-card.featured {
  border-color: var(--accent-green);
  background: linear-gradient(135deg, rgba(30, 201, 139, 0.05) 0%, var(--bg) 100%);
}

.integration-card.featured::before {
  content: '⭐ FEATURED';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--accent-green);
  color: var(--color-white);
  padding: 4px 40px;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  transform: rotate(45deg);
}

.integration-header {
  margin-bottom: 24px;
  position: relative;
}

.integration-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}

.salesforce-logo {
  height: 50px;
}

.integration-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

.integration-badge {
  background: var(--accent-green);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 8px;
}

.integration-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.integration-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.integration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-tag {
  background: var(--primary-light-blue);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 16px;
}

/* Salesforce Spotlight Section */
.salesforce-spotlight {
  padding: var(--section-padding);
  background: var(--bg);
}

.spotlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.salesforce-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.spotlight-logo {
  height: 32px;
  width: auto;
}

.salesforce-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin: 0;
}

.spotlight-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.salesforce-capabilities {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.capability-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.capability-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.capability-content h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.capability-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.salesforce-cta {
  margin-top: 32px;
}

.spotlight-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.salesforce-clouds {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 2;
  border: 2px solid var(--color-border);
}

.center-logo img {
  width: 40px;
  height: auto;
}

.cloud-item {
  position: absolute;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  text-align: center;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.cloud-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px var(--shadow);
}

.cloud-item.sales {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.cloud-item.service {
  top: 30%;
  right: 10%;
  animation-delay: 1.5s;
}

.cloud-item.marketing {
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}

.cloud-item.commerce {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4.5s;
}

.cloud-icon {
  font-size: 20px;
}

.cloud-name {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-primary);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design for Salesforce Sections */
@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  
  .integration-card {
    padding: 24px;
  }
  
  .spotlight-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .salesforce-header {
    justify-content: center;
    text-align: center;
  }
  
  .salesforce-header h2 {
    font-size: var(--text-2xl);
  }
  
  .salesforce-clouds {
    width: 280px;
    height: 280px;
  }
  
  .cloud-item {
    min-width: 80px;
    padding: 8px 12px;
  }
  
  .cloud-name {
    font-size: var(--text-xs);
  }
}

@media (max-width: 480px) {
  .integration-card {
    padding: 20px;
  }
  
  .salesforce-capabilities {
    gap: 16px;
  }
  
  .capability-item {
    gap: 12px;
  }
  
  .salesforce-clouds {
    width: 240px;
    height: 240px;
  }
  
  .center-logo {
    width: 60px;
    height: 60px;
  }
  
  .center-logo img {
    width: 30px;
  }
}

/* CI/CD Excellence Section */
.cicd-spotlight {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.cicd-header {
  margin-bottom: 64px;
}

.cicd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.cicd-feature {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-align: center;
}

.cicd-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--primary-light-blue);
}

.cicd-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.cicd-feature h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cicd-feature p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.cicd-callout {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-light-blue) 100%);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-white);
  margin-top: 48px;
}

.callout-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.callout-content h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 0 0 12px 0;
  color: var(--color-white);
}

.callout-content p {
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
  color: var(--color-white);
  opacity: 0.95;
}

/* Responsive Design for CI/CD Section */
@media (max-width: 768px) {
  .cicd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cicd-feature {
    padding: 24px;
  }
  
  .cicd-callout {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .callout-icon {
    font-size: 36px;
  }
}

/* Product CI/CD Showcase Section */
.product-cicd-showcase {
  padding: var(--section-padding);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.product-cicd-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light-blue) 0%, var(--accent-green) 100%);
  opacity: 0.05;
  z-index: 0;
}

.showcase-header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-light-blue) 100%);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.badge-icon {
  font-size: 16px;
}

.cicd-showcase-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.showcase-visual {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--color-border);
}

.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
}

.flow-stage.active .stage-icon {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-light-blue) 100%);
  color: var(--color-white);
  transform: scale(1.1);
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.stage-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stage-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.4;
}

.flow-connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 40px;
}

.connector-line {
  width: 2px;
  height: 20px;
  background: var(--color-border);
  margin-bottom: 4px;
}

.connector-arrow {
  font-size: 18px;
  color: var(--primary-light-blue);
  font-weight: bold;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--primary-light-blue);
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.feature-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.competitive-advantage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 48px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.advantage-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.advantage-icon {
  font-size: 48px;
  flex-shrink: 0;
  opacity: 0.9;
}

.advantage-text h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin: 0 0 16px 0;
  color: var(--color-white);
}

.advantage-text p {
  font-size: var(--text-lg);
  line-height: 1.6;
  margin: 0;
  color: var(--color-white);
  opacity: 0.95;
}

.advantage-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-white);
  opacity: 0.9;
  font-weight: 500;
}

.showcase-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.showcase-cta h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.showcase-cta p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for CI/CD Showcase */
@media (max-width: 1024px) {
  .competitive-advantage {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .advantage-content {
    justify-content: center;
  }
  
  .advantage-stats {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pipeline-flow {
    flex-direction: column;
    gap: 24px;
  }
  
  .flow-connector {
    transform: rotate(90deg);
  }
  
  .connector-arrow {
    transform: rotate(90deg);
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .competitive-advantage {
    padding: 32px 24px;
  }
  
  .advantage-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .showcase-visual {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .flow-stage {
    min-width: 100px;
  }
  
  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .advantage-icon {
    font-size: 36px;
  }
}

/* Recent Blogs Section Styles */
.blog-navigation {
  background: var(--card-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
  margin: 3rem 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.recent-blogs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.recent-blogs-header h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.recent-blogs-header p {
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.recent-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.recent-blog-card {
  background: var(--bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.recent-blog-card:hover {
  border-color: var(--primary-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 177, 217, 0.15);
}

.recent-blog-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
}

.recent-blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recent-blog-card .blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-light-blue);
  color: white;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.recent-blog-card h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.recent-blog-card .blog-meta {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.recent-blog-card .blog-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.see-all-blogs {
  text-align: center;
}

.see-all-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-light-blue), var(--primary-blue));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.see-all-button:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 177, 217, 0.3);
}

.see-all-button svg {
  width: 16px;
  height: 16px;
}

/* Recent Blogs Mobile Responsive */
@media (max-width: 768px) {
  .blog-navigation {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  
  .recent-blogs-header h3 {
    font-size: var(--text-xl);
  }
  
  .recent-blogs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .recent-blog-image {
    height: 140px;
  }
  
  .recent-blog-content {
    padding: 1.25rem;
  }
  
  .recent-blog-card h4 {
    font-size: var(--text-base);
  }
  
  .see-all-button {
    padding: 10px 20px;
    font-size: var(--text-sm);
  }

  /* Hero Workflow Mobile Responsive */
  .phase-navigation {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .phase-nav-btn {
    flex-direction: row;
    padding: 12px 16px;
    min-width: auto;
    width: 100%;
  }

  .phase-number {
    font-size: var(--text-base);
  }

  .phase-nav-title {
    font-size: var(--text-sm);
  }

  .hero-phase {
    padding: 24px;
    margin: 0 -8px;
    border-radius: 16px;
  }

  .hero-phase-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .phase-icon {
    font-size: 3rem;
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }

  .hero-phase-title {
    font-size: var(--text-2xl);
  }

  .phase-subtitle {
    font-size: var(--text-base);
  }

  .problem-solved {
    padding: 16px;
  }

  .problem-solved p {
    font-size: var(--text-base);
  }

  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .feature-item {
    padding: 16px;
  }

  .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .feature-content h4 {
    font-size: var(--text-base);
  }

  .feature-content p {
    font-size: var(--text-sm);
  }

  .hero-phases-container {
    min-height: 500px;
  }
}

/* =====================================================
   NEXUS / AGENTIC AI PAGE  Missing CSS
   ===================================================== */

/* Enables Grid  5-capability card layout */
.enables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

/* Enable Card */
.enable-card {
  background: var(--card-bg, #fff);
  padding: 2rem 2rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(42, 58, 133, 0.07);
  border: 1px solid var(--color-border, #e6ebf1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.enable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-light-blue, #50b1d9) 0%, var(--primary-blue, #2a3a85) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.enable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(42, 58, 133, 0.14);
  border-color: var(--primary-light-blue, #50b1d9);
}

.enable-card:hover::before {
  opacity: 1;
}

/* Enable header row: big faded number + emoji icon */
.enable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.enable-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light-blue, #50b1d9);
  opacity: 0.2;
  line-height: 1;
  user-select: none;
}

.enable-icon {
  font-size: 2.25rem;
  opacity: 0.85;
  line-height: 1;
}

/* Comparison Table  styled header + zebra rows */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(42, 58, 133, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
}

.comparison-table thead {
  background: var(--primary-blue, #2a3a85);
  color: #fff;
}

.comparison-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border, #e6ebf1);
  transition: background 0.15s;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-secondary, #f6f9fc);
}

.comparison-table tbody tr:hover {
  background: rgba(28, 168, 216, 0.05);
}

.comparison-table tbody td {
  padding: 0.95rem 1.5rem;
  color: var(--text-secondary, #6b7280);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary, #0b3558);
}

.comparison-table tbody td:last-child {
  color: var(--text-title, #1e4483);
  font-weight: 500;
}

/* Responsive overrides */
@media (max-width: 768px) {
  .enables-grid {
    grid-template-columns: 1fr;
  }

  .enable-card {
    padding: 1.5rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }
}
