:root {
  --navy: #0A1F44;
  --gold: #F2A900;
  --blue: #2E7BEA;
  --gray: #8C8C8C;
  --light: #F6F9FD;
  --line: #DDE5F0;
  --text: #102244;
  --muted: #5B6B84;
  --white: #fff;
  --shadow: 0 14px 34px rgba(10, 31, 68, .09);
  --radius: 16px;
  --section-space: clamp(42px, 5vw, 68px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Aptos, Calibri, Arial, sans-serif; color: var(--text); background: var(--white); }
a { color: inherit; text-decoration: none; }
.container { width: min(1440px, calc(100% - clamp(28px, 5vw, 80px))); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { min-height: clamp(68px, 7vw, 82px); display: flex; align-items: center; justify-content: space-between; gap: clamp(18px, 3vw, 32px); }
.brand img { width: clamp(190px, 18vw, 250px); display: block; }
.menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); font-weight: 700; color: var(--navy); }
.menu > a:not(.button), .submenu-toggle { position: relative; padding: 10px 0; }
.menu > a:not(.button)::after, .submenu-toggle::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--blue); transition: right .2s ease; }
.menu > a:not(.button):hover::after, .has-submenu:hover .submenu-toggle::after { right: 0; }
.nav-toggle { display: none; }
.nav-item { position: relative; }
.submenu-toggle { border: 0; background: transparent; color: var(--navy); font: inherit; font-weight: 800; cursor: pointer; }
.submenu-toggle::before { content: "▾"; position: absolute; right: -15px; top: 10px; font-size: 12px; color: var(--blue); }
.submenu { position: absolute; top: calc(100% + 10px); left: -18px; min-width: 210px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 10px; display: none; }
.submenu a { display: block; padding: 11px 12px; border-radius: 10px; color: var(--navy); white-space: nowrap; }
.submenu a:hover { background: var(--light); }
.has-submenu:hover .submenu, .has-submenu.open .submenu { display: block; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 23px; border-radius: 8px; background: var(--navy); color: white; font-weight: 800; border: 1px solid var(--navy); box-shadow: 0 8px 18px rgba(10,31,68,.15); cursor: pointer; }
.button::after { content: "→"; margin-left: 14px; }
.button-secondary { background: transparent; color: var(--navy); box-shadow: none; }
.button-light { background: white; color: var(--navy); border-color: white; }
.button-small { min-height: 42px; padding-inline: 20px; }
.hero { padding: clamp(38px, 5vw, 62px) 0 clamp(38px, 5vw, 58px); background: linear-gradient(100deg, #fff 0%, #fff 47%, #eef5ff 47%, #0a1f44 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(420px, .95fr) minmax(540px, 1.05fr); align-items: center; gap: clamp(34px, 5vw, 64px); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(13px, 1vw, 16px); }
.eyebrow span { width: 11px; height: 11px; border-radius: 99px; background: var(--gold); display: inline-block; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 5.4vw, 76px); line-height: .98; color: var(--navy); margin-bottom: clamp(16px, 2vw, 24px); letter-spacing: -.04em; }
.lead { font-size: clamp(18px, 1.45vw, 21px); line-height: 1.5; color: var(--muted); max-width: 660px; }
.actions { display: flex; gap: 16px; margin-top: clamp(22px, 3vw, 32px); flex-wrap: wrap; }
.hero-visual { position: relative; min-height: clamp(330px, 34vw, 430px); display: grid; grid-template-columns: minmax(260px, 1fr) minmax(190px, 250px); align-items: center; gap: clamp(20px, 2.6vw, 28px); color: white; }
.layer-card { padding: clamp(18px, 2vw, 26px); border-radius: 26px; background: rgba(255,255,255,.62); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.layer-card img { width: 100%; max-height: clamp(280px, 31vw, 390px); object-fit: contain; display: block; }
.steps { display: grid; gap: clamp(12px, 1.6vw, 18px); }
.steps div { display: grid; grid-template-columns: 50px 1fr; column-gap: 14px; align-items: start; }
.steps div::before { content: ""; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.20); grid-row: 1 / span 2; }
.steps strong { text-transform: uppercase; letter-spacing: .04em; font-size: 16px; }
.steps span { color: rgba(255,255,255,.82); line-height: 1.4; }

.proof-bar { background: white; border-bottom: 1px solid var(--line); padding: clamp(14px, 1.8vw, 22px) 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 20px); }
.proof-item { display: grid; gap: 4px; padding: clamp(14px, 1.7vw, 20px); border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg, #fff, #f8fbff); box-shadow: 0 8px 20px rgba(10,31,68,.06); }
.proof-item strong { color: var(--navy); font-size: clamp(20px, 2vw, 28px); letter-spacing: -.02em; }
.proof-item span { color: var(--muted); line-height: 1.35; font-weight: 700; }

.section { padding: var(--section-space) 0; }
.section-label { color: var(--navy); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; font-size: 14px; }
h2 { color: var(--navy); font-size: clamp(28px, 3vw, 44px); line-height: 1.1; letter-spacing: -.03em; margin-bottom: clamp(18px, 2vw, 26px); }
.section-intro { color: var(--muted); font-size: clamp(17px, 1.25vw, 19px); max-width: 780px; line-height: 1.52; }
.card-grid, .pricing-grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.card-grid.auto { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.auto-pricing { grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); align-items: stretch; }
.card, .panel, .pricing-card, .quote-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2.3vw, 32px); box-shadow: var(--shadow); }
.service-card { min-height: clamp(190px, 15vw, 220px); }
.icon { width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center; color: white; font-weight: 900; font-size: 24px; margin-bottom: 16px; }
.navy { background: var(--navy); } .gold { background: var(--gold); } .blue { background: var(--blue); } .gray { background: var(--gray); }
.card h3, .pricing-card h3 { color: var(--navy); margin-bottom: 10px; font-size: clamp(20px, 1.6vw, 22px); }
.card p, .pricing-card p { color: var(--muted); line-height: 1.52; }
.approach-section, .insights-section { background: var(--light); }
.split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(20px, 2.2vw, 28px); align-items: stretch; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 20px; margin-top: 24px; }
.timeline div { position: relative; display: grid; gap: 9px; }
.timeline b { width: 46px; height: 46px; border-radius: 999px; background: var(--navy); color: white; display: grid; place-items: center; font-size: 20px; }
.timeline div:nth-child(2) b { background: var(--gold); }
.timeline div:nth-child(3) b { background: var(--blue); }
.timeline strong { color: var(--navy); }
.timeline span { color: var(--muted); line-height: 1.45; }
.capabilities ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.capabilities li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 10px; }
.saas-overview { background: white; }
.saas-grid { display: grid; grid-template-columns: minmax(420px, .95fr) minmax(440px, 1.05fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.mini-features { display: grid; gap: 14px; }
.mini-features article { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 14px; background: var(--light); border: 1px solid var(--line); border-radius: 15px; padding: 16px 18px; }
.mini-features strong { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; color: white; background: var(--navy); }
.mini-features article:nth-child(2) strong { background: var(--gold); }
.mini-features article:nth-child(3) strong { background: var(--blue); }
.shop-section { background: linear-gradient(180deg, #f7faff, white); }
.pricing-grid { margin-top: clamp(22px, 2.5vw, 30px); }
.pricing-card { position: relative; display: flex; flex-direction: column; }
.pricing-card .button { margin-top: auto; }
.pricing-card.featured { border: 2px solid var(--blue); transform: translateY(-6px); }
.badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy) !important; padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: 12px; }
.price { color: var(--navy) !important; font-weight: 900; font-size: clamp(34px, 3vw, 42px); margin: 16px 0; }
.price span { color: var(--muted); font-size: 18px; font-weight: 700; }
.pricing-card ul { color: var(--muted); line-height: 1.8; padding-left: 20px; }
.shop-note { margin-top: 22px; border-left: 5px solid var(--gold); background: #fff8e6; padding: 16px 18px; border-radius: 12px; color: var(--text); }
.about-section p { color: var(--muted); font-size: clamp(17px, 1.25vw, 19px); line-height: 1.6; }
.quote-card { background: var(--navy); color: white; display: flex; flex-direction: column; justify-content: center; }
.quote-card p { color: white; font-size: clamp(21px, 2vw, 25px); line-height: 1.35; }
.quote-card span { color: var(--gold); font-weight: 900; }
.cta-section { background: var(--navy); color: white; padding: clamp(38px, 4vw, 52px) 0; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { color: white; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.76); font-size: 19px; margin: 0; }
.site-footer { padding: 30px 0; background: #061936; color: white; }
.footer-grid { display: grid; grid-template-columns: minmax(180px, 250px) 1fr auto; gap: 24px; align-items: center; }
.footer-grid img { max-width: 180px; height: auto; }
.footer-grid .footer-links { display: flex; gap: 20px; color: rgba(255,255,255,.78); flex-wrap: wrap; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.62); }

.cta-contact { grid-template-columns: minmax(240px, 1.1fr) minmax(280px, 1.2fr) auto; }
.contact-details { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); gap: 14px; width: 100%; }
.contact-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 14px 16px; }
.contact-item span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.62); margin-bottom: 6px; }
.contact-item strong { display: block; color: #fff; line-height: 1.35; font-size: 14px; }
.contact-item a, .footer-contact a { color: inherit; text-decoration: none; }
.contact-item a:hover, .footer-contact a:hover { text-decoration: underline; }
.footer-grid { grid-template-columns: minmax(160px, 220px) minmax(220px, 1fr) minmax(250px, .9fr) auto; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-contact { display: grid; gap: 6px; color: rgba(255,255,255,.72); font-size: 14px; }

.cart { position: fixed; inset: 0; background: rgba(6,25,54,.68); z-index: 50; display: grid; place-items: center; padding: 24px; }
.cart-box { width: min(520px, 100%); background: white; border-radius: 20px; padding: 34px; box-shadow: 0 20px 80px rgba(0,0,0,.24); position: relative; }
.cart-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 999px; background: var(--light); font-size: 22px; cursor: pointer; }
.muted { color: var(--muted); font-size: 14px; margin-top: 18px; }
@media (min-width: 1600px) {
  .container { width: min(1560px, calc(100% - 96px)); }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
}
@media (max-width: 1160px) {
  .hero { background: linear-gradient(180deg, white 0%, white 52%, var(--navy) 52%, var(--navy) 100%); }
  .hero-grid, .split, .saas-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: minmax(280px, .8fr) minmax(210px, .5fr); }
}
@media (max-width: 980px) {
  .nav { min-height: auto; padding: 16px 0; align-items: flex-start; }
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); background: white; border-radius: 8px; padding: 10px 14px; color: var(--navy); font-weight: 900; }
  .menu { display: none; position: absolute; top: 72px; left: clamp(14px, 4vw, 40px); right: clamp(14px, 4vw, 40px); background: white; padding: 18px; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; gap: 12px; }
  .menu.open { display: flex; }
  .nav-item, .submenu { width: 100%; }
  .submenu-toggle { width: 100%; text-align: left; padding: 8px 0; }
  .submenu-toggle::before { right: 0; }
  .submenu { position: static; display: none; box-shadow: none; margin-top: 6px; min-width: 0; }
  .has-submenu.open .submenu { display: block; }
  .has-submenu:hover .submenu { display: none; }
  .has-submenu.open:hover .submenu { display: block; }
  .hero-visual { grid-template-columns: 1fr; }
  .steps { color: white; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .cta, .footer-grid { display: grid; grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1280px); }
  .brand img { width: 185px; }
  .actions { flex-direction: column; align-items: stretch; }
  h1 { font-size: clamp(38px, 11vw, 46px); }
  .hero { padding-top: 34px; }
  .card, .panel, .pricing-card, .quote-card { padding: 22px; }
}


/* v3 refinements: homepage closer to initial reference, webshop moved to separate SaaS page */
:root { --section-space: clamp(34px, 4vw, 54px); }
.container { width: min(1480px, calc(100% - clamp(28px, 5vw, 92px))); }
.site-header { box-shadow: 0 3px 18px rgba(10,31,68,.04); }
.hero-initial { padding: clamp(34px, 4.4vw, 58px) 0 clamp(22px, 3.2vw, 42px); background: linear-gradient(90deg, #fff 0%, #fff 46%, #f3f8ff 46%, #0a1f44 100%); }
.hero-grid { grid-template-columns: minmax(420px, .88fr) minmax(560px, 1.12fr); gap: clamp(26px, 4vw, 58px); }
.hero-visual-wide { min-height: clamp(330px, 32vw, 440px); grid-template-columns: minmax(330px, .9fr) minmax(230px, .62fr); }
.floating-model { background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.68); border-radius: 4px; box-shadow: none; padding: clamp(10px, 1.5vw, 18px); backdrop-filter: blur(2px); }
.floating-model img { max-height: clamp(300px, 30vw, 410px); }
.strategy-steps { padding: 8px 0; }
.strategy-steps div { grid-template-columns: 46px 1fr; }
.strategy-steps div::before { width: 42px; height: 42px; background: rgba(255,255,255,.15); }
.service-strip { position: relative; margin-top: -1px; padding: clamp(18px, 2vw, 28px) 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-row { transform: translateY(-6px); }
.compact-card { display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; row-gap: 4px; align-items: start; min-height: 116px; padding: clamp(18px, 1.8vw, 24px); }
.compact-card .icon { grid-row: span 2; margin: 0; }
.compact-card h3 { margin: 0 0 6px; font-size: clamp(17px, 1.35vw, 20px); }
.compact-card p { margin: 0; }
.compact-section { padding: clamp(32px, 4vw, 52px) 0; }
.wide-split { grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); }
.sub-hero { padding: clamp(42px, 5vw, 72px) 0; background: linear-gradient(100deg, #fff 0%, #fff 58%, #eef5ff 58%, #f8fbff 100%); border-bottom: 1px solid var(--line); }
.sub-hero-grid { display: grid; grid-template-columns: minmax(420px, .9fr) minmax(350px, .55fr); gap: clamp(30px, 5vw, 72px); align-items: center; }
.saas-visual-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: clamp(22px, 3vw, 42px); box-shadow: var(--shadow); }
.saas-visual-card img { width: 100%; max-height: 430px; object-fit: contain; display: block; }
@media (max-width: 1160px) {
  .hero-initial { background: linear-gradient(180deg, white 0%, white 53%, var(--navy) 53%, var(--navy) 100%); }
  .hero-grid, .sub-hero-grid, .split, .wide-split { grid-template-columns: 1fr; }
  .hero-visual-wide { grid-template-columns: minmax(260px, .8fr) minmax(220px, .5fr); }
  .service-row { transform: none; }
}
@media (max-width: 1100px) {
  .cta-contact { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero-visual-wide { grid-template-columns: 1fr; }
  .compact-card { grid-template-columns: 56px 1fr; }
  .sub-hero { padding-top: 34px; }
}


/* v5 SAP Program Management content block */
.service-link { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.service-link:hover { transform: translateY(-3px); border-color: rgba(46,123,234,.45); box-shadow: 0 18px 38px rgba(10, 31, 68, .12); }
.program-section { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); border-bottom: 1px solid var(--line); }
.program-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr); gap: clamp(22px, 3.2vw, 44px); align-items: stretch; }
.program-copy { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 42px); box-shadow: var(--shadow); }
.program-copy p:not(.section-label):not(.section-intro) { color: var(--muted); line-height: 1.62; font-size: clamp(16px, 1.1vw, 18px); }
.program-highlight { margin-top: clamp(18px, 2vw, 26px); border-left: 5px solid var(--gold); background: #fff8e8; border-radius: 14px; padding: 18px 20px; display: grid; gap: 8px; }
.program-highlight strong { color: var(--navy); text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.program-highlight span { color: var(--text); font-weight: 800; line-height: 1.45; }
.program-points { display: flex; flex-direction: column; justify-content: center; }
.program-points h3 { color: var(--navy); font-size: clamp(22px, 2vw, 28px); margin-bottom: 18px; }
.program-points ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 13px; color: var(--muted); }
.program-points li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; line-height: 1.35; }
.program-points li::before { content: "✓"; color: var(--gold); font-weight: 900; }

.change-section { background: linear-gradient(180deg, #f7faff 0%, #fff 100%); }
.change-highlight { border-left-color: var(--blue); background: #eef6ff; }
@media (max-width: 980px) { .program-grid { grid-template-columns: 1fr; } }


/* Detailed approach text */
.detailed-timeline div {
  align-items: flex-start;
}

.detailed-timeline span {
  line-height: 1.55;
}

@media (min-width: 900px) {
  .detailed-timeline span {
    max-width: 52rem;
  }
}

/* v11 approach visuals and expanded About Us */
.approach-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(20px, 2.4vw, 32px);
}
.approach-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}
.approach-card img {
  width: 100%;
  height: clamp(190px, 16vw, 260px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--light);
}
.approach-card-copy {
  padding: clamp(20px, 2vw, 28px);
}
.approach-card-copy b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}
.approach-card:nth-child(2) .approach-card-copy b { background: var(--gold); }
.approach-card:nth-child(3) .approach-card-copy b { background: var(--blue); }
.approach-card-copy p {
  color: var(--muted);
  line-height: 1.58;
}
.capabilities-section {
  background: #fff;
  padding-top: 0;
}
.capabilities-wide ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
}
.about-copy {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 42px);
}
.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.values-list span {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 800;
  background: var(--light);
}
.founder-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-card > img {
  width: min(190px, 58%);
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  align-self: center;
  margin-bottom: 22px;
  border: 6px solid var(--light);
  box-shadow: 0 14px 34px rgba(10, 31, 68, .12);
}
.founder-card p {
  color: var(--muted);
  line-height: 1.58;
}
@media (max-width: 1080px) {
  .approach-visual-grid,
  .about-grid,
  .capabilities-wide ul {
    grid-template-columns: 1fr;
  }
  .approach-card img {
    height: clamp(210px, 44vw, 340px);
  }
}
@media (max-width: 640px) {
  .values-list {
    grid-template-columns: 1fr;
  }
}

/* v14 bilingual site, credibility, sectors and when-to-involve section */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
  padding: 8px 0;
  white-space: nowrap;
}
.language-switch a {
  color: var(--muted);
}
.language-switch a:hover {
  color: var(--blue);
}
.credibility-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.credibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(210px, .42fr) minmax(320px, .7fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.credibility-main h2 {
  margin-bottom: 12px;
}
.stats-panel {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--navy), #143b7a);
  color: white;
}
.stats-panel strong {
  font-size: clamp(52px, 5vw, 76px);
  line-height: .9;
  color: var(--gold);
}
.stats-panel span {
  color: rgba(255,255,255,.88);
  font-weight: 800;
  line-height: 1.35;
}
.sector-panel h3 {
  color: var(--navy);
  margin-bottom: 16px;
}
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sector-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.when-section {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.when-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
.when-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}
.when-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}
@media (max-width: 1180px) {
  .credibility-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .language-switch {
    padding: 8px 0;
  }
}

/* v15 click-logic refinements: clearer navigation, visible active state and reliable anchor positioning */
[id] { scroll-margin-top: 96px; }
.menu { gap: clamp(12px, 1.6vw, 24px); }
.menu > a.active:not(.button), .submenu a.active, .submenu-toggle.active { color: var(--blue); }
.menu > a.active:not(.button)::after, .submenu-toggle.active::after { right: 0; }
.submenu-toggle { padding-right: 18px; }
.submenu-toggle::before { right: 0; }
.language-switch { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-weight: 800; }
.language-switch a { color: var(--navy); }
.language-switch a:hover { color: var(--blue); }
.submenu a.active { background: var(--light); }
@media (max-width: 1180px) and (min-width: 981px) {
  .brand img { width: 180px; }
  .button-small { display: none; }
  .menu { gap: 12px; font-size: 14px; }
}
@media (max-width: 980px) {
  [id] { scroll-margin-top: 84px; }
  .language-switch { padding: 8px 0; }
}

/* v18 hero visual refinement: closer to the preferred right-side homepage mockup */
.hero-initial {
  background: linear-gradient(90deg, #fff 0%, #fff 46%, #f5f9ff 46%, #0A1F44 100%);
}
.hero-visual-showcase {
  position: relative;
  min-height: clamp(350px, 31vw, 485px);
  display: grid;
  grid-template-columns: minmax(350px, 1fr) minmax(250px, .52fr);
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  padding: clamp(18px, 2vw, 28px) clamp(18px, 2.5vw, 38px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-visual-showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(246,249,253,.35) 0%, rgba(10,31,68,.78) 30%, rgba(10,31,68,.98) 100%),
    radial-gradient(circle at 75% 20%, rgba(46,123,234,.30), transparent 36%),
    linear-gradient(135deg, rgba(10,31,68,.96), rgba(6,25,54,1));
  border-left: 1px solid rgba(221,229,240,.8);
}
.hero-visual-showcase::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  z-index: -2;
  opacity: .42;
  background:
    linear-gradient(to top, rgba(255,255,255,.10) 0 34%, transparent 34% 100%) 2% 100%/9% 68% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.13) 0 46%, transparent 46% 100%) 16% 100%/10% 82% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.09) 0 52%, transparent 52% 100%) 32% 100%/12% 88% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.14) 0 61%, transparent 61% 100%) 52% 100%/13% 94% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.10) 0 42%, transparent 42% 100%) 74% 100%/11% 76% no-repeat,
    repeating-linear-gradient(90deg, rgba(255,255,255,.15) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 18px);
}
.transformation-stack {
  position: relative;
  min-height: clamp(320px, 28vw, 455px);
  display: grid;
  place-items: center;
}
.hero-stack-icon {
  width: min(72%, 420px);
  max-height: clamp(285px, 28vw, 420px);
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 22px 24px rgba(10,31,68,.16));
}
.glass-plane {
  position: absolute;
  left: 50%;
  width: min(86%, 450px);
  height: clamp(68px, 7vw, 98px);
  transform: translateX(-50%) skewY(-8deg) rotate(-2deg);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.18));
  box-shadow: 0 12px 28px rgba(10,31,68,.08);
  backdrop-filter: blur(4px);
  opacity: .66;
}
.plane-1 { top: 9%; border-color: rgba(10,31,68,.28); }
.plane-2 { top: 31%; border-color: rgba(242,169,0,.46); background: linear-gradient(135deg, rgba(255,250,237,.82), rgba(242,169,0,.10)); }
.plane-3 { top: 53%; border-color: rgba(46,123,234,.42); background: linear-gradient(135deg, rgba(239,247,255,.82), rgba(46,123,234,.10)); }
.plane-4 { top: 75%; border-color: rgba(140,140,140,.42); background: linear-gradient(135deg, rgba(255,255,255,.70), rgba(140,140,140,.10)); }
.strategy-steps-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  gap: clamp(14px, 1.8vw, 22px);
}
.strategy-steps-panel div {
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  padding: 4px 0;
}
.strategy-steps-panel div::before {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 12px 20px rgba(0,0,0,.16);
  position: relative;
}
.strategy-steps-panel .step-strategy::before { content: "◉"; display: grid; place-items: center; font-size: 22px; color: #fff; }
.strategy-steps-panel .step-design::before { content: "▦"; display: grid; place-items: center; font-size: 22px; color: #fff; background: var(--gold); }
.strategy-steps-panel .step-deliver::before { content: "⚙"; display: grid; place-items: center; font-size: 21px; color: #fff; background: var(--blue); }
.strategy-steps-panel .step-sustain::before { content: "▥"; display: grid; place-items: center; font-size: 22px; color: #fff; background: var(--gray); }
.strategy-steps-panel strong {
  font-size: clamp(15px, 1.15vw, 18px);
  color: #fff;
}
.strategy-steps-panel span {
  color: rgba(255,255,255,.86);
  font-weight: 650;
  line-height: 1.35;
}
@media (max-width: 1160px) {
  .hero-initial { background: linear-gradient(180deg, #fff 0%, #fff 48%, #0A1F44 48%, #0A1F44 100%); }
  .hero-visual-showcase { grid-template-columns: 1fr; padding: clamp(20px, 4vw, 34px); border-radius: 22px; background: linear-gradient(135deg, rgba(10,31,68,.96), rgba(6,25,54,1)); }
  .hero-visual-showcase::before { inset: 0; border-left: 0; }
  .hero-visual-showcase::after { width: 100%; opacity: .22; }
  .strategy-steps-panel { grid-template-columns: repeat(2, minmax(210px,1fr)); }
}
@media (max-width: 760px) {
  .hero-visual-showcase { grid-template-columns: 1fr; min-height: auto; }
  .transformation-stack { min-height: 280px; }
  .hero-stack-icon { width: min(76%, 320px); }
  .strategy-steps-panel { grid-template-columns: 1fr; }
}

/* v20 homepage hero: technical implementation of approved layered model */
.hero-visual-showcase {
  position: relative;
  grid-template-columns: minmax(440px, 1fr) minmax(250px, .46fr);
  gap: clamp(28px, 3.5vw, 50px);
  padding: clamp(16px, 2vw, 28px) clamp(20px, 2.8vw, 44px) clamp(16px, 2vw, 28px) clamp(10px, 1.2vw, 18px);
}
.hero-visual-showcase::before {
  inset: 0 0 0 35%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.42) 0%, rgba(10,31,68,.76) 28%, rgba(10,31,68,.98) 100%),
    radial-gradient(circle at 72% 18%, rgba(46,123,234,.28), transparent 32%),
    linear-gradient(135deg, rgba(10,31,68,.96), rgba(6,25,54,1));
}
.hero-visual-showcase::after {
  opacity: .50;
  background:
    linear-gradient(to top, rgba(255,255,255,.10) 0 40%, transparent 40% 100%) 4% 100%/10% 78% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.13) 0 58%, transparent 58% 100%) 21% 100%/12% 96% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.08) 0 72%, transparent 72% 100%) 43% 100%/13% 100% no-repeat,
    linear-gradient(to top, rgba(255,255,255,.14) 0 48%, transparent 48% 100%) 68% 100%/11% 82% no-repeat,
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 19px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 19px);
}
.hero-stack-technical {
  min-height: clamp(350px, 31vw, 485px);
  width: 100%;
  align-self: center;
}
.stack-graphic {
  width: min(100%, 560px);
  max-height: clamp(330px, 30vw, 470px);
  overflow: visible;
  display: block;
  margin-inline: auto;
}
.stack-graphic .plane-fill {
  fill: rgba(255,255,255,.34);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}
.stack-graphic .network-line {
  fill: none;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.stack-graphic .node {
  stroke: rgba(255,255,255,.78);
  stroke-width: 2.1;
  vector-effect: non-scaling-stroke;
}
.stack-graphic .dash {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1 11;
  vector-effect: non-scaling-stroke;
}
.stack-graphic .plane-navy .plane-fill { stroke: rgba(10,31,68,.82); fill: rgba(255,255,255,.35); }
.stack-graphic .plane-navy .network-line, .stack-graphic .plane-navy .node, .stack-graphic .navy-dash { stroke: var(--navy); }
.stack-graphic .plane-navy .node { fill: var(--navy); }
.stack-graphic .plane-gold .plane-fill { stroke: rgba(242,169,0,.78); fill: rgba(242,169,0,.13); }
.stack-graphic .plane-gold .network-line, .stack-graphic .plane-gold .node, .stack-graphic .gold-dash { stroke: var(--gold); }
.stack-graphic .plane-gold .node { fill: var(--gold); }
.stack-graphic .plane-blue .plane-fill { stroke: rgba(46,123,234,.78); fill: rgba(46,123,234,.13); }
.stack-graphic .plane-blue .network-line, .stack-graphic .plane-blue .node, .stack-graphic .blue-dash { stroke: var(--blue); }
.stack-graphic .plane-blue .node { fill: var(--blue); }
.stack-graphic .plane-gray .plane-fill { stroke: rgba(140,140,140,.70); fill: rgba(140,140,140,.12); }
.stack-graphic .plane-gray .network-line, .stack-graphic .plane-gray .node { stroke: var(--gray); }
.stack-graphic .plane-gray .node { fill: var(--gray); }
.strategy-steps-panel {
  position: relative;
  align-self: center;
  gap: clamp(14px, 1.5vw, 20px);
  padding-left: clamp(18px, 2vw, 34px);
}
.strategy-steps-panel div {
  position: relative;
  min-height: 62px;
  grid-template-columns: 58px 1fr;
}
.strategy-steps-panel div::after {
  content: "";
  position: absolute;
  right: calc(100% + 14px);
  top: 28px;
  width: clamp(68px, 7vw, 128px);
  border-top: 2px dotted rgba(255,255,255,.66);
}
.strategy-steps-panel .step-strategy::after { border-color: rgba(255,255,255,.74); }
.strategy-steps-panel .step-design::after { border-color: var(--gold); }
.strategy-steps-panel .step-deliver::after { border-color: var(--blue); }
.strategy-steps-panel .step-sustain::after { border-color: rgba(255,255,255,.58); }
.strategy-steps-panel div::before {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 14px 24px rgba(0,0,0,.20);
}
.strategy-steps-panel strong { display: block; margin-top: 3px; }
.strategy-steps-panel span { max-width: 260px; }
@media (max-width: 1160px) {
  .hero-visual-showcase { grid-template-columns: 1fr; }
  .hero-stack-technical { min-height: clamp(300px, 54vw, 430px); }
  .stack-graphic { width: min(92%, 540px); }
  .strategy-steps-panel { padding-left: 0; }
  .strategy-steps-panel div::after { display: none; }
}
@media (max-width: 760px) {
  .hero-stack-technical { min-height: 300px; }
  .stack-graphic { width: min(100%, 390px); }
}

/* v21: option A - use the approved PNG crop as fixed homepage hero visual master */
.hero-visual-static {
  display: block;
  min-height: auto;
  padding: 0;
  color: inherit;
  overflow: visible;
  isolation: auto;
}
.hero-visual-static::before,
.hero-visual-static::after {
  content: none !important;
  display: none !important;
}
.hero-visual-static img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 1160px) {
  .hero-visual-static {
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
}


/* v22 optimization: responsive master hero image, conversion CTA and publication polish */
.hero-visual-static {
  min-height: auto;
  display: block;
  align-self: center;
}
.hero-master-picture,
.hero-master-picture img {
  display: block;
  width: 100%;
}
.hero-master-picture img {
  height: auto;
  max-height: clamp(360px, 35vw, 560px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(6, 25, 54, .18);
}
.mini-cta-section {
  padding: clamp(22px, 2.8vw, 36px) 0;
  background: #fff;
}
.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 36px);
  border-left: 6px solid var(--gold);
  background: linear-gradient(100deg, #fff 0%, #fff 62%, #f7faff 100%);
}
.mini-cta strong {
  display: block;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.mini-cta span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  max-width: 760px;
}
.footer-contact span:nth-child(2) {
  color: rgba(255,255,255,.52);
  font-size: 13px;
}
@media (max-width: 1160px) {
  .hero-visual-static {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .hero-master-picture img {
    max-height: none;
    margin-inline: auto;
    width: min(100%, 900px);
  }
}
@media (max-width: 760px) {
  .hero-master-picture img {
    width: min(112%, 900px);
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 14px;
  }
  .mini-cta {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mini-cta .button {
    width: 100%;
  }
}


/* v23 privacy-friendly analytics and lead form */
.lead-form-section {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-top: 1px solid var(--line);
}
.lead-form-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.lead-form-copy {
  position: sticky;
  top: 110px;
}
.privacy-note {
  margin-top: 22px;
  border-left: 5px solid var(--blue);
  background: #eef6ff;
  border-radius: 14px;
  padding: 18px 20px;
  display: grid;
  gap: 8px;
}
.privacy-note strong {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}
.privacy-note span {
  color: var(--text);
  font-weight: 750;
  line-height: 1.45;
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
  font-size: 14px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}
.lead-form textarea {
  resize: vertical;
  min-height: 130px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46,123,234,.12);
}
.lead-form .full {
  grid-column: 1 / -1;
}
.lead-form .checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}
.lead-form .checkbox input {
  min-height: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.lead-form .checkbox a {
  color: var(--blue);
  text-decoration: underline;
}
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.form-fallback {
  color: var(--blue);
  font-weight: 850;
}
.form-fallback:hover {
  text-decoration: underline;
}
.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
@media (max-width: 980px) {
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
  .lead-form-copy {
    position: static;
  }
}
@media (max-width: 640px) {
  .lead-form {
    grid-template-columns: 1fr;
  }
}

/* v24 expanded SAP Insights article */
.insight-card {
  display: block;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46,123,234,.45);
  box-shadow: 0 18px 38px rgba(10, 31, 68, .12);
}
.insight-card span {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}
.insight-article {
  margin-top: clamp(24px, 3vw, 42px);
  border-left: 5px solid var(--gold);
}
.insight-article h3 {
  color: var(--navy);
  font-size: clamp(24px, 2.2vw, 34px);
  margin-bottom: 18px;
}
.insight-article p {
  color: var(--muted);
  line-height: 1.64;
  font-size: clamp(16px, 1.1vw, 18px);
}
.insight-article .button {
  margin-top: 10px;
}

/* v29 navigation refinement */
.menu { gap: clamp(10px, 1.35vw, 22px); }
.submenu { min-width: 260px; }
.insights-toggle + .submenu { min-width: min(420px, calc(100vw - 48px)); }
.submenu a { line-height: 1.25; }
.button-small { white-space: nowrap; }
@media (max-width: 1280px) and (min-width: 981px) {
  .brand img { width: 170px; }
  .menu { gap: 10px; font-size: 13.5px; }
  .button-small { padding-inline: 14px; min-height: 38px; }
  .submenu { min-width: 240px; }
}
@media (max-width: 980px) {
  .language-switch {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    width: 100%;
  }
}

/* v33 commercial strengthening */
#situations .card, #results .card { min-height: 100%; }
#situations h3, #results h3 { margin-bottom: 10px; }


/* v34 matrix presentation for situations and results */
.matrix-section .section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.matrix-card {
  min-height: 100%;
  padding: 24px 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.08);
  position: relative;
  overflow: hidden;
}

.matrix-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 18px 0 0 18px;
}

.matrix-card h3 {
  margin-bottom: 10px;
}

.matrix-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.matrix-card.accent-blue {
  background: linear-gradient(180deg, rgba(46, 123, 234, 0.08) 0%, rgba(255,255,255,1) 100%);
}
.matrix-card.accent-blue::before {
  background: #2E7BEA;
}

.matrix-card.accent-amber {
  background: linear-gradient(180deg, rgba(242, 169, 0, 0.10) 0%, rgba(255,255,255,1) 100%);
}
.matrix-card.accent-amber::before {
  background: #F2A900;
}

@media (max-width: 900px) {
  .matrix-grid {
    grid-template-columns: 1fr;
  }
}


/* v35 final conversion CTA */
.final-cta-section {
  padding-top: 54px;
  padding-bottom: 34px;
}

.final-cta {
  text-align: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(46, 123, 234, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(242, 169, 0, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fe 100%);
  border: 1px solid rgba(10, 31, 68, 0.10);
  box-shadow: 0 18px 44px rgba(10, 31, 68, 0.10);
}

.final-cta h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.55vw, 20px);
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button-secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid rgba(10, 31, 68, 0.18);
  box-shadow: none;
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 123, 234, 0.50);
}


/* v36 footer brand text replacement */
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.footer-brand-text strong {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-brand-text span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}


/* v37 SEO focus keyword section */
.seo-focus-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46, 123, 234, 0.10), rgba(242, 169, 0, 0.10));
  border: 1px solid rgba(10, 31, 68, 0.10);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(10, 31, 68, 0.06);
}

/* v38 case section */
.cases-section { padding-top: 48px; padding-bottom: 48px; }
.case-panel { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr); gap: clamp(24px, 4vw, 42px); padding: clamp(28px, 4vw, 46px); border-radius: 26px; background: radial-gradient(circle at top right, rgba(46,123,234,.12), transparent 34%), linear-gradient(135deg,#fff 0%,#f7faff 100%); border: 1px solid rgba(10,31,68,.10); }
.case-content p { line-height: 1.72; }
.case-summary { border-radius: 22px; padding: 24px; background: linear-gradient(180deg, rgba(242,169,0,.12), rgba(46,123,234,.08)); border: 1px solid rgba(10,31,68,.10); align-self: start; position: sticky; top: 110px; }
.case-summary h4 { margin-top: 0; margin-bottom: 10px; color: var(--navy); }
.case-summary ul { margin: 18px 0 22px; padding-left: 20px; }
.case-summary li { margin-bottom: 8px; font-weight: 650; }
@media (max-width: 900px) { .case-panel { grid-template-columns: 1fr; } .case-summary { position: static; } }


/* v39 release candidate refinements */
.submenu-grouped {
  padding-top: 12px;
  padding-bottom: 12px;
}

.submenu-label {
  margin: 8px 14px 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(10, 31, 68, 0.10);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.submenu-label:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 4px;
}

.case-structured .case-content {
  display: grid;
  gap: 18px;
}

.case-block {
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.case-block h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--navy);
}

.case-block p {
  margin-bottom: 0;
}


/* v40 footer release correction */
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.footer-brand-text strong {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-brand-text span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}


/* v43 explicit 11-sector listing */
.sector-experience-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.sector-experience-block {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(46, 123, 234, 0.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(242, 169, 0, 0.12), transparent 34%),
    #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.10);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.07);
}

.sector-experience-block h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--navy);
}

.sector-experience-block p {
  margin-bottom: 18px;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sector-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46, 123, 234, 0.10), rgba(242, 169, 0, 0.10));
  border: 1px solid rgba(10, 31, 68, 0.10);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
