

/* ---- PAGE SHELL ---- */
* { box-sizing: border-box; }
body { margin: 0; }
#page-container { position: relative; overflow-x: hidden; }

/* ---- FIXED HEADER ---- */
#main-header {
  position: fixed; width: 100%; top: 0; z-index: 99999;
  background: rgba(1,37,66,0);
  transition: background .3s, box-shadow .3s;
  line-height: 0;
}
#main-header-wrap {
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px;
}
#logo a { display: inline-block; line-height: 0; }
#logo img { max-height: 44px; width: auto; }

/* ---- DESKTOP NAV ---- */
#top-navigation { display: flex; align-items: center; }
#top-menu { display: flex; align-items: center; height: 80px; margin: 0; padding: 0; list-style: none; }
#top-menu > li { position: relative; display: inline-flex; align-items: center; height: 80px; }
#top-menu > li > a {
  display: inline-flex; align-items: center; height: 80px;
  padding: 0; margin-left: 22px;
  color: #fff; font-family: 'Assistant', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  white-space: nowrap; transition: color .2s; text-decoration: none;
}
#top-menu > li > a:hover { color: rgba(255,255,255,.75); }
#top-menu .menu-item-has-children > a::after { content: " ▾"; font-size: 12px; opacity: .5; margin-left: 3px; }

.nav-cta > a {
  background: transparent !important;
  border: 2px solid #fff !important;
  border-radius: 30px !important;
  color: #fff !important;
  padding: 8px 20px !important;
  margin-left: 12px;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  height: auto !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center;
  text-decoration: none;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
}
.nav-cta > a:hover {
  background: #fff !important;
  color: #004363 !important;
  opacity: 1;
}

/* ---- MOBILE HAMBURGER ---- */
#mobile-menu-toggle {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; background: none; border: none; padding: 4px;
  z-index: 99999;
}
#mobile-menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
#mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
#mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV DROPDOWN ---- */
#memo-mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(0,30,50,.97); z-index: 99998;
  padding: 20px 0 30px; overflow-y: auto;
  max-height: calc(100vh - 80px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
#memo-mobile-nav.is-open { display: block; }
#memo-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
#memo-mobile-nav ul li a {
  display: block; padding: 14px 30px;
  color: #fff; font-family: 'Assistant', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
#memo-mobile-nav ul li a:hover { background: rgba(255,255,255,.06); }
#memo-mobile-nav .mobile-cta a {
  margin: 16px 30px 0; display: block; text-align: center;
  background: #57b378; color: #fff; padding: 14px;
  border-radius: 30px; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; border: none;
}

/* ---- HERO ---- */
.et_pb_fullwidth_section { padding: 0; }
.et_pb_slider { position: relative; overflow: hidden; }
.et_pb_slide {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 6%;
  background-size: cover; background-position: center;
}
.et_pb_slide_overlay_container {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(0,24,40,.90) 0%, rgba(0,38,62,.74) 42%, rgba(0,52,80,.42) 100%);
}
.et_pb_slides { position: relative; z-index: 2; width: 100%; }
.et_pb_container { width: 75%; }
.et_pb_slider_container_inner { padding: 12% 0; }
.et_pb_slide_description { max-width: 75%; }
.et_pb_slide_title {
  font-family: 'Assistant', sans-serif;
  font-size: 48px; font-weight: 700;
  color: #fff; line-height: 1.2;
  margin: 0 0 20px;
}
.scale-underline {
  display: inline-block;
  position: relative;
  padding-bottom: .08em;
  background-image: url('scale-underline.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 106% auto;
}
.et_pb_slide_content { font-size: 18px; color: #fff; margin-bottom: 24px; }
.sfly_inline_button_row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.hero-aws-credential {
  position: absolute;
  right: 8%;
  bottom: calc(12% + 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 18px 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
}
.hero-aws-credential img {
  height: 90px;
  width: auto;
  flex-shrink: 0;
}
.hero-aws-credential-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-aws-credential-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.hero-aws-credential-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.hero-aws-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 9px; padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: 'Assistant', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.4px; color: #6fd49b; text-decoration: none;
  white-space: nowrap; transition: color .2s;
}
.hero-aws-link:hover { color: #fff; }
.hero-aws-link i { font-size: 13px; }

/* ---- SECTION BASE ---- */
.et_pb_section { position: relative; padding: 80px 0; }
.et_pb_fullwidth_section { padding: 0 !important; }
.et_pb_row { width: 90%; max-width: 1400px; margin: 0 auto; padding: 0; }
.et_pb_row::after { content: ''; display: table; clear: both; }

/* Column grid */
.et_pb_gutters3 { display: flex; flex-wrap: wrap; gap: 0; }
.et_pb_gutters3 .et_pb_column_4_4 { width: 100%; }
.et_pb_gutters3 .et_pb_column_2_3 { width: 64.833%; padding-right: 40px; }
.et_pb_gutters3 .et_pb_column_1_3 { width: 35.167%; }
.et_pb_gutters3 .et_pb_column_1_2 { width: 50%; }
.et_pb_gutters3 .et_pb_column_1_4 { width: 25%; }

/* ---- HERO EYEBROW + POWERED LINE ---- */
.hero-eyebrow {
  font-family: 'Assistant', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 6px;
  text-transform: uppercase; color: #57b378; margin: 0 0 18px;
}
.hero-powered {
  font-family: 'Assistant', sans-serif; font-size: 16px !important;
  font-weight: 400; letter-spacing: 1px; color: rgba(255,255,255,.75) !important;
  margin-bottom: 30px !important;
}
.hero-powered strong { font-weight: 800; color: #fff; letter-spacing: 2px; }

/* ---- SECTION 2: HOT TOPICS CAROUSEL ---- */


/* ---- SERVICE TABS (legacy, retained for other refs) ---- */
.memo-service-tabs-row { padding: 0; width: 100%; max-width: 100%; }

/* ---- COBRA SECTION LAYOUT ---- */
.cobra-two-col {
  display: flex; flex-wrap: wrap;
  width: 90%; max-width: 1100px; margin: 0 auto;
}
.cobra-col-text { flex: 2; min-width: 300px; padding-right: 50px; }
.cobra-col-stats { flex: 1; min-width: 220px; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 52px; }
.cobra-stats-stack { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }

/* ---- COBRA SECTION 2 LAYOUT ---- */
.cobra-stepper {
  display: flex; align-items: flex-start; gap: 0;
  width: 100%; margin-bottom: 20px;
}
.cobra-step { flex: 1; text-align: center; position: relative; }
.cobra-step-line-right {
  position: absolute; top: 30px;
  left: calc(50% + 30px); right: 0;
  height: 2px; background: #c8d4de;
}
.cobra-step-line-left {
  position: absolute; top: 30px;
  right: calc(50% + 30px); left: 0;
  height: 2px; background: #c8d4de;
}
.memo-assessment-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 12px;
}

/* ---- AWS SECTION ---- */
.aws-flex {
  display: flex; align-items: center; gap: 60px; flex-wrap: wrap;
  width: 88%; max-width: 900px; margin: 0 auto;
}
.aws-text { flex: 1; min-width: 260px; }
.aws-badge { flex: 0 0 auto; width: 180px; }

/* ---- PROBLEM SECTION ---- */
.problem-header { width: 90%; max-width: 1400px; margin: 0 auto; padding-bottom: 50px; text-align: center; }
.problem-cta-strip { padding: 60px 20px 70px; text-align: center; }

/* ---- COBRA FUNDED STRIP ---- */
.memo-funded-strip {
  display: flex; gap: 12px; align-items: center;
  padding: 16px 18px;
  background: rgba(247,165,65,.12);
  border: 1px solid rgba(247,165,65,.3);
  font-size: 13px; font-weight: 700;
  color: #fff; font-family: 'Assistant', sans-serif;
  line-height: 1.5;
}
.memo-funded-strip i { color: #f7a541; font-size: 18px; flex-shrink: 0; }
.memo-funded-strip.light {
  background: rgba(247,165,65,.1);
  border-color: rgba(247,165,65,.25);
  color: #004363;
}
.memo-funded-strip.light i { font-size: 16px; }

/* ---- BLOCKQUOTE ---- */
.memo-blockquote {
  font-size: 18px; color: rgba(255,255,255,.65);
  border-left: 3px solid #f7a541;
  padding: 0 0 0 18px; margin: 24px 0 28px;
  font-style: italic; line-height: 1.7;
}

/* ---- STAT BLOCKS (navy bg) ---- */
.cobra-stat-row { display: flex; flex-direction: column; gap: 3px; }
.cobra-stat-box { background: rgba(255,255,255,.07); padding: 22px 24px; text-align: center; }
.cobra-stat-number { font-family: 'Assistant', sans-serif; font-size: 44px; font-weight: 900; color: #f7a541; line-height: 1; }
.cobra-stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.5); margin-top: 6px; line-height: 1.5; }

/* ---- ASSESSMENT TYPE CARDS ---- */
.memo-assessment-card {
  background: #fff; padding: 20px;
  border-top: 3px solid #0a7f95; text-align: center;
}
.memo-assessment-number { font-size: 22px; font-weight: 900; color: rgba(10,127,149,.15); font-family: 'Assistant', sans-serif; margin-bottom: 8px; }
.memo-assessment-name { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 800; color: #0a7f95; font-family: 'Assistant', sans-serif; margin-bottom: 8px; }
.memo-assessment-desc { font-size: 14px; color: #666; line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: flex; gap: 24px; flex-wrap: wrap; }
.testimonials-grid .memo-testimonial-card { flex: 1; min-width: 260px; }

/* ---- SUCCESS STORIES ---- */
.stories-grid { display: flex; gap: 0; }
.stories-grid > div { flex: 1; }

/* ---- PARTNER LOGO CONTAINER ---- */
.memo-partner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 16px; text-decoration: none;
  padding: 12px 24px;
}
.memo-partner-logo-wrap {
  height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.memo-partner img {
  display: block;
  max-width: 140px;
}
.memo-partner-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: #888; font-family: 'Assistant', sans-serif;
  line-height: 1;
}

.memo-partners-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}

/* ---- PARTNER SECTION DIVIDER ---- */
.memo-partners-divider {
  display: flex; align-items: center; gap: 20px;
  justify-content: center; margin-bottom: 40px;
}
.memo-partners-divider-line { flex: 1; max-width: 140px; height: 1px; background: #e0e6eb; }
.memo-partners-divider-label {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; color: #888; font-family: 'Assistant', sans-serif;
  white-space: nowrap;
}

/* ---- FOOTER ---- */
#main-footer { background: #004362; }
.footer-inner { display: flex; gap: 0; flex-wrap: wrap; justify-content: space-between; padding: 80px 0 40px; width: 90%; max-width: 1400px; margin: 0 auto; }
.footer-brand { flex: 0 0 26%; min-width: 200px; padding-right: 40px; }
.footer-brand img { max-width: 180px; margin-bottom: 24px; display: block; }.footer-brand p{ font-size: 15px; color: #aeb3bc; line-height: 1.75; max-width: 240px; }
.footer-brand a.footer-phone { display: block; margin-top: 18px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-decoration: none; }
.footer-nav-group { flex: 1; display: flex; gap: 40px; flex-wrap: wrap; padding: 0 20px; }
.footer-col { min-width: 120px; }
.footer-widget-title { font-family: 'Assistant', sans-serif; color: #aeb3bc; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 14px; }
.footer-widget-list { display: flex; flex-direction: column; }
.footer-widget-list a { color: #aeb3bc; font-family: 'Assistant', sans-serif; font-size: 14px; padding: 4px 0; text-decoration: none; transition: color .2s; }
.footer-widget-list a:hover { color: #fff; }
.footer-social { flex: 0 0 auto; width: 100px; }
.footer-social-icons { display: flex; gap: 6px; margin-top: 6px; }
.footer-social-icons a {
  width: 40px; height: 40px; background: rgba(255,255,255,.1);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; text-decoration: none; transition: background .2s;
}
.footer-social-icons a:hover { background: rgba(255,255,255,.2); }
#footer-bottom { background: #000; padding: 15px 0; }
#footer-bottom-inner { width: 90%; max-width: 1400px; margin: 0 auto; }
#footer-info { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 4px; font-weight: 700; margin: 0; padding: 0; text-align: center; }
#footer-info a { color: #fff; font-weight: 700; text-decoration: none; }

/* ---- SECTION HEADERS ---- */
/* Explicit sizes since style.css .et_pb_text h2 may not apply to bare h2 in this context */
h1 { font-size: 48px; font-family: 'Assistant', sans-serif; color: #004363; }
h2 { font-size: 38px; font-family: 'Assistant', sans-serif; color: #004363; }
h3 { font-size: 30px; font-family: 'Assistant', sans-serif; color: #004363; }
h4 { font-size: 24px; font-family: 'Assistant', sans-serif; color: #004363; }
h5 { font-size: 18px; font-family: 'Assistant', sans-serif; color: #004363; }

/* Centered section header block — used at top of each section */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2,
.section-header h3 { text-align: center; }
.section-header p { text-align: center; max-width: 600px; margin: 0 auto; }

/* Card CTA links inside problem cards */
.card-cta {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 800; color: #f7a541;
  font-family: 'Assistant', sans-serif;
  display: inline-block; margin-top: 8px;
  text-decoration: none; transition: letter-spacing .2s;
}
.memo-problem-card:hover .card-cta { letter-spacing: 3.5px; }
.bg-navy  { background-color: #004363; }
.bg-light { background-color: #eff4f9; }
.bg-white { background-color: #fff; }

/* ---- RESPONSIVE — Tablet ---- */
@media screen and (max-width: 1024px) {
  #top-navigation { display: none; }
  #mobile-menu-toggle { display: flex !important; }
  .et_pb_gutters3 .et_pb_column_2_3,
  .et_pb_gutters3 .et_pb_column_1_3,
  .et_pb_gutters3 .et_pb_column_1_2 { width: 100%; padding-right: 0; }
  .cobra-two-col { flex-direction: column; }
  .cobra-col-text { padding-right: 0; }
  .cobra-col-stats { padding-top: 0; }
  .memo-assessment-grid { grid-template-columns: repeat(3,1fr); }
  .aws-flex { gap: 30px; }
  .memo-problem-grid { grid-template-columns: 1fr 1fr; }
  .memo-scale-grid { flex-wrap: wrap; }
  .memo-scale-card { flex: 0 0 calc(33.33% - 2px); }
  .testimonials-grid { flex-direction: column; }
  .stories-grid { flex-direction: column; }
}

/* ---- RESPONSIVE — Phone ---- */
@media screen and (max-width: 767px) {
  #main-header-wrap { justify-content: center; position: relative; padding: 0 20px; }
  #logo { margin: 0 auto; }
  #mobile-menu-toggle { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }

  .et_pb_slide { padding: 0 5%; }
  .et_pb_container { width: 96%; }
  .et_pb_slider_container_inner { padding: 110px 0 160px; }
  .et_pb_slide_description { text-align: center; max-width: 100%; }
  .et_pb_slide_title { font-size: 34px !important; text-align: center; }
  .et_pb_slide_content { text-align: center; }
  .sfly_inline_button_row { flex-direction: column; align-items: center; }
  .sfly_inline_button_row .et_pb_button { width: 100%; max-width: 320px; text-align: center; }
  .hero-aws-credential { display: none; }

  .memo-service-tabs { margin-top: -50px; }
  .memo-service-tabs-row { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; justify-content: flex-start; }
  .memo-service-tabs-row::-webkit-scrollbar { display: none; }
  .memo-hottopics-inner { padding: 34px 0 30px; }
  .memo-ht-title { font-size: 23px; }
  .memo-ht-tagline { font-size: 15px; }
  .memo-ht-track { min-height: 200px; }
  .memo-service-tab { flex: 0 0 auto; min-width: 140px; font-size: 12px; padding: 16px 12px; white-space: normal; line-height: 1.4; }

  .et_pb_section { padding: 40px 0; }
  .et_pb_row { width: 92%; }

  .memo-scale-grid { flex-wrap: wrap; }
  .memo-scale-card { flex: 0 0 calc(50% - 1px); text-align: center; }

  .memo-problem-grid { grid-template-columns: 1fr; }
  .memo-problem-card { text-align: center; }

  .cobra-two-col { flex-direction: column; }
  .cobra-col-text { padding-right: 0; text-align: center; }
  .cobra-col-stats { padding-top: 0; align-items: center; }
  .memo-blockquote { border-left: none; padding: 14px 0; border-top: 2px solid rgba(247,165,65,.4); border-bottom: 2px solid rgba(247,165,65,.4); text-align: center; }
  .cobra-stepper { flex-wrap: wrap; }
  .cobra-step { flex: 0 0 50%; margin-bottom: 20px; }
  .cobra-step-line-right, .cobra-step-line-left { display: none; }
  .memo-assessment-grid { grid-template-columns: 1fr 1fr; }

  .aws-flex { flex-direction: column; align-items: center; text-align: center; }
  .aws-text { text-align: center; }

  .footer-inner { flex-direction: column; gap: 36px; padding: 50px 5%; }
  .footer-brand { flex: none; width: 100%; padding-right: 0; text-align: center; }
  .footer-brand img { margin: 0 auto 24px; }
  .footer-brand p { max-width: 100%; text-align: center; }
  .footer-brand a.footer-phone { text-align: center; }
  .footer-nav-group { flex-direction: column; gap: 28px; padding: 0; }
  .footer-col { text-align: center; }
  .footer-widget-title { text-align: center; }
  .footer-widget-list { align-items: center; }
  .footer-social { width: 100%; text-align: center; }
  .footer-social-icons { justify-content: center; }

  .problem-header { text-align: center; }
  .testimonials-grid { flex-direction: column; }
  .stories-grid { flex-direction: column; }

  /* Global text centering on mobile */
  .et_pb_section h1, .et_pb_section h2, .et_pb_section h3,
  .et_pb_section h4, .et_pb_section h5, .et_pb_section .memo-overline,
  .et_pb_section p, .section-header, .section-header h2,
  .section-header h3, .section-header p { text-align: center; }
  .et_pb_section .memo-divider { margin-left: auto; margin-right: auto; }
  .et_pb_section .et_pb_button, .et_pb_section a.more-link { display: block; margin-left: auto; margin-right: auto; max-width: 320px; }
  .memo-icon-circle, .memo-icon-circle-white, .memo-icon-circle-sm { margin-left: auto; margin-right: auto; }
  /* Story cards: keep left-aligned (photo bg) */
  .memo-story-card h4, .memo-story-card p, .memo-trigger-tag { text-align: left; }
  /* --- INLINE GRIDS → SINGLE COLUMN --- */
  [style*="display:grid"] { display:block !important; }
  [style*="display:grid"] > div { margin-bottom:12px; }
}

/* ---- RESPONSIVE — Small phone ---- */
@media screen and (max-width: 480px) {
  .et_pb_slide_title { font-size: 28px !important; }
  .memo-scale-card { flex: 0 0 100%; }
  .memo-assessment-grid { grid-template-columns: 1fr; }
  .memo-testimonial-card { padding: 24px 16px; }
  .memo-story-card { height: 280px; }
}

/* ---- RESPONSIVE — Large desktop ---- */
@media screen and (min-width: 1441px) {
  .et_pb_slide_title { font-size: 56px !important; }
}


/* ---- DROPDOWN MENUS (missing from original) ---- */
#top-menu .sub-menu {
  display: none;
  position: absolute;
  top: 80px; left: 0;
  background: #fff;
  min-width: 290px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 8px 0;
  z-index: 99999;
  list-style: none;
  border-top: 3px solid #0a7f95;
}
#top-menu .menu-item-has-children:hover .sub-menu { display: block; }
#top-menu .sub-menu li { display: block; }
#top-menu .sub-menu a.dd-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 18px; color: #0d2d4a; text-decoration: none;
  font-family: 'Assistant', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0; text-transform: none; line-height: 1.3;
  transition: background .15s;
}
#top-menu .sub-menu a.dd-item:hover { background: #f0f8fb; }
.dd-icon {
  width: 34px; height: 34px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; margin-top: 1px;
}
.dd-icon-teal { background: #d0ebf2; color: #0a7f95; }
.dd-icon-navy { background: #dce8ee; color: #0d2d4a; }
.dd-icon-orange { background: #fdf3e3; color: #c47c1e; }
.dd-icon-green { background: #e6f5ed; color: #2a7d4f; }
.dd-text { display: flex; flex-direction: column; gap: 3px; }
.dd-title { font-weight: 800; color: #0d2d4a; font-size: 14px; font-family: 'Assistant', sans-serif; }
.dd-desc { font-size: 12px; color: #5a7282; font-weight: 400; line-height: 1.4; }
.dd-footer-item { border-top: 1px solid #dce8ee; margin-top: 4px; }
a.dd-footer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; font-family: 'Assistant', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #0a7f95; text-decoration: none;
}
a.dd-footer-link:hover { background: #f0f8fb; }
.dd-footer-link-inner { display: flex; align-items: center; gap: 8px; }
#top-menu .dd-align-right .sub-menu { left: auto; right: 0; }

/* ---- BUTTONS (missing from original) ---- */
a.et_pb_button, .et_pb_button {
  display: inline-block;
  font-family: 'Assistant', sans-serif !important;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; cursor: pointer;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff; background: transparent;
  transition: all .2s;
}
a.et_pb_button:hover, .et_pb_button:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}
a.btn-green, .btn-green {
  background: #2a7d4f !important; color: #fff !important;
  border-color: #2a7d4f !important;
}
a.btn-green:hover, .btn-green:hover {
  background: #1f5e3b !important; border-color: #1f5e3b !important;
}
a.btn-white, .btn-white {
  background: transparent !important; color: #fff !important;
  border-color: rgba(255,255,255,.7) !important;
}
a.btn-white:hover, .btn-white:hover {
  background: rgba(255,255,255,.15) !important;
}

/* ============================================================
   AI-FIRST HOMEPAGE COMPONENTS (added in AI reorientation pass)
   ============================================================ */

/* ---- MISSION BAND ---- */
.memo-mission-statement {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: #004363;
  max-width: 920px;
  margin: 0 auto;
}
.memo-mission-statement strong { color: #0a7f95; }
@media (max-width: 980px) { .memo-mission-statement { font-size: 23px; } }
@media (max-width: 600px) { .memo-mission-statement { font-size: 19px; } }

/* ---- STRUGGLE GRID (value prop) ---- */
.memo-struggle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 40px;
}
@media (max-width: 900px) { .memo-struggle-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .memo-struggle-grid { grid-template-columns: 1fr; } }

/* ---- ENTERPRISE-GRADE vs PRODUCTIVITY (head-to-head) ---- */
.memo-vs { position: relative; display: flex; gap: 3px; margin-top: 46px; }
.memo-vs-side { flex: 1; min-width: 0; }
.memo-vs-side.them { background: #eef2f5; border-top: 3px solid transparent; }
.memo-vs-side.us {
  background: linear-gradient(160deg, #004363, #016086);
  border-top: 3px solid #f7a541;
  box-shadow: 0 22px 55px rgba(0,67,99,.28);
}
.memo-vs-head {
  height: 66px; display: flex; align-items: center; padding: 0 32px;
  font-family: 'Assistant', sans-serif; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 800;
}
.memo-vs-side.them .memo-vs-head { color: #7c8a96; border-bottom: 1px solid #dde4e9; }
.memo-vs-side.us .memo-vs-head { color: #f7a541; border-bottom: 1px solid rgba(255,255,255,.12); }
.memo-vs-item { min-height: 62px; display: flex; align-items: center; gap: 14px; padding: 14px 32px; }
.memo-vs-item span { line-height: 1.45; }
.memo-vs-item i { font-size: 20px; flex-shrink: 0; }
.memo-vs-side.them .memo-vs-item { color: #61707b; font-size: 15px; border-bottom: 1px solid #e4e9ed; }
.memo-vs-side.them .memo-vs-item i { color: #b3bfc8; }
.memo-vs-side.them .memo-vs-item:last-child { border-bottom: none; }
.memo-vs-side.us .memo-vs-item { color: #fff; font-size: 15px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
.memo-vs-side.us .memo-vs-item:last-child { border-bottom: none; }
.memo-vs-side.us .memo-vs-item i {
  display: inline-block;
  background: linear-gradient(135deg, #57b378, #0a7f95);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.memo-vs-badge {
  position: absolute; top: 34px; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; z-index: 3;
  background: #fff; border: 2px solid #004363; color: #004363;
  font-family: 'Assistant', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,67,99,.18);
}
@media (max-width: 760px) {
  .memo-vs { flex-direction: column; }
  .memo-vs-badge { display: none; }
  .memo-vs-side.us { box-shadow: 0 12px 30px rgba(0,67,99,.22); }
}

/* ---- ACCELERATOR CARD TWEAKS (reuses .memo-service-card) ---- */
.memo-accel-grid .memo-service-card-icon i { font-size: 42px; }
.memo-accel-grid .memo-service-card p { font-size: 15px; color: #666; line-height: 1.7; margin: 0; }

/* ---- AI MATURITY JOURNEY ---- */
.memo-maturity {
  display: flex; gap: 3px; margin-top: 40px; flex-wrap: wrap;
}
.memo-maturity-stage {
  flex: 1; min-width: 160px;
  background: #fff; border-top: 3px solid #e8edf2;
  padding: 30px 22px; text-align: center; position: relative;
  transition: border-top-color .25s, transform .2s, box-shadow .25s;
}
.memo-maturity-stage:hover {
  border-top-color: #0a7f95; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,67,99,.08);
}
.memo-maturity-num {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Assistant', sans-serif; font-weight: 800; font-size: 18px;
  color: #fff; background: linear-gradient(135deg, #0a7f95, #57b378);
}
.memo-maturity-stage h5 {
  font-size: 13px !important; letter-spacing: .3px;
  color: #004363 !important; margin: 0 0 8px; padding-bottom: 0;
}.memo-maturity-stage p{ font-size: 15px; color: #777; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .memo-maturity-stage { flex: 0 0 calc(50% - 3px); } }
@media (max-width: 560px) { .memo-maturity-stage { flex: 0 0 100%; } }

/* ---- START NOTE STRIP ---- */
.memo-start-note {
  margin-top: 40px; text-align: center;
  background: var(--color-light-bg); padding: 34px 24px;
}
.memo-start-note p { max-width: 620px; margin: 0 auto 18px; color: #555; font-size: 15px; line-height: 1.7; }
.memo-start-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   HOT TOPICS -- coverflow band anchored to the hero's lower edge.
   Centre card reads large and sharp; neighbours shrink, fade and
   blur so the eye lands on one thing.
   ============================================================ */
.memo-hottopics {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  padding: 0 0 26px;
  background: linear-gradient(to top, rgba(0,20,34,.80) 0%, rgba(0,20,34,.52) 55%, rgba(0,20,34,0) 100%);
}
.memo-ht-viewport { overflow: hidden; width: 100%; padding: 22px 0 6px; }
.memo-ht-track {
  display: flex; align-items: stretch; gap: 26px;
  will-change: transform;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.memo-ht-slide {
  flex: 0 0 var(--ht-card, 430px);
  width: var(--ht-card, 430px);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 16px 24px 18px;
  text-align: center;
  transform: scale(.80);
  opacity: .40;
  filter: blur(3px);
  transition: transform .55s cubic-bezier(.4,0,.2,1), opacity .55s, filter .55s, background .55s;
  pointer-events: none;
}
.memo-ht-slide.is-active:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }
.memo-ht-slide.is-active { cursor: pointer;
  transform: scale(1);
  opacity: 1;
  filter: none;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
  pointer-events: auto;
}
.memo-ht-slide.is-near { opacity: .58; filter: blur(1.6px); transform: scale(.88); }
.memo-ht-eyebrow {
  display: block; font-family: 'Assistant', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: #6fd49b; margin-bottom: 8px;
}
.memo-ht-title {
  font-family: 'Assistant', sans-serif; font-size: 23px; font-weight: 800;
  color: #fff; margin: 0 0 8px; line-height: 1.2;
}
.memo-ht-tagline {
  font-size: 14px; color: rgba(255,255,255,.80); line-height: 1.55;
  margin: 0 auto; max-width: 370px;
}
@media screen and (max-width: 1024px) {
  .memo-ht-slide { --ht-card: 360px; }
  .memo-ht-title { font-size: 20px; }
}
@media screen and (max-width: 767px) {
  /* Stay pinned to the hero: the Divi slide container is wider than the
     viewport on mobile, so a static band inherits that width and breaks. */
  .memo-hottopics { width: 100vw; left: 50%; transform: translateX(-50%); right: auto; padding: 0 0 20px; }
  .memo-ht-viewport { padding: 12px 0 2px; }
  .memo-ht-slide { --ht-card: 74vw; padding: 14px 18px 16px; }
  .memo-ht-track { gap: 12px; }
  .memo-ht-title { font-size: 18px; }
  .memo-ht-tagline { font-size: 13px; }
  .memo-ht-slide:not(.is-active) { filter: blur(2px); }
  }

/* Keep hero copy and the AWS card clear of the coverflow band */
.et_pb_fullwidth_section .et_pb_slide_description { padding-bottom: 170px; }
.hero-aws-credential { bottom: auto !important; top: 46% !important; }
@media screen and (max-width: 1024px) {
  .et_pb_fullwidth_section .et_pb_slide_description { padding-bottom: 150px; }
}
@media screen and (max-width: 767px) {
  .et_pb_fullwidth_section .et_pb_slide_description { padding-bottom: 150px; }
}
