/* Cultus AWS Educate + re/Start landing — page-scoped */

@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

.ccl-page {
  --ccl-blue: #1f82c5;
  --ccl-blue-deep: #0d4f8a;
  --ccl-navy: #0a2463;
  --ccl-ink: #101218;
  --ccl-body: #3d4550;
  --ccl-muted: #5b6570;
  --ccl-line: #d7e3ef;
  --ccl-wash: #f3f7fb;
  --ccl-white: #ffffff;
  --ccl-orange: #ff9900;
  --ccl-radius: 14px;
  --ccl-shadow: 0 10px 30px rgba(10, 36, 99, 0.08);
  --font-main: "Ubuntu", sans-serif;
  --font-body: "Barlow", sans-serif;
  color: var(--ccl-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  background: var(--ccl-white);
}

.ccl-page *,
.ccl-page *::before,
.ccl-page *::after {
  box-sizing: border-box;
}

.ccl-page h1,
.ccl-page h2,
.ccl-page h3,
.ccl-page h4,
.ccl-page h5 {
  font-family: var(--font-main);
  color: var(--ccl-navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

.ccl-page p {
  margin: 0 0 1em;
  color: var(--ccl-body);
  font-family: var(--font-body);
}

.ccl-page a {
  color: var(--ccl-blue);
}

.ccl-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.ccl-kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ccl-blue);
  margin-bottom: 10px;
}

/* Kill Astra white box on this page */
.ccl-bust-theme #content > .ast-container,
.ccl-bust-theme .site-content > .ast-container,
.ccl-bust-theme #primary,
.ccl-bust-theme .entry-content,
.ccl-bust-theme .entry-content > article {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.ccl-bust-theme .entry-header,
.ccl-bust-theme .ast-breadcrumbs-wrapper {
  display: none !important;
}

/* Hero */
.ccl-hero {
  position: relative;
  overflow: visible;
  background: #fff;
  padding: 36px 0 28px;
}

.ccl-logos {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 28px;
  padding: 0;
  background: transparent;
  max-width: 100%;
}

.ccl-logos img {
  height: 96px;
  width: auto;
  max-width: min(920px, 100%);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.ccl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ccl-hero-copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.ccl-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: #111;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.ccl-hero h1 em {
  font-style: normal;
  color: var(--ccl-blue);
}

.ccl-hero .ccl-sub {
  font-size: 20px;
  line-height: 1.45;
  color: #111;
  margin: 0 0 22px;
}

.ccl-hero .ccl-sub strong {
  color: var(--ccl-blue);
  font-weight: 700;
}

.ccl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ccl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 14px 22px;
  text-decoration: none !important;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ccl-btn:hover {
  transform: translateY(-1px);
}

.ccl-btn-primary {
  background: var(--ccl-blue);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(31, 130, 197, 0.28);
  text-align: left;
  line-height: 1.15;
}

.ccl-btn-primary small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.ccl-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--ccl-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.ccl-btn-ghost {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: #fff;
  color: var(--ccl-blue) !important;
  border-color: var(--ccl-blue);
  transition: color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ccl-btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ccl-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: -1;
}

.ccl-btn-ghost:hover {
  color: #fff !important;
}

.ccl-btn-ghost:hover::before {
  transform: scaleX(1);
}

.ccl-cta-card {
  display: inline-flex;
  align-items: stretch;
  margin-top: 22px;
  border: 2px solid var(--ccl-blue);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(31, 130, 197, 0.28);
  background: #fff;
}

.ccl-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ccl-blue);
  color: #fff;
  padding: 12px 18px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.15;
}

.ccl-cta-label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.ccl-cta-card .ccl-btn-ghost {
  border: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.ccl-cta-card .ccl-btn:hover {
  transform: none;
}

.ccl-hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  min-height: 0;
  background: transparent;
  transform: translateX(48px);
}

.ccl-hero-visual img {
  width: 118%;
  max-width: 680px;
  height: auto;
  max-height: 660px;
  display: block;
  object-fit: contain;
  object-position: center center;
}

/* Hero pathway — compact steps with chevrons */
.ccl-path {
  margin-top: 10px;
  background: #eef3f7;
  border: 1px solid #e4ebf2;
  border-radius: 999px;
  padding: 8px 12px;
  overflow: visible;
  isolation: isolate;
}

.ccl-path-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  position: relative;
}

.ccl-path-track::before {
  display: none;
}

.ccl-path-arrow {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin: 0 2px;
  border-right: 2px solid var(--ccl-blue);
  border-top: 2px solid var(--ccl-blue);
  transform: rotate(45deg);
  font-size: 0;
  line-height: 0;
}

.ccl-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.ccl-node i {
  display: none;
}

.ccl-node b {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ccl-navy);
  line-height: 1.25;
  white-space: nowrap;
}

/* Sections */
.ccl-section {
  padding: 72px 0;
}

.ccl-section-alt {
  background: var(--ccl-wash);
}

.ccl-section-blue {
  background: #e7f3fb;
}

.ccl-decor {
  position: relative;
  overflow: hidden;
}

.ccl-decor .ccl-wrap {
  position: relative;
  z-index: 1;
}

.ccl-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.ccl-blob-a {
  width: 280px;
  height: 280px;
  background: rgba(31, 130, 197, 0.16);
  top: -80px;
  right: -40px;
}

.ccl-blob-b {
  width: 220px;
  height: 220px;
  background: rgba(10, 36, 99, 0.08);
  bottom: -60px;
  left: -30px;
}

.ccl-dots {
  position: absolute;
  inset: 20px auto auto 24px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  background-image: radial-gradient(rgba(31, 130, 197, 0.28) 1.4px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.7;
}

.ccl-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.ccl-center h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.ccl-lead {
  font-size: 19px;
}

.ccl-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
}

.ccl-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ccl-pill {
  background: #e8f3fb;
  color: var(--ccl-navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.ccl-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ccl-card {
  background: #fff;
  border: 1px solid var(--ccl-line);
  border-radius: var(--ccl-radius);
  padding: 22px 22px 8px;
  box-shadow: var(--ccl-shadow);
}

.ccl-card ul,
.ccl-why ul,
.ccl-who ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ccl-card li,
.ccl-why li,
.ccl-who li {
  position: relative;
  padding: 0 0 12px 28px;
  color: var(--ccl-body);
}

.ccl-card li::before,
.ccl-why li::before,
.ccl-who li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ccl-blue);
  font-weight: 700;
}

/* Journey — connected icon timeline */
.ccl-journey {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  margin-top: 12px;
}

.ccl-journey::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--ccl-blue), #8dcef0);
  z-index: 0;
}

.ccl-journey-item {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  min-width: 0;
}

.ccl-journey-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ccl-blue);
  color: var(--ccl-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px #e7f3fb;
}

.ccl-journey-icon svg {
  width: 24px;
  height: 24px;
}

.ccl-journey-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ccl-navy);
  color: #fff;
  font-size: 12px;
  margin-bottom: 6px;
}

.ccl-journey-item span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ccl-navy);
  line-height: 1.35;
}

.ccl-journey-note {
  text-align: center;
  margin-top: 28px;
}

/* Why cards */
.ccl-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ccl-why article {
  background: #fff !important;
  border-radius: 16px;
  padding: 24px 22px 16px !important;
  margin: 0 !important;
  border: 1px solid #e4eef6;
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.1);
}

.ccl-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f4fb;
  color: var(--ccl-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ccl-why-icon svg {
  width: 22px;
  height: 22px;
}

.ccl-why h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ccl-why article:last-child {
  grid-column: 2;
}

.ccl-elig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.ccl-elig-card {
  background: #fff !important;
  border-radius: 16px;
  padding: 28px 26px 18px !important;
  margin: 0 !important;
  border: 1px solid #e4eef6;
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.1);
  display: flex;
  flex-direction: column;
}

.ccl-elig-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ccl-elig-card li {
  position: relative;
  padding: 0 0 12px 28px;
  color: var(--ccl-body);
}

.ccl-elig-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ccl-blue);
  font-weight: 700;
}

.ccl-elig-note {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #e4eef6;
}

/* How it works */
.ccl-how-list {
  display: grid;
  gap: 16px;
}

.ccl-how-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: #fff !important;
  border-radius: 16px;
  padding: 22px 24px !important;
  margin: 0 !important;
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.1);
  border: 1px solid #e4eef6;
}

.ccl-how-card:nth-child(even) {
  background: #f7fbff !important;
}

.ccl-how-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ccl-blue);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ccl-how-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 6px;
}

.ccl-how-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e8f4fb;
  color: var(--ccl-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ccl-how-ico svg {
  width: 18px;
  height: 18px;
}

.ccl-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.ccl-course {
  background: var(--ccl-wash);
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  color: var(--ccl-navy);
  text-align: center;
}

.ccl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ccl-chip {
  background: #fff;
  border: 1px solid var(--ccl-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ccl-navy);
}

.ccl-more-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.ccl-more-actions .ccl-btn {
  min-width: min(100%, 320px);
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Form */
.ccl-form {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--ccl-line);
  box-shadow: var(--ccl-shadow);
  padding: 28px;
}

.ccl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
  align-items: start;
}

.ccl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ccl-field.full {
  grid-column: 1 / -1;
}

.ccl-field label {
  display: flex;
  align-items: flex-end;
  min-height: 38px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ccl-navy);
  line-height: 1.3;
}

.ccl-label-text {
  display: block;
}

.ccl-field input,
.ccl-field select,
.ccl-field textarea {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 16px;
  background: #fff;
}

.ccl-field input::placeholder {
  color: #8b95a3;
}

.ccl-form h3 {
  margin: 22px 0 12px;
  font-size: 18px;
}

.ccl-form-note {
  margin: 0 0 8px;
  color: var(--ccl-body);
  font-size: 15px;
}

.ccl-req {
  color: #c0392b;
}

.ccl-hint {
  display: block;
  font-weight: 500;
  color: var(--ccl-muted);
  font-size: 12px;
  margin-top: 2px;
}

.ccl-field.is-error input,
.ccl-field.is-error select,
.ccl-field.is-error textarea {
  border-color: #c0392b;
  background: #fff6f6;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.ccl-field-error {
  color: #c0392b;
  font-size: 12px;
  font-weight: 600;
  min-height: 16px;
  line-height: 1.3;
}

.ccl-field-error[hidden] {
  visibility: hidden;
}

.ccl-check.is-error {
  color: #9b1c1c;
  background: #fff6f6;
  border: 1px solid #f5c2c2;
  border-radius: 10px;
  padding: 10px 12px;
}

.ccl-field.is-other-hidden {
  display: none;
}

.ccl-field input:focus,
.ccl-field select:focus {
  outline: none;
  border-color: var(--ccl-blue);
  box-shadow: 0 0 0 3px rgba(31, 130, 197, 0.16);
}

.ccl-field.is-error input:focus,
.ccl-field.is-error select:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.16);
}

.ccl-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ccl-body);
  margin: 10px 0;
}

.ccl-hp {
  position: absolute;
  left: -9999px;
}

.ccl-notice {
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
}

.ccl-notice.ok {
  background: #e8f7ee;
  color: #146c2e;
  border: 1px solid #b7e4c7;
}

.ccl-redirect-note {
  margin: 8px 2px 0;
  color: #4a5568;
  font-weight: 500;
}

.ccl-notice.err {
  background: #fdecea;
  color: #9b1c1c;
}

/* Closing */
.ccl-close {
  background: #0d2a5e;
  color: #fff;
  text-align: center;
  padding: 72px 20px;
}

.ccl-close h2,
.ccl-close p {
  color: #fff;
}

.ccl-close h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
}

.ccl-close .ccl-tag {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 18px 0 22px;
}

.ccl-close .ccl-foot {
  margin-top: 28px;
  opacity: 0.8;
  font-size: 14px;
}

@media (max-width: 980px) {
  .ccl-page {
    font-size: 16px;
  }

  .ccl-hero {
    padding: 24px 0 20px;
  }

  .ccl-hero-grid,
  .ccl-grid-2,
  .ccl-why,
  .ccl-elig,
  .ccl-form-grid,
  .ccl-courses {
    grid-template-columns: 1fr;
  }

  .ccl-hero-visual {
    display: none !important;
  }

  .ccl-hero-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .ccl-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .ccl-logos img {
    height: 56px;
    max-width: 100%;
    margin: 0 auto;
  }

  .ccl-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .ccl-hero .ccl-sub {
    font-size: 17px;
  }

  .ccl-cta-card {
    margin-left: auto;
    margin-right: auto;
  }

  .ccl-why article:last-child {
    grid-column: auto;
  }

  .ccl-path {
    padding: 7px 8px;
    border-radius: 14px;
  }

  .ccl-path-track {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
  }

  .ccl-path-arrow {
    display: block;
    width: 5px;
    height: 5px;
    margin: 0 1px;
  }

  .ccl-node b {
    font-size: 9px;
    line-height: 1.2;
    white-space: normal;
  }

  .ccl-path-track::before,
  .ccl-journey::before {
    display: none;
  }

  .ccl-journey {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .ccl-center h2,
  .ccl-page h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .ccl-section {
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .ccl-wrap {
    width: min(1160px, calc(100% - 28px));
  }

  .ccl-logos img {
    height: 44px;
  }

  .ccl-hero h1 {
    font-size: 28px;
    line-height: 1.05;
  }

  .ccl-path-track,
  .ccl-journey {
    grid-template-columns: 1fr;
  }

  .ccl-actions,
  .ccl-more-actions {
    flex-direction: column;
    align-items: center;
  }

  .ccl-cta-card {
    flex-direction: column;
    width: 100%;
  }

  .ccl-btn {
    width: 100%;
  }

  .ccl-form {
    padding: 18px;
  }

  .ccl-close {
    padding: 48px 16px;
  }
}
