:root {
  --primary-blue: #1a3c6e;
  --deep-blue: #006e92;
  --accent-blue: #40aacd;
  --accent-blue-soft: rgba(64, 170, 205, 0.16);
  --ink: #1a3c6e;
  --text-main: #244568;
  --text-muted: #526b82;
  --white: #ffffff;
  --bg-light: #f4f8fb;
  --bg-panel: #e7eef4;
  --bg-panel-strong: #d6dee6;
  --border-soft: rgba(26, 60, 110, 0.14);
  --shadow-soft: 0 18px 45px rgba(26, 60, 110, 0.1);
  --shadow-card: 0 20px 42px rgba(26, 60, 110, 0.14);
  --gradient-blue: linear-gradient(135deg, #1a3c6e 0%, #006e92 48%, #40aacd 100%);
  --button-gradient: linear-gradient(135deg, #40aacd 0%, #006e92 100%);
  --button-gradient-hover: linear-gradient(135deg, #5bb8d9 0%, #004f6b 100%);
  --section-space: 88px;
  --section-space-sm: 48px;
  --grid-gap: 24px;
  --panel-radius: 8px;
  --card-radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(64, 170, 205, 0.11), transparent 28rem),
    linear-gradient(180deg, #f9fbfd 0%, var(--bg-light) 42%, #ffffff 100%);
  color: var(--text-main);
  font-family: "Krub", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 60, 110, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 60, 110, 0.032) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 72%);
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-links a,
.nav-cta,
.button,
.landing-button {
  font-family: "Inter", Arial, sans-serif;
}

h1,
h2,
h3 {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  line-height: 1.12;
}

p,
li {
  color: var(--text-main);
  font-weight: 500;
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding: var(--section-space) 0;
}

.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-inline: 22px;
  transition: top 0.28s ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 14px;
}

.navbar {
  position: relative;
  width: min(100%, 1400px);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0 12px 36px rgba(0, 110, 146, 0.17);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 38px rgba(0, 110, 146, 0.2);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  max-width: 178px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.35vw, 22px);
}

.nav-links a {
  position: relative;
  padding: 8px 2px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0.88;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-blue);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--deep-blue);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button,
.landing-button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta {
  flex: 0 0 auto;
  padding: 12px 20px;
  background: var(--button-gradient);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 110, 146, 0.22);
}

.nav-cta:hover {
  background: var(--button-gradient-hover);
  transform: translateY(-1px);
}

.button,
.landing-button {
  padding: 12px 22px;
  border: 4px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), var(--button-gradient);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  color: var(--deep-blue);
  box-shadow: 0 8px 18px rgba(0, 110, 146, 0.14);
}

.button:hover,
.landing-button:hover {
  background-image: linear-gradient(#ffffff, #ffffff), var(--button-gradient-hover);
  box-shadow: 0 12px 24px rgba(0, 110, 146, 0.18);
  transform: translateY(-2px);
}

.arrow-link {
  font-family: "Inter", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--deep-blue);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.arrow-link:hover {
  color: var(--deep-blue);
  transform: translateX(2px);
}

.arrow-link span[aria-hidden="true"] {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.arrow-link:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.button-secondary {
  background-image: linear-gradient(#f4f8fb, #f4f8fb), linear-gradient(135deg, rgba(26, 60, 110, 0.34), rgba(64, 170, 205, 0.5));
  color: var(--ink);
}

.button::after,
.landing-button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  z-index: -1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(64, 170, 205, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
}

.button.is-pressing::after,
.landing-button.is-pressing::after,
.nav-cta.is-pressing::after {
  animation: button-ripple 0.55s ease-out;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(0, 110, 146, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-bg,
.page-hero-bg,
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-icon,
.icon,
.service-icon,
.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(64, 170, 205, 0.55), rgba(0, 110, 146, 0.42)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(26, 60, 110, 0.08);
}

.large-icon {
  width: 78px;
  height: 78px;
  padding: 13px;
  border-radius: 50%;
}

.icon,
.service-icon,
.about-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  padding: 11px;
}

.large-icon img,
.icon img,
.service-icon img,
.about-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible,
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  max-width: min(360px, calc(100vw - 44px));
  padding: 16px 18px;
  border-radius: var(--card-radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(0, 110, 146, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes button-ripple {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(28);
  }
}

.metrics {
  margin-top: 32px;
}

.metric {
  min-height: 160px;
  padding: 26px 24px;
  border: 2px solid var(--bg-panel-strong);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(26, 60, 110, 0.055);
  text-align: center;
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.metric p {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.35;
}

.check-list,
.investment-list,
.sap-value-list,
.sap-check-list,
.services-check-list,
.about-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li,
.investment-list li,
.sap-value-list li,
.sap-check-list li,
.services-check-list li,
.about-check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--text-main);
  font-size: 18px;
}

.check-list li::before,
.investment-list li::before,
.sap-value-list li::before,
.sap-check-list li::before,
.services-check-list li::before,
.about-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.home-page .landing {
  position: relative;
  min-height: 680px;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 8% 80px;
  overflow: hidden;
  isolation: isolate;
}

.home-page .landing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(26, 60, 110, 0.76), rgba(0, 110, 146, 0.48) 52%, rgba(64, 170, 205, 0.14)),
    linear-gradient(180deg, rgba(26, 60, 110, 0.18), rgba(26, 60, 110, 0.28));
}

.home-page .landing::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(to bottom, transparent, rgba(247, 250, 252, 0.98));
}

.home-page .landing-content {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  flex: 0 1 760px;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: rgba(236, 244, 250, 0.7);
  box-shadow: 0 18px 45px rgba(26, 60, 110, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-page .landing-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.home-page .landing-content h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.home-page .landing-content p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--text-main);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.home-page .hero,
.home-page .expectations,
.home-page .expertise {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.home-page .hero,
.home-page .expectations,
.home-page .expertise,
.home-page .diagnostic,
.home-page .partner,
.home-page .cta {
  margin-bottom: var(--section-space);
}

.home-page .hero h1,
.home-page .expectations h2,
.home-page .expertise h2,
.home-page .cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
}

.home-page .hero h1 {
  margin-top: -40px;
}

.home-page .expertise h2 {
  margin-top: -40px;
}

.home-page .hero h1::after,
.home-page .expectations h2::after,
.home-page .expertise h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--accent-blue);
}

.home-page .hero p,
.home-page .expertise p {
  max-width: 980px;
  margin: 0 auto 10px;
  color: var(--text-main);
  font-size: 19px;
}

.home-page .cards,
.home-page .metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.home-page .card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: -20px;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent-blue);
}

.home-page .card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(64, 170, 205, 0.16), transparent 34%);
  transition: opacity 0.25s ease;
}

.home-page .card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.home-page .card.is-lit::after {
  opacity: 1;
}

.home-page .card>* {
  position: relative;
  z-index: 1;
}

.home-page .card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.home-page .card p {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.45;
}

.home-page .diagnostic,
.home-page .partner,
.home-page .cta {
  position: relative;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.home-page .diagnostic,
.home-page .partner {
  overflow: hidden;
}

.home-page .diagnostic::before,
.home-page .partner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent-blue);
}

.home-page .diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 44px;
}

.home-page .diagnostic-copy h2,
.home-page .partner h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 38px);
}

.home-page .diagnostic-copy p,
.home-page .partner p {
  margin-bottom: 30px;
  color: var(--text-main);
  font-size: 19px;
}

.home-page .diagnostic-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border: 2px solid rgba(214, 222, 230, 0.6);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-page .diagnostic-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.home-page .diagnostic-card p {
  margin-bottom: 18px;
  color: var(--text-main);
  font-size: 20px;
}

.home-page .diagnostic-card a {
  color: var(--deep-blue);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.home-page .partner {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  padding: 44px;
}

.home-page .cta {
  max-width: 1100px;
  margin-inline: auto;
  padding: 48px;
  text-align: center;
}

.home-page .expectations>p:first-of-type {
  margin-bottom: 30px;
  color: var(--primary-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.home-page .container {
  padding-bottom: 24px;
}

.home-page .expertise {
  margin-bottom: 28px;
}

.home-page .location-section {
  padding-top: 24px;
}

.financial-page .financial-landing {
  position: relative;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
  padding: 160px 6% 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(64, 170, 205, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
  isolation: isolate;
}

.financial-page .financial-landing::before,
.financial-page .financial-landing::after {
  display: none;
}

.financial-page .landing-content {
  position: relative;
  min-width: 0;
  width: min(100%, 980px);
  flex: 0 1 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.financial-page .landing-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 22px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--accent-blue);
}

.financial-page .landing-content h1 {
  max-width: 980px;
  margin-bottom: 16px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.financial-page .landing-content p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--primary-blue);
  font-size: 20px;
}

.financial-page .landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.financial-page .financial-hero-visual {
  width: min(100%, 1060px);
  display: flex;
  justify-content: center;
  padding: clamp(16px, 3vw, 30px);
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.financial-page .dashboard-img {
  width: 100%;
  height: auto;
}

.financial-page .financial-container {
  padding-top: 40px;
}

.financial-page .hero,
.financial-page .expectations,
.financial-page .expertise {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.financial-page .financial-section {
  margin-bottom: var(--section-space);
}

.financial-page .expectations h2,
.financial-page .cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
}

.financial-page .hero h1 {
  font-size: clamp(32px, 4vw, 40px);
  margin-top: -20px;
  margin-bottom: 40px;
}

.financial-page .financial-section h1 {
  margin-top: -40px;
}

.financial-page .expectations h2 {
  margin-top: -60px;
}

.financial-page .hero h1::after,
.financial-page .expectations h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--accent-blue);
}

.financial-page .expectations>p:first-of-type {
  max-width: 930px;
  margin: 0 auto 18px;
  color: var(--text-main);
  font-family: "Krub", Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.financial-page .expectations>p:last-of-type {
  max-width: 930px;
  margin: 0 auto 28px;
  font-size: 19px;
}

.financial-page .cards,
.financial-page .metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.financial-page .cards {
  margin-top: 40px;
}

.financial-page .card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.financial-page .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent-blue);
}

.financial-page .card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(64, 170, 205, 0.16), transparent 34%);
  transition: opacity 0.25s ease;
}

.financial-page .card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.financial-page .card.is-lit::after {
  opacity: 1;
}

.financial-page .card>* {
  position: relative;
  z-index: 1;
}

.financial-page .card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.financial-page .card p {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.45;
}

.financial-page .diagnostic,
.financial-page .partner,
.financial-page .cta {
  position: relative;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.financial-page .diagnostic,
.financial-page .partner {
  overflow: hidden;
}

.financial-page .diagnostic::before,
.financial-page .partner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent-blue);
}

.financial-page .diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 44px;
  margin-top: -40px;
}

.financial-page .diagnostic-copy h2,
.financial-page .partner h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 35px);
}

.financial-page .diagnostic-copy p,
.financial-page .partner p {
  margin-bottom: 30px;
  color: var(--text-main);
  font-size: 19px;
}

.financial-page .diagnostic-card {
  display: block;
  padding: 32px;
  border: 2px solid rgba(214, 222, 230, 0.6);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.financial-page .diagnostic-card h2 {
  margin-bottom: 18px;
  font-size: 35px;
}

.financial-page .diagnostic-card p {
  margin-bottom: 18px;
  color: var(--text-main);
  font-size: 20px;
}

.financial-page .partner {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  padding: 44px;
}

.financial-page .cta {
  max-width: 1100px;
  margin-inline: auto;
  padding: 48px;
  text-align: center;
}

.financial-page .metric strong {
  font-size: clamp(21px, 2.2vw, 28px);
}

.financial-page .financial-supporting-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.financial-page .pie-chart-img {
  width: min(54%, 600px);
  margin-top: 30px;
}

.financial-page .progress-score-img {
  width: min(36%, 300px);
  margin-top: 60px;
}

.financial-page .financial-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 34px auto 24px;
  padding: 36px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.financial-page .financial-section-note {
  max-width: 840px;
  margin: 0 auto;
  color: var(--text-main);
  font-size: 19px;
  font-weight: 500;
  text-align: center;
}

.financial-page .financial-section>.hero {
  margin-bottom: 34px;
}

.financial-page .outcomes-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.financial-page .outcomes-list li {
  min-height: 78px;
  padding: 18px 20px 18px 56px;
  border: 2px solid var(--bg-panel-strong);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.financial-page .outcomes-list li::before {
  left: 20px;
  top: 22px;
}

.financial-page .outcome-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.financial-page .outcome-metrics div {
  min-height: 150px;
  padding: 24px 18px;
  border: 2px solid var(--bg-panel-strong);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.financial-page .outcome-metrics strong,
.financial-page .outcome-metrics span {
  display: block;
}

.financial-page .outcome-metrics strong {
  margin-bottom: 10px;
  color: var(--accent-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.financial-page .outcome-metrics span {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.financial-page .financial-audience-section {
  text-align: center;
}

.financial-page .financial-audience-card {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 34px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.94);
  text-align: left;
}

.financial-page .financial-audience-card .about-audience-list {
  gap: 14px;
}

.financial-page .financial-audience-card li {
  font-size: 19px;
  font-weight: 500;
}

.financial-page .investment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  padding: 22px 0;
}

.financial-page .investment-section .expertise-copy {
  text-align: center;
}

.financial-page .investment-section h2 {
  margin-bottom: 16px;
  font-size: 40px;
  text-align: center;
}

.financial-page .investment-section h3 {
  margin-bottom: 18px;
  color: var(--primary-blue);
  font-size: 28px;
}

.financial-page .investment-section p {
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 18px;
}

.financial-page .investment-card-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.financial-page .investment-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(26, 60, 110, 0.055);
}

.financial-page .investment-card strong {
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
}

.financial-page .investment-card span {
  color: var(--deep-blue);
  font-size: 20px;
  font-weight: 800;
}

.financial-page .investment-note {
  color: var(--ink) !important;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.financial-page .investment-description {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 24px;
  color: var(--text-main);
  font-size: 19px;
}

.financial-page .investment-detail {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(26, 60, 110, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.sap-partners-page .sap-final-cta .button {
  max-width: 260px;
  padding: 12px 22px;
}

.contact-page .contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.financial-page .investment-list li {
  font-size: 19px;
}

.financial-page .investment-panel-image {
  width: min(100%, 720px);
  justify-self: center;
}

.financial-page .financial-bottom-cta {
  margin-bottom: 0;
}

.financial-page .financial-trust-section {
  max-width: 960px;
  margin-inline: auto;
  padding: 42px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.financial-page .financial-trust-section h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 40px);
}

.financial-page .financial-trust-section p,
.financial-page .financial-bottom-cta p {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--text-main);
  font-size: 19px;
}

.sap-partners-page .sap-partner-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 150px 8% 80px;
  overflow: hidden;
  isolation: isolate;
}

.sap-partners-page .sap-partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(26, 60, 110, 0.76), rgba(0, 110, 146, 0.48) 52%, rgba(64, 170, 205, 0.14)),
    linear-gradient(180deg, rgba(26, 60, 110, 0.18), rgba(26, 60, 110, 0.28));
}

.sap-partners-page .sap-partner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(to bottom, transparent, rgba(247, 250, 252, 0.98));
}

.sap-partners-page .sap-partner-hero-copy {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  flex: 0 1 760px;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: rgba(236, 244, 250, 0.7);
  box-shadow: 0 18px 45px rgba(26, 60, 110, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-right: 220px;
  margin-top: 40px;
}

.sap-partners-page .sap-partner-hero-copy::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.sap-partners-page .sap-partner-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.sap-partners-page .sap-partner-hero p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--text-main);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.sap-partners-page .sap-partner-section {
  text-align: center;
  margin-bottom: 110px;
}

.sap-partners-page .cta {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: var(--section-space);
  padding: 48px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.sap-partners-page .sap-section-copy,
.sap-partners-page .sap-commercial-copy {
  max-width: 1040px;
  margin-inline: auto;
  margin-bottom: 46px;
  text-align: center;
}

.sap-partners-page .sap-section-copy h2,
.sap-partners-page .sap-commercial-copy h2,
.sap-partners-page .sap-model-section h2,
.sap-partners-page .sap-reasons-section h2,
.sap-partners-page .cta h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
  margin-top: -40px;
}

.sap-partners-page .sap-model-section h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
  margin-top: -40px;
  margin-bottom: 40px;
}


.sap-partners-page .sap-section-copy h2::after,
.sap-partners-page .sap-commercial-copy h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--accent-blue);
  margin-top: -80px;
}

.sap-partners-page .sap-section-copy p,
.sap-partners-page .sap-commercial-copy p,
.sap-partners-page .sap-section-note,
.sap-partners-page .sap-operate-note,
.sap-partners-page .sap-trust-section p {
  color: var(--text-main);
  font-size: 19px;
}

.sap-partners-page .sap-challenge-grid,
.sap-partners-page .sap-model-grid {
  display: grid;
  gap: 34px;
}

.sap-partners-page .sap-challenge-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sap-partners-page .sap-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sap-partners-page .sap-challenge-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sap-partners-page .sap-model-step {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sap-partners-page .sap-challenge-card {
  min-height: 250px;
}

.sap-partners-page .sap-challenge-card::before,
.sap-partners-page .sap-model-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent-blue);
}

.sap-partners-page .sap-challenge-card::after,
.sap-partners-page .sap-model-step::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(64, 170, 205, 0.16), transparent 34%);
  transition: opacity 0.25s ease;
}

.sap-partners-page .sap-challenge-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.sap-partners-page .sap-challenge-card.is-lit::after,
.sap-partners-page .sap-model-step.is-lit::after {
  opacity: 1;
}

.sap-partners-page .sap-challenge-card>*,
.sap-partners-page .sap-model-step>* {
  position: relative;
  z-index: 1;
}

.sap-partners-page .sap-challenge-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.sap-partners-page .sap-challenge-card p,
.sap-partners-page .sap-model-step p {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.45;
}

.sap-partners-page .sap-reasons-list {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 36px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92)),
    var(--bg-panel);
  text-align: left;
  margin-top: 40px;
}

.sap-partners-page .sap-fit-panel {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 36px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: var(--white);
  text-align: left;
  margin-top: -18px;
}

.sap-partners-page .sap-commercial-panel {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 36px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: var(--white);
  text-align: left;
  margin-top: -18px;
}

.sap-partners-page .sap-fit-panel h3,
.sap-partners-page .sap-commercial-panel h3 {
  margin-bottom: 22px;
  color: var(--accent-blue);
  font-size: 30px;
  text-align: center;
}

.sap-partners-page .sap-final-cta {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 48px 0 56px;
  text-align: center;
}

.sap-partners-page .sap-value-list,
.sap-partners-page .sap-reasons-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sap-partners-page .sap-operate-note,
.sap-partners-page .sap-section-note {
  max-width: 900px;
  margin: 28px auto 0;
}

.sap-partners-page .sap-model-step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.sap-partners-page .sap-trust-section {
  max-width: 960px;
  margin-inline: auto;
  padding: 28px;
  border: 0;
  border-radius: var(--panel-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86));
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}

.sap-partners-page .sap-trust-section h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 40px);
}

.sap-partners-page .sap-trust-section p {
  color: rgba(255, 255, 255, 0.92);
}

.services-page .services-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 150px 8% 80px;
  overflow: hidden;
  isolation: isolate;
}

.services-page .services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(26, 60, 110, 0.76), rgba(0, 110, 146, 0.48) 52%, rgba(64, 170, 205, 0.14)),
    linear-gradient(180deg, rgba(26, 60, 110, 0.18), rgba(26, 60, 110, 0.28));
}

.services-page .services-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(to bottom, transparent, rgba(247, 250, 252, 0.98));
}

.services-page .services-hero-copy {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  flex: 0 1 760px;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: rgba(236, 244, 250, 0.7);
  box-shadow: 0 18px 45px rgba(26, 60, 110, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-right: 500px;
  margin-top: 40px;
}

.services-page .services-hero-copy::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.services-page .services-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.services-page .services-hero p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--text-main);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.services-page .services-container>section {
  margin-bottom: var(--section-space);
}

.services-page .services-section-copy,
.services-page .services-partner-copy {
  max-width: 1040px;
  margin-inline: auto;
  margin-bottom: 34px;
  text-align: center;
}

.services-page .services-partner-copy h2,
.services-page .services-ready-card h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
}

.services-page .services-section-copy h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
  margin-top: -40px;
}

.services-page .services-section-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
  margin-top: -50px;
  margin-bottom: 40px;
}

.services-page .services-section-copy h1::after,
.services-page .services-section-copy h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--accent-blue);
}

.services-page .services-section-copy p,
.services-page .services-partner-copy p,
.services-page .services-ready-card p,
.services-page .service-detail-intro,
.services-page .service-outcome {
  color: var(--text-main);
  font-size: 19px;
}

.services-page .services-grid,
.services-page .services-flow-grid {
  display: grid;
  gap: var(--grid-gap);
}

.services-page .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.services-page .services-flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-page .service-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-page .services-flow-step {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-page .service-card {
  min-height: 270px;
}

.services-page .service-card::before,
.services-page .services-flow-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent-blue);
}

.services-page .service-card::after,
.services-page .services-flow-step::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(64, 170, 205, 0.16), transparent 34%);
  transition: opacity 0.25s ease;
}

.services-page .service-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.services-page .service-card.is-lit::after,
.services-page .services-flow-step.is-lit::after {
  opacity: 1;
}

.services-page .service-card>*,
.services-page .services-flow-step>* {
  position: relative;
  z-index: 1;
}

.services-page .service-card h3,
.services-page .services-flow-step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.services-page .service-card p,
.services-page .services-flow-step p {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.45;
}

.services-page .services-flow-step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.services-page .services-detail-section {
  display: grid;
  gap: 30px;
}

.services-page .service-detail-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 18px 0 34px;
  text-align: center;
}

.services-page .service-detail-block h3 {
  color: var(--ink);
  font-size: 40px;
  text-align: center;
}

.services-page .service-detail-intro,
.services-page .service-outcome {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.services-page .service-detail-card {
  width: min(100%, 760px);
  padding: 28px;
  border: 2px solid rgba(214, 222, 230, 0.6);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: left;
}

.services-page .service-detail-card h4 {
  margin-bottom: 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 30px;
  text-align: center;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-page .services-partner-copy,
.services-page .services-ready-card {
  position: relative;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
}


.services-page .services-audience-card {
  max-width: 900px;
  margin-inline: auto;
  padding: 36px;
  text-align: left;
  position: relative;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: var(--white);
  margin-top: 16px;
}

.services-page .services-audience-section .services-section-copy {
  margin-bottom: 12px;
}

.services-page .services-audience-section .services-section-copy h2 {
  margin-top: 0;
}

.services-page .services-audience-card h3 {
  margin-bottom: 22px;
  color: var(--primary-blue);
  font-size: 26px;
  text-align: center;
}

.services-page .services-audience-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-page .services-partner-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.services-page .services-partner-copy,
.services-page .services-ready-card {
  margin: 0;
  padding: 40px;
  text-align: left;
}

.services-page .services-partner-copy .button {
  margin-top: 42px;
}

.services-page .services-partner-copy::before,
.services-page .services-ready-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent-blue);
}

.services-page .services-ready-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep-blue);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.sap-partners-page .sap-fit-panel,
.sap-partners-page .sap-commercial-panel,
.services-page .service-detail-card,
.about-page .about-collaboration-section,
.about-page .about-leadership-card {
  position: relative;
  overflow: hidden;
}

.sap-partners-page .sap-fit-panel::before,
.sap-partners-page .sap-commercial-panel::before,
.services-page .service-detail-card::before,
.about-page .about-collaboration-section::before,
.about-page .about-leadership-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.services-page .service-detail-card {
  padding: 28px 28px 28px 40px;
}

.about-page .about-collaboration-section {
  padding: 40px 36px 40px 40px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)), var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.about-page .about-leadership-card {
  padding: 34px 34px 34px 40px;
}

.about-page .about-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 150px 8% 80px;
  overflow: hidden;
  isolation: isolate;
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(26, 60, 110, 0.76), rgba(0, 110, 146, 0.48) 52%, rgba(64, 170, 205, 0.14)),
    linear-gradient(180deg, rgba(26, 60, 110, 0.18), rgba(26, 60, 110, 0.28));
}

.about-page .about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(to bottom, transparent, rgba(247, 250, 252, 0.98));
}

.about-page .about-hero-copy {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  flex: 0 1 760px;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: rgba(236, 244, 250, 0.7);
  box-shadow: 0 18px 45px rgba(26, 60, 110, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-right: 500px;
  margin-top: 40px;
}

.about-page .about-hero-copy::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.about-page .about-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.about-page .about-hero p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--text-main);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.about-page .about-container>section {
  margin-bottom: var(--section-space);
}

.about-page .about-section-copy {
  max-width: 1040px;
  margin-inline: auto;
  margin-bottom: 32px;
  text-align: center;
}

.about-page .about-section-copy h2,
.about-page .cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
}

.about-page .about-section-copy h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--accent-blue);
}

.about-page .about-section-copy p,
.about-page .about-bottom-cta p {
  color: var(--text-main);
  font-size: 19px;
}

.about-page .about-feature-grid,
.about-page .about-expertise-grid,
.about-page .about-steps-grid {
  display: grid;
  gap: var(--grid-gap);
}

.about-page .about-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-page .about-expertise-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.about-page .about-steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page .about-feature-card,
.about-page .about-step-card,
.about-page .about-expertise-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px 22px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .about-feature-card::before,
.about-page .about-step-card::before,
.about-page .about-expertise-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent-blue);
}

.about-page .about-feature-card::after,
.about-page .about-step-card::after,
.about-page .about-expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(64, 170, 205, 0.16), transparent 34%);
  transition: opacity 0.25s ease;
}

.about-page .about-feature-card:hover,
.about-page .about-step-card:hover,
.about-page .about-expertise-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.about-page .about-feature-card.is-lit::after,
.about-page .about-step-card.is-lit::after,
.about-page .about-expertise-card.is-lit::after {
  opacity: 1;
}

.about-page .about-feature-card>*,
.about-page .about-step-card>*,
.about-page .about-expertise-card>* {
  position: relative;
  z-index: 1;
}

.about-page .about-feature-card h3,
.about-page .about-step-card h3,
.about-page .about-expertise-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.about-page .about-feature-card p,
.about-page .about-step-card p,
.about-page .about-expertise-card p {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.45;
}

.about-page .about-step-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.about-page .about-intro-section,
.about-page .about-value-section,
.about-page .about-collaboration-section,
.about-page .cta {
  position: relative;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
}


.about-page .about-audience-list {
  position: relative;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: var(--white);
}

.about-page .about-intro-section,
.about-page .about-value-section,
.about-page .about-collaboration-section {
  padding: 44px;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.thank-you-card {
  width: min(100%, 720px);
  padding: 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 110, 146, 0.15);
}

.thank-you-card .large-icon {
  margin: 0 auto 30px;
  font-size: 2rem;
  font-family: Inter, sans-serif;
  color: var(--deep-blue);
}

.thank-you-card h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 20px;
}

.thank-you-card p {
  max-width: 520px;
  margin: 0 auto 18px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.thank-you-card .button {
  margin-top: 24px;
}

.about-page .about-intro-section,
.about-page .about-value-section {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-page .about-audience-list {
  max-width: 900px;
  margin-inline: auto;
  padding: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.about-page .about-leadership-section {
  text-align: center;
}

.about-page .about-leadership-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: minmax(0, 840px);
  gap: 24px;
}

.about-page .about-leadership-card {
  width: 100%;
  max-width: 860px;
  position: relative;
  padding: 42px 42px 42px 48px;
  border: 2px solid rgba(214, 222, 230, 0.76);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: left;
  overflow: hidden;
  margin-top: 20px;
}

.about-page .about-leadership-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.about-page .profile-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--deep-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-page .about-leadership-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.about-page .profile-role {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.about-page .about-leadership-card p {
  margin-bottom: 16px;
  font-size: 17px;
}

.about-page .about-leadership-card p:last-child {
  margin-bottom: 0;
}

.about-page .about-ownership-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--deep-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.about-page .about-ownership-note img {
  width: 24px;
  height: 24px;
}

.about-page .about-bottom-cta p {
  max-width: 820px;
  margin: 0 auto 34px;
}

.about-page .cta {
  max-width: 1100px;
  margin-inline: auto;
  padding: 48px;
  text-align: center;
}

body.contact-page {
  background: radial-gradient(circle at 72% 42%, rgba(64, 170, 205, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.contact-page .contact-main {
  background: radial-gradient(circle at 72% 42%, rgba(64, 170, 205, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.contact-page .contact-hero {
  padding: 180px 20px 70px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 50px;
}

.contact-page .contact-hero-content {
  width: min(100%, 960px);
  margin: 0 auto;
}

.contact-page .contact-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 64px);
}

.contact-page .contact-hero h1::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--accent-blue);
}

.contact-page .contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-main);
  font-size: 26px;
}

.contact-page .contact-section {
  padding-bottom: var(--section-space);
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
  margin-top: -46px;
  padding-top: 0;
}

.contact-page .contact-info,
.contact-page .contact-form-container {
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.contact-page .contact-info {
  padding: 34px;
}

.contact-page .contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-page .contact-info .info-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page .contact-info .info-item+.info-item {
  margin-top: 16px;
}

.contact-page .contact-methods .info-item+.info-item {
  margin-top: 0;
}

.contact-page .contact-info h3 {
  margin-bottom: 8px;
  color: var(--primary-blue);
  font-size: 22px;
}

.contact-page .contact-info p {
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.45;
}

.contact-page .contact-info a {
  color: var(--deep-blue);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page .contact-info a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.contact-page .contact-form-container {
  padding: 38px;
}

.contact-page .form-group {
  margin-bottom: 22px;
}

.contact-page .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--card-radius);
  background: #ffffff;
  color: var(--text-main);
  font-size: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(64, 170, 205, 0.12);
}

.contact-page .form-group input.has-value,
.contact-page .form-group select.has-value,
.contact-page .form-group textarea.has-value {
  border-color: rgba(64, 170, 205, 0.55);
}

.contact-page .contact-form .button {
  width: 100%;
}

.contact-page .form-status {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(64, 170, 205, 0.08);
  color: var(--text-main);
  font-weight: 600;
}

.contact-page .form-status.form-status-success {
  border-color: rgba(64, 170, 205, 0.32);
  background: rgba(64, 170, 205, 0.12);
  color: var(--deep-blue);
}

.contact-page .form-status.form-status-error {
  border-color: rgba(224, 122, 122, 0.36);
  background: rgba(224, 122, 122, 0.12);
  color: #8a2c2c;
}

/* Location and footer */
.contact-page .location-section {
  padding: var(--section-space) 6%;
  background: linear-gradient(180deg, var(--bg-light), var(--bg-light));
}

.location-section {
  padding: var(--section-space) 6%;
  background: linear-gradient(180deg, #ffffff, #f4f8fa);
}

.contact-page .location-card {
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px);
  border: 2px solid rgba(214, 222, 230, 0.8);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 238, 240, 0.86)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.location-info h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 40px);
}

.location-info p {
  margin-bottom: 30px;
  color: var(--text-main);
  font-size: 21px;
  line-height: 1.65;
}

.location-info .button {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  background-image: none;
  color: var(--accent-blue);
  box-shadow: none;
}

.location-info .button:hover {
  background: none;
  background-image: none;
  color: var(--deep-blue);
  box-shadow: none;
  transform: none;
}

.map-wrapper {
  min-height: 420px;
  overflow: hidden;
  border: 2px solid var(--bg-panel-strong);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--section-space) 20px;
  overflow: hidden;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(26, 60, 110, 0.74), rgba(0, 110, 146, 0.62));
}

.footer-inner {
  position: relative;
  z-index: 0;
  width: min(100%, 1180px);
  padding: 36px 40px;
  border: 2px solid rgba(214, 222, 230, 0.7);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand-block {
  max-width: 620px;
  margin-bottom: 34px;
}

.footer-brand-block p {
  margin: 0;
}

.footer-tagline {
  margin-bottom: 10px !important;
  color: var(--deep-blue) !important;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.about-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.about-footer-grid h3 {
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-size: 17px;
  text-transform: uppercase;
}

.about-footer-grid ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.about-footer-grid li,
.about-footer-grid a {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
}

.about-footer-grid a:hover {
  color: var(--deep-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 2px solid var(--bg-panel-strong);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a::after,
h1::after,
h2::after,
h3::after,
.home-page .landing-content::before,
.financial-page .landing-content::before,
.sap-partners-page .sap-partner-hero-copy::before,
.services-page .services-hero-copy::before,
.about-page .about-hero-copy::before,
.home-page .card::before,
.financial-page .card::before,
.sap-partners-page .sap-challenge-card::before,
.sap-partners-page .sap-model-step::before,
.services-page .service-card::before,
.services-page .services-flow-step::before,
.services-page .services-partner-copy::before,
.services-page .services-ready-card::before,
.about-page .about-feature-card::before,
.about-page .about-step-card::before,
.about-page .about-expertise-card::before,
.about-page .about-leadership-card::before {
  content: none !important;
  display: none !important;
}


@media (max-width: 1240px) {
  .navbar {
    max-width: 1120px;
  }

  .brand-logo {
    max-width: 150px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .nav-cta {
    padding-inline: 16px;
    font-size: 14px;
  }

  .services-page .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-page .about-expertise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sap-partners-page .sap-challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
    padding: 70px 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  .navbar {
    min-height: 66px;
    gap: 12px;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 2px solid rgba(64, 170, 205, 0.3);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(0, 110, 146, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 16px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(64, 170, 205, 0.11);
  }

  .home-page .landing {
    min-height: 680px;
    justify-content: center;
    padding: 130px 20px 70px;
  }

  .home-page .landing-content {
    padding: 28px;
  }

  .home-page .cards,
  .home-page .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .diagnostic {
    grid-template-columns: 1fr;
  }

  .home-page .partner {
    display: grid;
  }

  .financial-page .financial-landing {
    min-height: 680px;
    justify-content: center;
    padding: 130px 20px 70px;
  }

  .financial-page .landing-content {
    padding: 28px;
  }

  .financial-page .cards,
  .financial-page .metrics,
  .financial-page .outcomes-list,
  .financial-page .outcome-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .financial-page .diagnostic,
  .financial-page .investment-section {
    grid-template-columns: 1fr;
  }

  .financial-page .partner {
    display: grid;
  }

  .financial-page .financial-supporting-visual {
    align-items: center;
    flex-direction: column;
  }

  .financial-page .pie-chart-img,
  .financial-page .progress-score-img {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .financial-page .financial-check-grid {
    padding: 28px;
  }

  .financial-page .diagnostic,
  .financial-page .partner {
    gap: 24px;
  }

  .sap-partners-page .sap-partner-hero {
    min-height: 680px;
    justify-content: center;
    padding: 130px 20px 70px;
  }

  .sap-partners-page .sap-partner-hero-copy {
    padding: 28px;
    margin-right: 0;
    margin-left: auto;
    width: min(100%, 760px);
    max-width: calc(100vw - 64px);
  }

  .sap-partners-page .sap-partner-hero {
    justify-content: center;
  }

  .sap-partners-page .sap-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .services-hero {
    min-height: 680px;
    justify-content: center;
    padding: 130px 20px 70px;
  }

  .services-page .services-hero-copy {
    padding: 28px;
    margin-right: 0;
    margin-left: auto;
    width: min(100%, 760px);
    max-width: calc(100vw - 64px);
  }

  .services-page .services-hero {
    justify-content: center;
  }

  .services-page .services-flow-grid,
  .services-page .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .service-detail-block,
  .services-page .services-partner-section {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero {
    min-height: 680px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding: 130px 20px 70px;
  }

  .about-page .about-hero-copy {
    padding: 28px;
    margin-right: 0;
    margin-left: auto;
    width: min(100%, 760px);
    max-width: calc(100vw - 64px);
  }

  .about-page .about-feature-grid,
  .about-page .about-expertise-grid,
  .about-page .about-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .contact-page .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }


  .location-card {
    grid-template-columns: 1fr;
  }

  .about-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 64px;
    --grid-gap: 18px;
  }

  .container {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    top: 14px;
  }

  .navbar {
    padding: 10px 12px 10px 16px;
  }

  .brand-logo {
    max-width: 138px;
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .home-page .landing {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    height: auto;
    padding: 126px 16px 56px;
  }

  .home-page .landing-content,
  .home-page .diagnostic,
  .home-page .diagnostic-card,
  .home-page .partner,
  .home-page .cta {
    padding: 28px 22px;
  }

  .home-page .landing-content {
    flex: 0 1 auto;
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .home-page .landing-content h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .home-page .landing-content p,
  .home-page .hero p,
  .home-page .expertise p,
  .home-page .diagnostic-copy p,
  .home-page .partner p {
    font-size: 18px;
  }

  .home-page .cards,
  .home-page .metrics {
    grid-template-columns: 1fr;
  }

  .home-page .card,
  .home-page .metric {
    min-height: auto;
    padding: 26px 20px;
  }

  .financial-page .financial-landing {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    height: auto;
    padding: 126px 16px 56px;
  }

  .financial-page .landing-content,
  .financial-page .diagnostic,
  .financial-page .diagnostic-card,
  .financial-page .partner,
  .financial-page .cta,
  .financial-page .investment-section,
  .financial-page .financial-check-grid,
  .financial-page .financial-trust-section {
    padding: 28px 22px;
  }

  .financial-page .landing-content {
    flex: 0 1 auto;
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .financial-page .landing-content h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .financial-page .landing-content p,
  .financial-page .diagnostic-copy p,
  .financial-page .partner p {
    font-size: 18px;
  }

  .financial-page .cards,
  .financial-page .metrics,
  .financial-page .outcomes-list,
  .financial-page .outcome-metrics,
  .financial-page .financial-check-grid {
    grid-template-columns: 1fr;
  }

  .financial-page .card,
  .financial-page .metric,
  .financial-page .outcome-metrics div {
    min-height: auto;
    padding: 26px 20px;
  }

  .financial-page .landing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .financial-page .financial-supporting-visual {
    flex-direction: column;
  }

  .financial-page .pie-chart-img {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .financial-page .progress-score-img {
    width: min(100%, 200px);
    margin-inline: auto;
    margin-top: -10px;
  }

  .sap-partners-page .sap-partner-hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    height: auto;
    padding: 126px 16px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .sap-partners-page .sap-partner-hero-copy,
  .sap-partners-page .sap-fit-panel,
  .sap-partners-page .sap-commercial-panel,
  .sap-partners-page .sap-reasons-list {
    padding: 28px 22px;
  }

  .sap-partners-page .sap-partner-hero-copy {
    flex: 0 1 auto;
    width: min(100%, calc(100vw - 32px));
    max-width: 760px;
    margin: 0 auto;
  }

  .sap-partners-page .sap-partner-hero h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .sap-partners-page .sap-partner-hero p {
    font-size: 18px;
  }

  .sap-partners-page .sap-challenge-grid,
  .sap-partners-page .sap-model-grid,
  .sap-partners-page .sap-value-list,
  .sap-partners-page .sap-reasons-list {
    grid-template-columns: 1fr;
  }

  .sap-partners-page .sap-challenge-card,
  .sap-partners-page .sap-model-step {
    min-height: auto;
    padding: 26px 20px;
  }

  .services-page .services-hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    height: auto;
    padding: 126px 16px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .services-page .services-hero-copy,
  .services-page .services-audience-card,
  .services-page .services-partner-copy,
  .services-page .services-ready-card,
  .services-page .service-detail-block {
    padding: 28px 22px;
  }

  .services-page .services-hero-copy {
    flex: 0 1 auto;
    width: min(100%, calc(100vw - 32px));
    max-width: 760px;
    margin: 0 auto;
  }

  .services-page .services-hero h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .services-page .services-hero p,
  .services-page .services-section-copy p,
  .services-page .services-partner-copy p,
  .services-page .services-ready-card p {
    font-size: 18px;
  }

  .services-page .services-grid,
  .services-page .services-flow-grid,
  .services-page .services-audience-list {
    grid-template-columns: 1fr;
  }

  .services-page .service-card,
  .services-page .services-flow-step {
    min-height: auto;
    padding: 26px 20px;
  }

  .about-page .about-hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    height: auto;
    padding: 126px 16px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .about-page .about-hero-copy,
  .about-page .about-intro-section,
  .about-page .about-value-section,
  .about-page .about-collaboration-section,
  .about-page .about-leadership-card,
  .about-page .about-audience-list,
  .about-page .cta {
    padding: 24px 20px;
  }

  .about-page .about-hero-copy {
    flex: 0 1 auto;
    width: min(100%, 760px);
    max-width: calc(100vw - 32px);
    margin: 0 auto;
  }

  .about-page .about-hero h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .about-page .about-hero p,
  .about-page .about-section-copy p {
    font-size: 18px;
  }

  .about-page .about-feature-grid,
  .about-page .about-steps-grid,
  .about-page .about-expertise-grid,
  .about-page .about-leadership-grid,
  .about-page .about-audience-list {
    grid-template-columns: 1fr;
  }

  .about-page .about-feature-card,
  .about-page .about-step-card,
  .about-page .about-expertise-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .contact-page .contact-info,
  .contact-page .contact-form-container {
    padding: 28px 22px;
  }

  .contact-page .contact-hero {
    padding: 140px 16px 40px;
  }

  .contact-page .contact-hero p,
  .location-info p {
    font-size: 18px;
  }

  .contact-page .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-grid {
    margin-top: 0;
  }

  .location-card,
  .footer-inner {
    padding: 28px 22px;
  }

  .about-footer-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-toast {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}