:root {
  --sbc-blue: #1842b6;
  --sbc-blue-700: #10338f;
  --sbc-blue-900: #071b4d;
  --sbc-green: #26d48c;
  --sbc-green-700: #0b9c64;
  --ink: #0b1731;
  --muted: #5f6e86;
  --line: #dbe4f2;
  --soft: #f3f7ff;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(13, 38, 92, 0.08);
  --shadow-md: 0 20px 55px rgba(13, 38, 92, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 18px;
  color: var(--muted);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 11px 16px;
  color: var(--white);
  background: var(--sbc-blue-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(38, 212, 140, 0.9);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sbc-green), #88f3c7);
}

/* Contact bar */
.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--sbc-blue-900);
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-inner > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--sbc-green);
}

.topbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(219, 228, 242, 0.88);
  box-shadow: 0 10px 35px rgba(13, 38, 92, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: block;
  width: 214px;
  height: 60px;
  overflow: hidden;
  color: transparent;
  background: url("img/softbrain-logo.png") center / contain no-repeat;
  border-radius: 8px;
}

.brand-copy {
  display: none;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 10px;
  color: #34415b;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 3px;
  background: var(--sbc-green);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--sbc-blue);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  color: #052315;
  background: var(--sbc-green);
  border: 1px solid var(--sbc-green);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(38, 212, 140, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: #54e6aa;
  transform: translateY(-2px);
}

.mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  width: 48px;
  height: 48px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 12px;
  list-style: none;
  cursor: pointer;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 100%;
  height: 2px;
  background: var(--sbc-blue-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(330px, calc(100vw - 30px));
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.mobile-menu nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  color: #273653;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-menu nav a:hover {
  color: var(--sbc-blue);
  background: var(--soft);
}

.mobile-menu nav .mobile-menu-cta {
  justify-content: center;
  margin-top: 8px;
  color: #052315;
  background: var(--sbc-green);
}

/* Page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(5, 20, 62, 0.98) 0%, rgba(10, 37, 101, 0.93) 45%, rgba(10, 37, 101, 0.2) 100%),
    url("img/sap-training-banner.webp");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -170px;
  left: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.035), 0 0 0 160px rgba(255, 255, 255, 0.025);
}

.page-hero-inner {
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 74px 82px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 650;
}

.page-breadcrumb a:hover {
  color: var(--sbc-green);
}

.page-breadcrumb b {
  color: rgba(255, 255, 255, 0.95);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--sbc-blue);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--sbc-green);
  border-radius: 99px;
}

.page-hero .eyebrow,
.eyebrow.light {
  color: #8df0c5;
}

.page-hero h1 {
  max-width: 790px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.35rem, 5.2vw, 4.35rem);
  line-height: 1.04;
  text-wrap: balance;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #052315;
  background: var(--sbc-green);
  border-color: var(--sbc-green);
  box-shadow: 0 14px 30px rgba(38, 212, 140, 0.2);
}

.button.primary:hover {
  background: #54e6aa;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(7px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Content */
.section {
  padding-block: 88px;
}

.section.soft {
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 212, 140, 0.1), transparent 340px),
    var(--soft);
  border-block: 1px solid #e7edf7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(290px, 0.58fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.lead-copy {
  max-width: 740px;
  color: #3e4d68;
  font-size: 1.12rem;
  line-height: 1.82;
}

.notice {
  position: relative;
  max-width: 760px;
  margin-top: 28px;
  padding: 18px 20px 18px 24px;
  color: #33425e;
  background: #f4fbf8;
  border: 1px solid #c9f0df;
  border-left: 5px solid var(--sbc-green);
  border-radius: 12px;
  line-height: 1.65;
}

.notice strong {
  color: #0b6a48;
}

.notice.wide {
  max-width: none;
  margin-top: 34px;
}

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.detail-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: rgba(38, 212, 140, 0.1);
  border-radius: 50%;
}

.course-symbol,
.course-card > span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--sbc-blue), var(--sbc-blue-900));
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(24, 66, 182, 0.22);
}

.detail-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.detail-card p {
  position: relative;
  z-index: 1;
}

.detail-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  color: var(--sbc-blue);
  font-weight: 850;
}

.detail-card > a:hover {
  color: var(--sbc-green-700);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 8vw, 100px);
}

.two-column > div {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 32px;
  padding: 4px 0 4px 42px;
  color: #3e4d68;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #075b3c;
  background: #dff8ed;
  border: 1px solid #bcebd7;
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.course-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 27px 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sbc-blue), var(--sbc-green));
}

.course-card:hover {
  border-color: #b8c9e7;
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.course-card h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.course-card p {
  margin-bottom: 24px;
  font-size: 0.93rem;
}

.course-card b {
  margin-top: auto;
  color: var(--sbc-blue);
  font-size: 0.88rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-grid article {
  position: relative;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-grid article > span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--sbc-blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-grid article > span::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--sbc-green);
}

.feature-grid article p {
  margin-bottom: 0;
}

/* Call to action */
.cta-section {
  padding-block: 72px;
  background: var(--white);
}

.cta-panel {
  position: relative;
  isolation: isolate;
  min-height: 265px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 68px);
  color: var(--white);
  background: linear-gradient(125deg, var(--sbc-blue-900), var(--sbc-blue) 72%, #2063cc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(38, 212, 140, 0.18);
  border-radius: 50%;
}

.cta-panel > div:first-child {
  max-width: 670px;
}

.cta-panel h2 {
  margin-bottom: 13px;
  color: var(--white);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  text-align: center;
}

.white-button {
  color: var(--sbc-blue-900);
  background: var(--white);
  border-color: var(--white);
}

.white-button:hover {
  color: #052315;
  background: var(--sbc-green);
  border-color: var(--sbc-green);
}

.cta-phone {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 750;
}

.cta-phone:hover {
  color: var(--sbc-green);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.78);
  background: #050f26;
}

.site-footer::before,
.site-footer::after {
  pointer-events: none;
}

.footer-callout {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-callout span,
.footer-column > span {
  display: block;
  margin-bottom: 8px;
  color: var(--sbc-green);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-callout h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.85fr 1fr;
  gap: clamp(34px, 6vw, 75px);
  padding-block: 64px 54px;
}

.footer-brand .brand-mark {
  width: 232px;
  height: 65px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
}

.footer-brand p {
  max-width: 335px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column > span {
  margin-bottom: 9px;
}

.footer-column a {
  position: relative;
  z-index: 3;
  pointer-events: auto !important;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-address p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--sbc-green);
}

/* Fixed contact controls */
.floating-contact,
.back-to-top {
  position: fixed;
  right: 24px;
  z-index: 850;
  box-shadow: 0 12px 30px rgba(5, 15, 38, 0.22);
}

.floating-contact {
  bottom: 24px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: #052315;
  background: var(--sbc-green);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-contact span {
  width: 11px;
  height: 11px;
  overflow: hidden;
  color: transparent;
  background: #0a6c46;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(10, 108, 70, 0.13);
}

.floating-contact:hover {
  background: #54e6aa;
  transform: translateY(-3px);
}

.back-to-top {
  bottom: 88px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sbc-blue-900);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: #052315;
  background: var(--sbc-green);
}

.mobile-contact-dock {
  display: none;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1.25fr repeat(2, 0.75fr);
  }

  .footer-address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 70px;
  }

  .page-hero {
    background-image:
      linear-gradient(90deg, rgba(5, 20, 62, 0.96), rgba(10, 37, 101, 0.78)),
      url("img/sap-training-banner.webp");
    background-position: 58% center;
  }

  .page-hero-inner {
    min-height: 420px;
    padding-block: 60px 68px;
  }

  .detail-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    gap: 38px;
  }

  .two-column {
    gap: 48px;
  }

  .course-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid article:last-child {
    grid-column: 1 / -1;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-callout {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 44px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .topbar-inner {
    min-height: 40px;
    justify-content: center;
  }

  .topbar-inner > div {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar-inner p {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 178px;
    height: 50px;
  }

  .mobile-menu nav {
    position: fixed;
    top: 122px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }

  .page-hero-inner {
    min-height: 405px;
    padding-block: 50px 60px;
  }

  .page-breadcrumb {
    margin-bottom: 19px;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .section {
    padding-block: 58px;
  }

  .course-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .course-card {
    min-height: 235px;
  }

  .detail-card,
  .feature-grid article {
    padding: 25px;
  }

  .cta-section {
    padding-block: 46px;
  }

  .cta-panel {
    min-height: auto;
    padding: 33px 24px;
    border-radius: 22px;
  }

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .cta-phone {
    align-self: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-block: 48px 40px;
  }

  .footer-brand,
  .footer-address {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .floating-contact,
  .back-to-top {
    display: none;
  }

  .mobile-contact-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    min-height: calc(62px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--sbc-blue-900);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -10px 30px rgba(5, 15, 38, 0.2);
  }

  .mobile-contact-dock a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .mobile-contact-dock a:nth-child(2) {
    color: #052315;
    background: var(--sbc-green);
  }

  .mobile-contact-dock a:last-child {
    border-right: 0;
  }
}

/* Laxmi Nagar SAP training decision guide */
.local-hero .page-hero-inner {
  min-height: 590px;
}

.hero-facts {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 3px;
  color: var(--sbc-green);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.4;
}

.local-page-nav {
  position: sticky;
  top: 82px;
  z-index: 800;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 30, 72, 0.06);
  backdrop-filter: blur(12px);
}

.local-page-nav .shell {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 10px;
  scrollbar-width: thin;
}

.local-page-nav a {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: #315078;
  border: 1px solid #dbe6f3;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.local-page-nav a:hover,
.local-page-nav a:focus {
  color: var(--white);
  background: var(--sbc-blue);
  border-color: var(--sbc-blue);
}

.local-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(290px, 0.52fr);
  gap: clamp(38px, 7vw, 88px);
  align-items: start;
}

.local-decision-card {
  position: sticky;
  top: 162px;
  padding: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 212, 140, 0.24), transparent 190px),
    linear-gradient(145deg, var(--sbc-blue-900), #103a85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.local-decision-card > span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--sbc-green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-decision-card h2 {
  color: var(--white);
  font-size: 1.55rem;
}

.local-decision-card p {
  color: rgba(255, 255, 255, 0.76);
}

.local-decision-card ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.local-decision-card > a {
  color: var(--sbc-green);
  font-weight: 850;
}

.local-decision-card > a:hover {
  color: var(--white);
}

.trust-card {
  position: relative;
  top: auto;
}

.availability-note {
  max-width: 920px;
  margin: 30px auto 0;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid #cfe4dc;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.availability-note strong {
  color: var(--sbc-green-700);
}

.availability-note p {
  margin: 5px 0 0;
}

.responsive-table {
  max-width: 100%;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.responsive-table table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.responsive-table caption {
  padding: 16px 20px;
  color: #52637f;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  text-align: left;
}

.responsive-table th,
.responsive-table td {
  padding: 17px 18px;
  border-bottom: 1px solid #e7edf6;
  text-align: left;
  vertical-align: top;
}

.responsive-table thead th {
  color: var(--white);
  background: var(--sbc-blue-900);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.responsive-table tbody th {
  width: 24%;
  color: var(--ink);
  background: #f9fbfe;
}

.responsive-table tbody tr:last-child th,
.responsive-table tbody tr:last-child td {
  border-bottom: 0;
}

.responsive-table tbody tr:hover td,
.responsive-table tbody tr:hover th {
  background: #f2f7ff;
}

.responsive-table a {
  color: var(--sbc-blue);
  font-weight: 850;
}

.learning-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.learning-steps article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.learning-steps article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sbc-blue), var(--sbc-green));
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.learning-steps span {
  display: inline-flex;
  margin-bottom: 35px;
  color: var(--sbc-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.learning-steps h3 {
  margin-bottom: 9px;
  font-size: 1.16rem;
}

.learning-steps p {
  margin: 0;
  font-size: 0.93rem;
}

.format-grid,
.evaluation-grid {
  display: grid;
  gap: 18px;
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-grid article {
  min-height: 230px;
  padding: 30px;
  background: #f8fbff;
  border: 1px solid #dbe6f3;
  border-radius: var(--radius-md);
}

.format-grid article > span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 6px 10px;
  color: var(--sbc-blue);
  background: #e9f1ff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-grid h3 {
  font-size: 1.2rem;
}

.format-grid p {
  margin-bottom: 0;
}

.fee-columns {
  align-items: start;
}

.verification-box {
  margin-top: 26px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #cbd8e8;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.verification-box h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.verification-box dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.verification-box dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e7edf6;
}

.verification-box dl div:last-child {
  border-bottom: 0;
}

.verification-box dt {
  color: var(--sbc-blue);
  font-weight: 850;
}

.verification-box dd {
  margin: 0;
  color: #465773;
}

.text-link {
  color: var(--sbc-blue);
  font-weight: 850;
}

.text-link:hover {
  color: var(--sbc-green-700);
}

.evaluation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evaluation-grid article {
  min-height: 225px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.evaluation-grid strong {
  display: block;
  margin-bottom: 30px;
  color: var(--sbc-green-700);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.evaluation-grid h3 {
  font-size: 1.08rem;
}

.evaluation-grid p {
  margin: 0;
  font-size: 0.91rem;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.centre-figure {
  margin: 0;
  overflow: hidden;
  background: #071b38;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.centre-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.centre-figure figcaption {
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.address-card {
  display: grid;
  gap: 5px;
  margin: 25px 0;
  padding: 23px;
  color: #42536f;
  background: #f8fbff;
  border: 1px solid #d9e5f3;
  border-left: 5px solid var(--sbc-blue);
  border-radius: 12px;
  font-style: normal;
}

.address-card strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.address-card a {
  width: fit-content;
  color: var(--sbc-blue);
  font-weight: 800;
}

.location-actions {
  margin-top: 0;
}

.dark-button {
  color: var(--white);
  background: var(--sbc-blue-900);
  border-color: var(--sbc-blue-900);
}

.dark-button:hover {
  color: #052315;
  background: var(--sbc-green);
  border-color: var(--sbc-green);
}

.outline-button {
  color: var(--sbc-blue);
  background: transparent;
  border-color: #9eb4d5;
}

.outline-button:hover {
  color: var(--white);
  background: var(--sbc-blue);
  border-color: var(--sbc-blue);
}

.small-note {
  margin-top: 18px;
  color: #66758e;
  font-size: 0.82rem;
}

.faq-layout .section-heading {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 5px 18px rgba(22, 41, 78, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 19px 54px 19px 21px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--sbc-blue);
  background: #eaf2ff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list details[open] summary {
  color: var(--sbc-blue-900);
  background: #f5f9ff;
  border-bottom: 1px solid var(--line);
}

.faq-list details[open] summary::after {
  content: "–";
  color: #075b3c;
  background: #dff8ed;
}

.faq-list details p {
  margin: 0;
  padding: 18px 21px 21px;
}

.content-review {
  max-width: 960px;
  margin: 25px 0 0;
  color: #64738c;
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .local-page-nav {
    top: 74px;
  }

  .evaluation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-facts,
  .learning-steps,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    max-width: 560px;
  }

  .local-intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .local-decision-card {
    position: relative;
    top: auto;
  }

  .learning-steps article,
  .format-grid article,
  .evaluation-grid article {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .local-page-nav {
    top: 72px;
  }

  .local-page-nav .shell {
    width: 100%;
    padding-inline: 14px;
  }

  .local-hero .page-hero-inner {
    min-height: 0;
  }

  .hero-facts li,
  .availability-note,
  .local-decision-card,
  .verification-box {
    padding: 20px;
  }

  .evaluation-grid {
    grid-template-columns: 1fr;
  }

  .responsive-table table {
    min-width: 760px;
  }

  .location-actions,
  .location-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .floating-contact,
  .mobile-contact-dock,
  .back-to-top,
  .scroll-progress,
  .cta-section,
  .footer-callout {
    display: none !important;
  }

  .page-hero {
    color: var(--ink);
    background: none;
  }

  .page-hero-inner {
    min-height: 0;
    padding-block: 30px;
  }

  .page-hero h1,
  .page-hero p,
  .page-hero .eyebrow,
  .page-breadcrumb,
  .page-breadcrumb b {
    color: var(--ink);
  }

  .site-footer {
    color: var(--ink);
    background: none;
  }
}
