/* ============================================================
   SEIZE CONSULTING — SHARED STYLESHEET (internal pages)
   ============================================================ */

/* ============================================================
   0. FONT-FACE — Brockmann
   ============================================================ */
@font-face {
  font-family: 'Brockmann';
  src: url('../fonts/Brockmann-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brockmann';
  src: url('../fonts/Brockmann-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brockmann';
  src: url('../fonts/Brockmann-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brockmann';
  src: url('../fonts/Brockmann-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

section {
  padding: 72px 80px;
}

/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  --teal:       #049A8F;
  --dark:       #071C1C;
  --deep-teal:  #083834;
  --dark-green: #083834;
  --olive:      #2D2D1A;
  --gray:       #A4A3A4;
  --mint:       #A8E2DD;
  --lime:       #E29578;
  --cream:      #F5F8F8;
  --lemon:      #F7FDB7;
  --warm-sand:  #F2E3D1;
}

/* ============================================================
   3. TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Brockmann', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

p {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.75;
}

/* ============================================================
   4. HEADER (internal pages — fixed dark background)
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #071C1C;
}

.header-logo img {
  height: 44px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #F5F8F8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a svg {
  width: 10px;
  height: 10px;
  opacity: 0.7;
  flex-shrink: 0;
}

nav a:not(.nav-cta) {
  position: relative;
}

nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e29578;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:not(.nav-cta):hover::after {
  width: 100%;
}

nav a:not(.nav-cta):hover {
  color: #A8E2DD;
  opacity: 1;
}

.nav-cta {
  background: #049A8F;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #083834 !important;
  color: #fff !important;
}

/* ============================================================
   5. DROPDOWN (Seize'Job)
   ============================================================ */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #071C1C;
  min-width: 220px;
  border: 1px solid rgba(164, 163, 164, 0.2);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #A4A3A4;
  text-transform: none;
  letter-spacing: 0.02em;
}

.dropdown-menu a:hover {
  color: #049A8F !important;
  background: rgba(4, 154, 143, 0.08);
}

/* ============================================================
   6. MOBILE BURGER MENU
   ============================================================ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #071C1C;
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Brockmann', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F8F8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #049A8F;
}

.mobile-menu .mobile-menu-cta {
  color: #049A8F;
}

/* ============================================================
   6b. BREADCRUMB
   ============================================================ */
.breadcrumb {
  margin-top: 72px;
  padding: 14px 40px;
  background: #071C1C;
  border-bottom: 1px solid rgba(169,212,211,0.08);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '›';
  margin: 0 10px;
  color: rgba(169,212,211,0.35);
  font-size: 14px;
}
.breadcrumb a {
  color: rgba(169,212,211,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #049A8F;
}
.breadcrumb span[aria-current="page"] {
  color: rgba(251,251,244,0.85);
}

/* Breadcrumb removes hero margin-top */
.breadcrumb + .page-hero,
.breadcrumb + section {
  margin-top: 0;
}

@media (max-width: 768px) {
  .breadcrumb { padding: 12px 20px; }
  .breadcrumb ol { font-size: 11px; }
}

/* ============================================================
   7. PAGE HERO (internal pages — ~45vh)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  padding: 60px 24px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 28, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.page-hero-title {
  font-family: 'Brockmann', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F5F8F8;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-hero-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #A8E2DD;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 28px;
}

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s;
  border: none;
}

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

.btn-primary {
  background: #049A8F;
  color: #fff;
}

.btn-primary:hover {
  background: #083834;
  box-shadow: 0 8px 32px rgba(4, 154, 143, 0.35);
}

.btn-white {
  background: #fff;
  color: #049A8F;
}

.btn-white:hover {
  background: #e29578;
}

.btn-outline-cream {
  background: transparent;
  color: #F5F8F8;
  border: 2px solid rgba(251, 251, 244, 0.5);
}

.btn-outline-cream:hover {
  background: rgba(251, 251, 244, 0.1);
}

.btn-outline-dark {
  background: transparent;
  color: #071C1C;
  border: 2px solid #071C1C;
}

.btn-outline-dark:hover {
  background: #071C1C;
  color: #F5F8F8;
}

/* ============================================================
   9. SECTION UTILITIES
   ============================================================ */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.tag-lime {
  background: #e29578;
  color: #071C1C;
}

.tag-teal {
  background: #049A8F;
  color: #fff;
}

.tag-mint {
  background: #A8E2DD;
  color: #071C1C;
}

.tag-dark {
  background: rgba(251, 251, 244, 0.12);
  color: #F5F8F8;
}

.section-title {
  font-family: 'Brockmann', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-title-lg {
  font-size: clamp(28px, 3.5vw, 48px);
}

.section-title-md {
  font-size: clamp(22px, 2.5vw, 36px);
}

.section-title-sm {
  font-size: clamp(18px, 2vw, 26px);
}

.section-body {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  max-width: 720px;
}

.section-body-white {
  color: rgba(251, 251, 244, 0.8);
}

.accent-line {
  width: 56px;
  height: 3px;
  background: #e29578;
  border-radius: 2px;
  margin: 20px 0 28px;
}

.accent-line-teal {
  background: #049A8F;
}

.accent-line-mint {
  background: #A8E2DD;
}

/* ============================================================
   10. PUZZLE CARDS (Secteurs section)
   ============================================================ */
.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.puzzle-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  text-decoration: none;
}

.puzzle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.puzzle-card:hover img {
  transform: scale(1.06);
}

.puzzle-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 28, 28, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.puzzle-card-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5F8F8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   11. FEATURE COLUMNS (3-col layout inside sections)
   ============================================================ */
.feature-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.feature-col-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: #A8E2DD;
}

.feature-col-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(251, 251, 244, 0.75);
}

.feature-col-title-dark {
  color: #071C1C;
}

.feature-col-text-dark {
  color: #A4A3A4;
}

/* ============================================================
   12. SPLIT LAYOUT (text left / image right, or vice versa)
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-layout-reverse {
  direction: rtl;
}

.split-layout-reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(7, 28, 28, 0.2);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   13. SERVICE CARDS (Nos activités)
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(7, 28, 28, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(164, 163, 164, 0.15);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7, 28, 28, 0.12);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #071C1C;
  margin-bottom: 14px;
}

.service-card-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #A4A3A4;
}

/* ============================================================
   14. SUBDOMAIN CARDS (Finance sub-domains)
   ============================================================ */
.subdomain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.subdomain-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid rgba(164, 163, 164, 0.2);
  border-left: 3px solid #049A8F;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.subdomain-card:hover {
  box-shadow: 0 12px 40px rgba(7, 28, 28, 0.1);
  transform: translateY(-4px);
}

.subdomain-card-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #071C1C;
  margin-bottom: 12px;
}

.subdomain-card-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #A4A3A4;
}

/* ============================================================
   15. EAM FOCUS ITEMS
   ============================================================ */
.eam-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.eam-focus-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.eam-focus-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.eam-focus-item:hover .eam-focus-item-img {
  transform: scale(1.05);
}

.eam-focus-content {
  padding: 24px;
  background: rgba(11, 58, 58, 0.85);
  border-top: 2px solid #049A8F;
}

.eam-focus-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A8E2DD;
  margin-bottom: 10px;
}

.eam-focus-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(251, 251, 244, 0.7);
}

/* ============================================================
   16. MINI ICON GRID (EAM Data section)
   ============================================================ */
.mini-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(169, 212, 211, 0.15);
}

.mini-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.mini-icon-item img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

.mini-icon-label {
  font-family: 'Brockmann', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A8E2DD;
}

/* ============================================================
   17. PILLAR CARDS (Build & Run)
   ============================================================ */
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar-card {
  padding: 36px 28px;
  border-radius: 8px;
  background: #F5F8F8;
  border: 1px solid rgba(164, 163, 164, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(7, 28, 28, 0.1);
}

.pillar-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #049A8F;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #071C1C;
  margin-bottom: 12px;
}

.pillar-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #A4A3A4;
}

/* ============================================================
   18. DOUBLE EXPERTISE (2-col deep teal section)
   ============================================================ */
.expertise-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.expertise-col-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #A8E2DD;
  margin-bottom: 20px;
}

.expertise-col-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(251, 251, 244, 0.75);
}

.expertise-col-divider {
  width: 40px;
  height: 2px;
  background: #049A8F;
  margin-bottom: 20px;
}

/* ============================================================
   19. PARTNER LOGOS ROW
   ============================================================ */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.partner-logo {
  max-height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.partner-logo:hover {
  opacity: 1;
}

/* ============================================================
   20. SECTION ICON HEADER (icon + title pattern)
   ============================================================ */
.section-icon {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
}

.section-icon-teal {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(130deg);
}

.section-icon-dark {
  filter: none;
}

/* ============================================================
   21. CONTACT CTA SECTION
   ============================================================ */
.section-contact-cta {
  background: #049A8F;
  padding: 80px;
  text-align: center;
}

.contact-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta-inner .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.contact-cta-sub {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.65;
}

.contact-cta-info {
  margin-top: 36px;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
footer {
  background: #071C1C;
  padding: 72px 80px 40px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(164, 163, 164, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(164, 163, 164, 0.15);
  margin-bottom: 36px;
}

.footer-logo img {
  height: 32px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  color: #A4A3A4;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  height: 36px;
  border: 1px solid rgba(164, 163, 164, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: border-color 0.2s;
}

.social-icon:hover {
  border-color: #049A8F;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #A4A3A4;
}

.footer-certifications {
  margin-top: 20px;
}

.footer-certifications a {
  display: inline-block;
}

.footer-certifications img {
  height: 80px;
  width: auto;
}

.footer-col-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F8F8;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  color: #A4A3A4;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #049A8F;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  color: #A4A3A4;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  color: #A4A3A4;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #049A8F;
}

/* ============================================================
   23. DAMIER — GRILLE & BLOCS DÉCORATIFS
   ============================================================ */

/* Container — position:relative on parent required */
.damier {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* The grid: dashed emerald lines */
.damier-grid {
  position: absolute;
  inset: 0;
  display: grid;
}

.damier-grid--6x5 { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(5, 1fr); }
.damier-grid--5x4 { grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(4, 1fr); }
.damier-grid--4x3 { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); }

.damier-cell {
  border: 1px dashed #049A8F;
}

/* Filled blocks — Soft Mint */
.damier-block {
  position: absolute;
  background: #A8E2DD;
  border-radius: 6px;
  opacity: 0.35;
}

/* Light variant — on cream/white backgrounds */
.damier--light .damier-cell {
  border-color: rgba(4, 154, 143, 0.3);
}
.damier--light .damier-block {
  background: #A8E2DD;
  opacity: 0.25;
}

/* Dark variant — on dark/deep-teal backgrounds */
.damier--dark .damier-cell {
  border-color: rgba(168, 226, 221, 0.2);
}
.damier--dark .damier-block {
  background: #A8E2DD;
  opacity: 0.12;
}

/* Hide on mobile to avoid clutter */
@media (max-width: 768px) {
  .damier { display: none; }
}

/* ============================================================
   24. ANIMATIONS — FADE IN ON SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   24. CURSOR GLOW
   ============================================================ */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 154, 143, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: left 0.08s linear, top 0.08s linear;
  mix-blend-mode: screen;
}

/* ============================================================
   25. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  section {
    padding: 56px 48px;
  }

  header {
    padding: 0 32px;
  }

  nav {
    gap: 18px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-layout-reverse {
    direction: ltr;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

  .partners-row {
    gap: 36px;
  }

  .expertise-cols {
    gap: 40px;
  }

  .eam-focus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .puzzle-grid {
    gap: 16px;
  }

  .puzzle-card {
    height: 240px;
  }
}

/* ============================================================
   26. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 48px 24px;
  }

  header {
    padding: 0 24px;
  }

  nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .page-hero {
    height: 55vh;
    min-height: 280px;
  }

  .puzzle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .puzzle-card {
    height: 220px;
  }

  .feature-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subdomain-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eam-focus-grid {
    grid-template-columns: 1fr;
  }

  .mini-icon-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pillar-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expertise-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  footer {
    padding: 56px 24px 32px;
  }

  .section-contact-cta {
    padding: 60px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    gap: 14px;
  }

  .partners-row {
    gap: 28px;
  }

  .split-layout {
    gap: 36px;
  }

  /* Fix inline padding overrides — catch any inline section with horizontal 80px padding */
  section[style*="padding:40px 80px"],
  section[style*="padding: 40px 80px"],
  section[style*="padding: 60px 80px"],
  section[style*="padding:60px 80px"],
  section[style*="padding: 72px 80px"],
  section[style*="padding:72px 80px"],
  section[style*="padding: 80px 80px"],
  section[style*="padding:80px 80px"],
  section[style*="padding: 100px 80px"],
  section[style*="padding:100px 80px"],
  section[style*="padding: 120px 80px"],
  section[style*="padding:120px 80px"],
  section[style*="padding: 80px"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ============================================================
   27. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-white  { color: #F5F8F8; }
.text-teal   { color: #049A8F; }
.text-mint   { color: #A8E2DD; }
.text-gray   { color: #A4A3A4; }
.text-lime   { color: #e29578; }

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.gap-spacer { flex: 1; }

/* ============================================================
   28. DARK SECTION COLOR OVERRIDES
   ============================================================ */
.section-dark .section-title {
  color: #F5F8F8;
}

.section-dark .section-body {
  color: rgba(251, 251, 244, 0.75);
}

.section-dark .accent-line {
  background: #e29578;
}

.section-teal .section-title {
  color: #F5F8F8;
}

.section-teal .section-body {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   29. SCROLL BAR (custom — optional, WebKit)
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #071C1C;
}

::-webkit-scrollbar-thumb {
  background: #049A8F;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A8E2DD;
}

/* ============================================================
   30. SELECTION
   ============================================================ */
::selection {
  background: rgba(4, 154, 143, 0.3);
  color: #F5F8F8;
}

/* ============================================================
   31. ARTICLE — HERO
   ============================================================ */
.article-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 340px;
  overflow: hidden;
  margin-top: 72px;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,28,0.3) 0%, rgba(7,28,28,0.75) 100%);
}

.article-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}

.article-hero-content h1 {
  font-family: 'Brockmann', sans-serif;
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 700;
  color: #F5F8F8;
  max-width: 800px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ============================================================
   32. ARTICLE — CONTENT ZONE
   ============================================================ */
.article-content {
  background: #F5F8F8;
  padding: 72px 20px;
}

.article-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #049A8F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 52px;
  transition: gap 0.2s;
}

.article-back:hover { gap: 12px; }

.article-content h2 {
  font-family: 'Brockmann', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #071C1C;
  margin-top: 52px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.article-content h3 {
  font-family: 'Brockmann', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #071C1C;
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.article-content p {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  color: #2D2D1A;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content ul li,
.article-content ol li {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  color: #2D2D1A;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-content ul li::marker { color: #049A8F; }

.article-content strong {
  font-weight: 600;
  color: #071C1C;
}

/* ============================================================
   33. ARTICLE — SPECIAL ELEMENTS
   ============================================================ */

/* Callout / encadré info */
.callout {
  background: rgba(169,212,211,0.15);
  border-left: 4px solid #049A8F;
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin: 32px 0;
}

.callout p,
.callout li {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px !important;
  color: #2D2D1A !important;
  line-height: 1.75 !important;
  margin-bottom: 8px !important;
}

.callout ul { margin-bottom: 0 !important; padding-left: 20px; }
.callout strong { color: #049A8F !important; font-weight: 700; }

/* Callout CTA — dark */
.callout-cta {
  background: #083834;
  padding: 36px 40px;
  border-radius: 8px;
  margin: 48px 0;
}

.callout-cta h3 {
  font-family: 'Brockmann', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 16px;
  text-transform: none;
  margin-top: 0;
}

.callout-cta p,
.callout-cta li {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  color: rgba(251,251,244,0.8);
  line-height: 1.75;
  margin-bottom: 10px;
}

.callout-cta ul { padding-left: 20px; margin-bottom: 20px; }
.callout-cta ul li::marker { color: #A8E2DD; }
.callout-cta strong { color: #A8E2DD !important; font-weight: 600; }

/* Feature cards grid */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.feature-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #049A8F;
  box-shadow: 0 2px 12px rgba(7,28,28,0.06);
}

.feature-card.muted {
  border-left-color: #A4A3A4;
}

.feature-card h4 {
  font-family: 'Brockmann', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #071C1C;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-card p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
  color: #2D2D1A !important;
  line-height: 1.7 !important;
}

/* Numbered blocks */
.numbered-blocks {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.numbered-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.numbered-block-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #e29578;
  /* lime on cream bg is too light — use teal with opacity instead */
  color: rgba(4,154,143,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}

.numbered-block-body { flex: 1; }

.numbered-block-body h4 {
  font-family: 'Brockmann', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #071C1C;
  margin-bottom: 8px;
}

.numbered-block-body p {
  font-size: 15px !important;
  color: #2D2D1A !important;
  line-height: 1.75 !important;
  margin-bottom: 0 !important;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
}

.comparison-table th {
  background: #071C1C;
  color: #F5F8F8;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.comparison-table th:first-child { border-radius: 4px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 4px 0 0; }

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(164,163,164,0.2);
  color: #2D2D1A;
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td { background: #fff; }
.comparison-table tr:nth-child(odd) td { background: #F5F8F8; }
.comparison-table td:first-child { font-weight: 600; color: #071C1C; }

/* Stat highlights */
.stat-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  text-align: center;
}

.stat-highlight-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #049A8F;
  line-height: 1;
}

.stat-highlight-label {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  color: #A4A3A4;
  margin-top: 6px;
  line-height: 1.5;
}

/* Approaches grid (3 columns, SAP approaches) */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.approach-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(7,28,28,0.07);
  border-top: 4px solid #049A8F;
}

.approach-card-tag {
  font-family: 'Brockmann', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #049A8F;
  margin-bottom: 8px;
}

.approach-card h4 {
  font-family: 'Brockmann', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #071C1C;
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 14px !important;
  color: #2D2D1A !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

.approach-card .example {
  font-size: 13px !important;
  color: #A4A3A4 !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* ============================================================
   34. ARTICLE — RECOMMENDED SECTION
   ============================================================ */
.recommended-articles {
  background: #071C1C;
  padding: 80px;
}

.recommended-articles h2 {
  font-family: 'Brockmann', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  text-align: center;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.recommended-card {
  background: #083834;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.recommended-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.recommended-card-img {
  height: 160px;
  overflow: hidden;
}

.recommended-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.recommended-card:hover .recommended-card-img img { transform: scale(1.05); }

.recommended-card-body {
  padding: 20px;
}

.recommended-card-tag {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A8E2DD;
  margin-bottom: 8px;
}

.recommended-card-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F5F8F8;
  line-height: 1.4;
  margin-bottom: 12px;
}

.recommended-card-link {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #049A8F;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   35. RESPONSIVE — ARTICLE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: 1fr; }
  .feature-cards-3 { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .recommended-grid { grid-template-columns: repeat(2, 1fr); }
  .recommended-articles { padding: 60px 40px; }
  .stat-highlights { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .article-hero { height: 40vh; min-height: 260px; }
  .article-hero-content { padding: 0 16px; }
  .article-content { padding: 48px 20px; }
  .article-content h2 { font-size: 22px; margin-top: 36px; }
  .article-content h3 { font-size: 18px; margin-top: 28px; }
  .article-content p { font-size: 16px; }
  .article-content ul li, .article-content ol li { font-size: 15px; }
  .article-back { margin-bottom: 32px; }
  .callout { padding: 18px 20px; }
  .callout-cta { padding: 24px 20px; }
  .callout-cta h3 { font-size: 18px; }
  .feature-card { padding: 20px; }
  .comparison-table { font-size: 12px; table-layout: fixed; width: 100%; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; word-wrap: break-word; overflow-wrap: break-word; }
  .stat-highlights { grid-template-columns: 1fr; gap: 16px; }
  .stat-highlight-num { font-size: 36px; }
  .recommended-grid { grid-template-columns: 1fr; }
  .recommended-articles { padding: 48px 20px; }
  .recommended-articles h2 { font-size: 22px; margin-bottom: 28px; }
  .numbered-block { flex-direction: column; gap: 8px; }
  .numbered-block-num { width: auto; text-align: left; font-size: 32px; }
  .approach-card { padding: 22px 20px; }
}

/* ============================================================
   36. LANDING PAGES — BASE
   ============================================================ */

/* Noise texture overlay — disabled for clean backgrounds */

/* Hero grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,154,143,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,154,143,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

/* Glow halos */
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,154,143,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-mint {
  background: radial-gradient(circle, rgba(169,212,211,0.07) 0%, transparent 70%);
}

/* Landing tag/badge */
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Brockmann', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #049A8F;
  border: 1px solid rgba(4,154,143,0.3);
  background: rgba(4,154,143,0.06);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.8rem;
}
.lp-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #049A8F;
  box-shadow: 0 0 8px #049A8F;
  animation: lp-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #049A8F; }
  50% { opacity: 0.5; box-shadow: 0 0 16px #049A8F; }
}

/* Section label */
.lp-section-label {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #049A8F;
  margin-bottom: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   37. LANDING — HERO
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  background: #071C1C;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 80px 80px;
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.lp-hero-left { max-width: 900px; text-align: center; }

.lp-hero-h1 {
  font-family: 'Brockmann', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #F5F8F8;
  line-height: 1.12;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.lp-hero-h1 em {
  font-style: normal;
  color: #049A8F;
}

.lp-hero-sub {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #A4A3A4;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Hero stats row */
.lp-hero-stats {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 2rem;
}

.lp-stat-card {
  background: rgba(4,154,143,0.06);
  border: 1px solid rgba(4,154,143,0.18);
  border-radius: 12px;
  padding: 1.4rem 2rem;
  text-align: center;
  min-width: 160px;
  transition: border-color 0.3s;
}
.lp-stat-card:hover { border-color: rgba(4,154,143,0.4); }

.lp-stat-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #e29578;
  line-height: 1;
  margin-bottom: 6px;
}
.lp-stat-label {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A4A3A4;
}

/* Hero stats inline */
.lp-hero-stats-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(4,154,143,0.15);
}

.lp-stat-inline-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #e29578;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-stat-inline-num span { color: #049A8F; }
.lp-stat-inline-label {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.82rem;
  color: #A4A3A4;
  line-height: 1.4;
}

/* ============================================================
   38. LANDING — SECTION BASE
   ============================================================ */
.lp-section {
  padding: 100px 80px;
  position: relative;
}
.lp-section-dark { background: #071C1C; }
.lp-section-mid { background: #083834; border-top: 1px solid rgba(4,154,143,0.1); border-bottom: 1px solid rgba(4,154,143,0.1); }
.lp-section-light { background: var(--cream); }

.lp-section-header { max-width: 800px; margin-bottom: 60px; }
.lp-section-header-center { max-width: 800px; margin: 0 auto 60px; text-align: center; }

.lp-h2 {
  font-family: 'Brockmann', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #F5F8F8;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lp-lead {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(251,251,244,0.65);
  line-height: 1.8;
  max-width: 760px;
}

.lp-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================================
   39. LANDING — PAIN POINT LIST
   ============================================================ */
.lp-challenge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lp-challenge-text p {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(251,251,244,0.72);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.lp-pain-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(251,251,244,0.75);
  line-height: 1.65;
}

.lp-pain-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(4,154,143,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #049A8F;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   40. LANDING — CAPABILITY CARDS GRID
   ============================================================ */
.lp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(4,154,143,0.12);
  border-radius: 16px;
  overflow: hidden;
}

.lp-cap-card {
  padding: 2.2rem;
  border-right: 1.5px solid rgba(4,154,143,0.12);
  border-bottom: 1.5px solid rgba(4,154,143,0.12);
  transition: background 0.3s;
  position: relative;
}
.lp-cap-card:hover { background: #083834; }
.lp-cap-card:hover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #049A8F, #A8E2DD);
}

/* Remove right border on last column */
.lp-cap-card:nth-child(3n) { border-right: none; }
/* Remove bottom border on last row */
.lp-cap-card:nth-last-child(-n+3) { border-bottom: none; }

.lp-cap-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(226,149,120,0.3);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.lp-cap-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.lp-cap-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(251,251,244,0.6);
  line-height: 1.7;
}

/* ============================================================
   41. LANDING — ACCORDION
   ============================================================ */
.lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(4,154,143,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.lp-acc-item {
  background: rgba(251,251,244,0.03);
  border-bottom: 1px solid rgba(4,154,143,0.08);
}
.lp-acc-item:last-child { border-bottom: none; }

.lp-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.lp-acc-trigger:hover { background: rgba(4,154,143,0.04); }

.lp-acc-badge {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5F8F8;
  background: #049A8F;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-acc-question {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F5F8F8;
  flex: 1;
}

.lp-acc-chevron {
  color: #049A8F;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.lp-acc-item.open .lp-acc-chevron { transform: rotate(180deg); }

.lp-acc-body {
  display: none;
  padding: 0 2rem 1.8rem;
}
.lp-acc-item.open .lp-acc-body { display: block; }

.lp-acc-body p {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(251,251,244,0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.lp-acc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0.5rem;
}

.lp-acc-list li {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(251,251,244,0.65);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}
.lp-acc-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #049A8F;
  font-size: 0.8rem;
}

/* ============================================================
   42. LANDING — ANALYTICS BARS
   ============================================================ */
.lp-analytics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-analytics-text p {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(251,251,244,0.7);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.lp-analytics-visual { }

.lp-analytics-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A4A3A4;
  margin-bottom: 1.5rem;
}

.lp-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.lp-bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #049A8F;
  box-shadow: 0 0 8px rgba(4,154,143,0.6);
  flex-shrink: 0;
}

.lp-bar-name {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(251,251,244,0.75);
  min-width: 200px;
}

.lp-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(251,251,244,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.lp-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #049A8F, #A8E2DD);
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.lp-analytics-note {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.78rem;
  color: rgba(251,251,244,0.4);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ============================================================
   43. LANDING — CLIENT BADGES
   ============================================================ */
.lp-client-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.lp-client-badge {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(251,251,244,0.8);
  background: rgba(4,154,143,0.06);
  border: 1px solid rgba(4,154,143,0.15);
  border-radius: 8px;
  padding: 0.65rem 1.2rem;
  transition: border-color 0.25s, color 0.25s;
}
.lp-client-badge:hover {
  border-color: rgba(4,154,143,0.4);
  color: #F5F8F8;
}

/* ============================================================
   44. LANDING — CHALLENGE CARDS (2×2)
   ============================================================ */
.lp-challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(4,154,143,0.12);
  border-radius: 16px;
  overflow: hidden;
}

.lp-challenge-card {
  padding: 2rem;
  transition: background 0.3s;
}
.lp-challenge-card:hover { background: #083834; }

.lp-challenge-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.lp-challenge-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 0.7rem;
}

.lp-challenge-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(251,251,244,0.6);
  line-height: 1.7;
}

/* ============================================================
   45. LANDING — PILLAR BLOCKS
   ============================================================ */
.lp-pillar {
  border-top: 1px solid rgba(4,154,143,0.15);
  padding-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.lp-pillar-left { position: sticky; top: 100px; }

.lp-pillar-num {
  font-family: 'Brockmann', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(4,154,143,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lp-pillar-domain {
  display: inline-block;
  font-family: 'Brockmann', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A8E2DD;
  border: 1px solid rgba(169,212,211,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.lp-pillar-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 1rem;
}

.lp-pillar-intro {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(251,251,244,0.6);
  line-height: 1.8;
}

.lp-feature-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #083834;
  border: 1px solid rgba(4,154,143,0.07);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}
.lp-feature-item:hover {
  border-color: rgba(4,154,143,0.2);
  background: #083834;
}

.lp-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px currentColor;
}

.lp-feature-body { flex: 1; }

.lp-feature-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 5px;
}

.lp-feature-desc {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(251,251,244,0.6);
  line-height: 1.65;
}

/* ============================================================
   46. LANDING — SAP CLOUD BENEFIT CARDS
   ============================================================ */
.lp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.lp-benefit-card {
  background: #083834;
  border: 1px solid rgba(4,154,143,0.07);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.lp-benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(4,154,143,0.3);
}
.lp-benefit-card:hover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #049A8F, #A8E2DD);
}

.lp-benefit-icon { font-size: 1.6rem; margin-bottom: 1rem; }

.lp-benefit-title {
  font-family: 'Brockmann', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 0.7rem;
}

.lp-benefit-text {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(251,251,244,0.55);
  line-height: 1.7;
}

/* ============================================================
   47. LANDING — REFERENCE CARDS
   ============================================================ */
.lp-refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lp-ref-card {
  background: #083834;
  border: 1px solid rgba(4,154,143,0.1);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.lp-ref-card:hover { transform: translateY(-4px); border-color: rgba(4,154,143,0.25); }

.lp-ref-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}

.lp-ref-sector {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A4A3A4;
  margin-bottom: 0.6rem;
  padding-left: 1rem;
}

.lp-ref-name {
  font-family: 'Brockmann', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5F8F8;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.lp-ref-desc {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(251,251,244,0.6);
  line-height: 1.75;
  padding-left: 1rem;
  margin-bottom: 1.2rem;
}

.lp-ref-tag {
  display: inline-block;
  margin-left: 1rem;
  font-family: 'Brockmann', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #049A8F;
  border: 1px solid rgba(4,154,143,0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
}

/* ============================================================
   48. LANDING — FINAL CTA
   ============================================================ */
.lp-cta-final {
  background: linear-gradient(180deg, #071C1C 0%, #083834 100%);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.lp-cta-final-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,154,143,0.09) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lp-cta-h2 {
  font-family: 'Brockmann', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #F5F8F8;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.lp-cta-sub {
  font-family: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(251,251,244,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Landing CTA button */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Brockmann', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  background: #049A8F;
  color: #F5F8F8;
  text-decoration: none;
  transition: all 0.25s;
}
.lp-btn:hover {
  background: #00a89e;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(4,154,143,0.3);
  color: #F5F8F8;
}

/* ============================================================
   49-bis. LANDING — LIGHT SECTION OVERRIDES
   ============================================================ */

/* --- Headings & text --- */
.lp-section-light .lp-h2 { color: #071C1C; }
.lp-section-light .lp-lead { color: rgba(7,28,28,0.6); }
.lp-section-light .lp-section-label { color: #049A8F; }

/* --- Challenge layout (FI-CA, Cloud ERP) --- */
.lp-section-light .lp-challenge-text p { color: rgba(7,28,28,0.7); }
.lp-section-light .lp-pain-item { color: rgba(7,28,28,0.75); }
.lp-section-light .lp-pain-icon { background: rgba(4,154,143,0.08); color: #049A8F; }

/* --- Challenge cards (Cloud ERP 2×2) --- */
.lp-section-light .lp-challenge-grid { border-color: rgba(4,154,143,0.12); }
.lp-section-light .lp-challenge-card { background: #fff; }
.lp-section-light .lp-challenge-card:hover { background: rgba(4,154,143,0.04); }
.lp-section-light .lp-challenge-title { color: #071C1C; }
.lp-section-light .lp-challenge-text { color: rgba(7,28,28,0.6); }
.lp-section-light .lp-challenge-icon { background: rgba(4,154,143,0.08) !important; }

/* --- Capability cards grid --- */
.lp-section-light .lp-cards-grid { border-color: rgba(4,154,143,0.1); }
.lp-section-light .lp-cap-card { border-color: rgba(4,154,143,0.08); }
.lp-section-light .lp-cap-card:hover { background: rgba(4,154,143,0.04); }
.lp-section-light .lp-cap-num { color: rgba(4,154,143,0.2); }
.lp-section-light .lp-cap-title { color: #071C1C; }
.lp-section-light .lp-cap-text { color: rgba(7,28,28,0.6); }

/* --- Accordion --- */
.lp-section-light .lp-accordion { border-color: rgba(4,154,143,0.12); }
.lp-section-light .lp-acc-item { background: #fff; border-color: rgba(4,154,143,0.08); }
.lp-section-light .lp-acc-trigger:hover { background: rgba(4,154,143,0.04); }
.lp-section-light .lp-acc-question { color: #071C1C; }
.lp-section-light .lp-acc-body p { color: rgba(7,28,28,0.65); }
.lp-section-light .lp-acc-list li { color: rgba(7,28,28,0.6); }

/* --- Analytics bars --- */
.lp-section-light .lp-analytics-text p { color: rgba(7,28,28,0.65); }
.lp-section-light .lp-analytics-title { color: rgba(7,28,28,0.5); }
.lp-section-light .lp-bar-name { color: rgba(7,28,28,0.7); }
.lp-section-light .lp-bar-track { background: rgba(4,154,143,0.08); }
.lp-section-light .lp-analytics-note { color: rgba(7,28,28,0.4); }

/* --- Benefit cards --- */
.lp-section-light .lp-benefit-card { background: #fff; border-color: rgba(4,154,143,0.1); }
.lp-section-light .lp-benefit-card:hover { border-color: rgba(4,154,143,0.3); }
.lp-section-light .lp-benefit-title { color: #071C1C; }
.lp-section-light .lp-benefit-text { color: rgba(7,28,28,0.6); }

/* --- Reference cards --- */
.lp-section-light .lp-refs-grid .lp-ref-card { background: #fff; border-color: rgba(4,154,143,0.1); }
.lp-section-light .lp-ref-name { color: #071C1C; }
.lp-section-light .lp-ref-sector { color: rgba(7,28,28,0.5); }
.lp-section-light .lp-ref-desc { color: rgba(7,28,28,0.6); }

/* --- Client badges --- */
.lp-section-light .lp-client-badge { background: rgba(4,154,143,0.06); border-color: rgba(4,154,143,0.15); color: #071C1C; }
.lp-section-light .lp-client-badge:hover { color: #049A8F; }

/* --- Pillar blocks --- */
.lp-section-light .lp-pillar { border-color: rgba(4,154,143,0.1); }
.lp-section-light .lp-pillar-title { color: #071C1C; }
.lp-section-light .lp-pillar-intro { color: rgba(7,28,28,0.6); }
.lp-section-light .lp-pillar-domain { color: #049A8F; border-color: rgba(4,154,143,0.25); }
.lp-section-light .lp-feature-item { background: #fff; border-color: rgba(4,154,143,0.08); }
.lp-section-light .lp-feature-item:hover { background: rgba(4,154,143,0.03); border-color: rgba(4,154,143,0.2); }
.lp-section-light .lp-feature-title { color: #071C1C; }
.lp-section-light .lp-feature-desc { color: rgba(7,28,28,0.6); }

/* ============================================================
   49. LANDING — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero { padding: 120px 40px 60px; }
  .lp-hero-inner { gap: 32px; }
  .lp-hero-stats { flex-wrap: wrap; justify-content: center; }
  .lp-section { padding: 72px 40px; }
  .lp-challenge-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-cards-grid .lp-cap-card:nth-child(2n) { border-right: none; }
  .lp-cards-grid .lp-cap-card:nth-last-child(-n+2) { border-bottom: none; }
  .lp-analytics-layout { grid-template-columns: 1fr; gap: 48px; }
  .lp-pillar { grid-template-columns: 1fr; gap: 36px; }
  .lp-pillar-left { position: static; }
  .lp-refs-grid { grid-template-columns: 1fr; }
  .lp-cta-final { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .lp-hero { padding: 100px 20px 48px; }
  .lp-section { padding: 56px 20px; }
  .lp-hero-h1 { font-size: 1.9rem; }
  .lp-cards-grid { grid-template-columns: 1fr; border-radius: 8px; }
  .lp-cards-grid .lp-cap-card { border-right: none !important; }
  .lp-challenge-grid { grid-template-columns: 1fr; }
  .lp-hero-stats-inline { flex-direction: column; gap: 20px; }
  .lp-hero-stats { flex-wrap: wrap; justify-content: center; }
  .lp-stat-card { min-width: 120px; padding: 1rem 1.2rem; }
  .lp-benefit-grid { grid-template-columns: 1fr; }
  .lp-bar-name { min-width: 140px; font-size: 0.78rem; }
  .lp-cta-final { padding: 60px 20px; }
  .lp-acc-trigger { padding: 1.2rem 1.4rem; }
  .lp-acc-body { padding: 0 1.4rem 1.4rem; }

  /* Fix inline padding overrides on stat sections */
  section[style*="padding:40px 80px"],
  section[style*="padding: 40px 80px"],
  section[style*="padding: 100px 80px"],
  section[style*="padding:100px 80px"],
  section[style*="padding: 80px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
