/* ===================== TOKENS ===================== */
:root {
  --navy-900: #070b16;
  --navy-800: #0a0e1a;
  --navy-700: #0f1526;
  --navy-600: #151d33;
  --ink: #0d1424;
  --slate-700: #334155;
  --slate-500: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --cyan: #38bdf8;
  --teal: #22d3a7;
  --blue: #3b82f6;
  --indigo: #6366f1;

  --grad: linear-gradient(100deg, #38bdf8 0%, #22d3a7 100%);
  --grad-blue: linear-gradient(120deg, #2563eb 0%, #22d3a7 100%);

  --oracle: #e11d3a;
  --odoo: #714b67;
  --sap: #1e6bd6;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 12px 30px -12px rgba(15, 23, 42, .18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, .35);

  --container: 1180px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy-800); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 10px; cursor: pointer; border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #04121a; box-shadow: 0 8px 24px -8px rgba(34, 211, 167, .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(34, 211, 167, .7); }
.btn-ghost { background: rgba(255, 255, 255, .07); color: #fff; border: 1px solid rgba(255, 255, 255, .22); }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 22, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand-mark { display: grid; place-items: center; }
.brand-text { font-family: var(--font-head); font-weight: 500; font-size: 20px; color: #fff; letter-spacing: -.02em; }
.brand-text strong { font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a { color: rgba(255, 255, 255, .74); font-size: 14.5px; font-weight: 500; transition: color .16s; }
.main-nav a:hover { color: #fff; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 14px 24px 22px; background: var(--navy-800); border-bottom: 1px solid rgba(255, 255, 255, .06); }
.mobile-menu a { color: rgba(255, 255, 255, .82); padding: 11px 0; font-weight: 500; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.mobile-menu .btn { margin-top: 10px; }
.mobile-menu.open { display: flex; }

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; padding: clamp(32px, 4vw, 48px) 0 clamp(34px, 4vw, 50px); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 8%, rgba(56, 189, 248, .22), transparent 60%),
    radial-gradient(50% 50% at 15% 90%, rgba(34, 211, 167, .16), transparent 60%),
    linear-gradient(180deg, #0a0e1a, #070b16);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 60% 20%, #000, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; font-family: var(--font-head); font-size: 14.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.eyebrow-glow { background: rgba(34, 211, 167, .1); border: 1px solid rgba(34, 211, 167, .28); padding: 7px 16px; border-radius: 100px; color: #7ff0d0; font-size: 13px; }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); margin-bottom: 16px; }
.hero-rotator { display: inline-block; min-height: 1.1em; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.12rem); color: rgba(226, 232, 240, .8); max-width: 560px; margin-bottom: 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .09); }
.hero-trust li { font-size: 12px; line-height: 1.3; color: rgba(226, 232, 240, .58); }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: #fff; margin-bottom: 2px; }

.hero-cards { display: flex; flex-direction: column; gap: 11px; }
.platform-chip {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px; padding: 13px 16px; backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s;
}
.platform-chip:hover { transform: translateX(-6px); border-color: rgba(34, 211, 167, .5); }
.platform-chip strong { display: block; font-family: var(--font-head); font-size: 15px; }
.platform-chip span { font-size: 12.5px; color: rgba(226, 232, 240, .55); }
.chip-badge { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 12px; color: #fff; }
.chip-badge.lg { width: 54px; height: 54px; font-size: 14px; border-radius: 14px; margin-bottom: 18px; }
.chip-oracle { background: var(--oracle); }
.chip-odoo { background: var(--odoo); }
.chip-sap { background: var(--sap); }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(28px, 3.4vw, 44px) 0; }
.section-alt { background: var(--slate-50); }
.section-head { max-width: 720px; margin-bottom: 26px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--slate-500); font-size: 1.05rem; }
.section .eyebrow { color: var(--blue); }

/* ===================== SERVICE CARDS ===================== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 28px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); opacity: 0; transition: opacity .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(34, 211, 167, .4); box-shadow: var(--shadow-md); }
.service-card.featured::before { opacity: 1; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card > p { color: var(--slate-500); font-size: .96rem; margin-bottom: 16px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.service-card li { position: relative; padding-left: 26px; font-size: .93rem; color: var(--slate-700); }
.service-card li::before { content: "▸"; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.card-link { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue); transition: gap .2s; }
.card-link:hover { color: var(--teal); }

/* ===================== FEATURES ===================== */
.features-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.features-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.features-copy > p { color: var(--slate-500); margin-bottom: 24px; font-size: 1.05rem; }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--navy-800); color: #fff; border-radius: var(--radius); padding: 26px 24px; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: .85rem; color: rgba(226, 232, 240, .6); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-item { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-sm); padding: 20px 20px; transition: transform .2s, box-shadow .2s; }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, rgba(56,189,248,.14), rgba(34,211,167,.14)); font-size: 19px; margin-bottom: 10px; }
.feature-item h3 { font-size: 1.08rem; margin-bottom: 7px; }
.feature-item p { font-size: .9rem; color: var(--slate-500); }

/* ===================== METHODOLOGY (DARK) ===================== */
.section-dark { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 0%, rgba(56, 189, 248, .12), transparent 60%); }
.section-dark .container { position: relative; }
.section-dark .section-head p { color: rgba(226, 232, 240, .65); }
.section-dark .eyebrow { color: var(--teal); }
.timeline { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 40px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, rgba(56,189,248,.3), rgba(34,211,167,.5)); }
.timeline li { position: relative; text-align: center; }
.tl-node { position: relative; z-index: 2; display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%; background: var(--navy-600); border: 1px solid rgba(255, 255, 255, .14); font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: rgba(255,255,255,.7); }
.tl-node.active { background: var(--grad); color: #04121a; border-color: transparent; box-shadow: 0 0 0 6px rgba(34, 211, 167, .15); }
.timeline h3 { font-size: 1.02rem; margin-bottom: 6px; }
.timeline p { font-size: .82rem; color: rgba(226, 232, 240, .55); }
.method-cards .method-card { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--radius); padding: 24px 24px; transition: transform .25s, border-color .25s, background .25s; }
.method-cards .method-card:hover { transform: translateY(-6px); border-color: rgba(34, 211, 167, .4); background: rgba(255, 255, 255, .06); }
.method-icon { font-size: 25px; display: block; margin-bottom: 12px; }
.method-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.method-card p { font-size: .92rem; color: rgba(226, 232, 240, .62); }

/* ===================== STATS STRIP ===================== */
.stats-strip { padding: clamp(22px, 3vw, 36px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid > div { display: flex; flex-direction: column; gap: 6px; }
.stat-big { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-grid span:last-child { font-size: .9rem; color: var(--slate-500); }

/* ===================== CTA BAND ===================== */
.cta-band { background: var(--white); color: #fff; padding: clamp(22px, 2.6vw, 36px) 0 clamp(14px, 1.8vw, 22px); }
.cta-inner {
  position: relative; text-align: center; max-width: 960px; margin: 0 auto;
  background: linear-gradient(125deg, #172554 0%, #2563eb 48%, #22d3a7 128%);
  border-radius: 26px; padding: clamp(44px, 6vw, 68px) clamp(26px, 5vw, 56px);
  overflow: hidden; box-shadow: 0 34px 70px -26px rgba(37, 99, 235, .55);
}
.cta-inner::before { content: ""; position: absolute; top: -40%; right: -10%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 62%); pointer-events: none; }
.cta-inner::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(60% 80% at 20% 100%, #000, transparent 75%); pointer-events: none; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 12px; }
.cta-inner p { font-size: 1.1rem; opacity: .94; margin-bottom: 28px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== FAQ ===================== */
.faq-wrap { max-width: 1000px; margin: 0 auto; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; align-items: start; }
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-sm); padding: 2px 20px; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: rgba(34, 211, 167, .5); box-shadow: var(--shadow-sm); }
.faq-item summary { font-family: var(--font-head); font-weight: 600; font-size: .98rem; padding: 11px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--slate-500); font-size: .93rem; padding: 0 0 14px; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.contact-form-wrap h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: .84rem; font-weight: 600; color: var(--slate-700); }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--font-body); font-size: .95rem; padding: 12px 14px;
  border: 1px solid var(--slate-200); border-radius: 10px; background: #fff; color: var(--ink);
  transition: border-color .18s, box-shadow .18s; font-weight: 400;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(34, 211, 167, .15); }
.contact-form textarea { resize: vertical; }
.form-status { font-size: .9rem; font-weight: 600; min-height: 1em; }
.form-status.ok { color: #059669; }
.form-status.err { color: #dc2626; }

.contact-info { background: var(--navy-800); color: #fff; border-radius: var(--radius); padding: 32px 30px; margin-top: 106px; }
.info-head { font-size: 1.5rem; margin-bottom: 14px; }
.contact-info > p { color: rgba(226, 232, 240, .7); font-size: .96rem; margin-bottom: 28px; }
.info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-ic { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(34, 211, 167, .12); font-size: 16px; }
.info-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(226, 232, 240, .45); margin-bottom: 3px; }
.info-list a, .info-list div { font-size: .95rem; color: #fff; }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .1); }
.cert { font-size: .74rem; font-weight: 600; font-family: var(--font-head); padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, .18); color: rgba(255,255,255,.85); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-900); color: rgba(226, 232, 240, .6); padding: 44px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; max-width: 300px; margin-bottom: 18px; }
.social { display: flex; gap: 10px; }
.social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; background: rgba(255, 255, 255, .06); color: #fff; font-size: 13px; font-weight: 600; transition: background .2s; }
.social a:hover { background: var(--grad); color: #04121a; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: .9rem; margin-bottom: 11px; transition: color .16s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .84rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }
.project-by { color: rgba(226, 232, 240, .5); }
.project-by a { color: var(--teal); font-weight: 600; }
.project-by a:hover { color: #7ff0d0; }

/* ===================== SUBPAGE HERO ===================== */
.subpage-hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; padding: clamp(36px, 4.5vw, 56px) 0 clamp(38px, 4.5vw, 56px); }
.subpage-hero .hero-bg { position: absolute; inset: 0; }
.subpage-hero .container { position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(226, 232, 240, .55); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(226, 232, 240, .7); transition: color .16s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255, 255, 255, .35); }
.subpage-hero .hero-head { max-width: 780px; }
.subpage-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 18px; }
.subpage-hero p { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(226, 232, 240, .78); max-width: 620px; margin-bottom: 28px; }
.subpage-hero .hero-actions { margin-bottom: 0; }
.platform-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: 100px; padding: 6px 16px 6px 6px; margin-bottom: 22px; }
.platform-tag .chip-badge { width: 30px; height: 30px; font-size: 10px; border-radius: 8px; }
.platform-tag span { font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .04em; }

/* ===================== MODULE GRID ===================== */
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-sm); padding: 22px 22px; transition: transform .2s, box-shadow .2s; }
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.module-card .m-ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg, rgba(56,189,248,.14), rgba(34,211,167,.14)); font-size: 21px; margin-bottom: 14px; }
.module-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.module-card p { font-size: .92rem; color: var(--slate-500); }

/* two-column prose blocks */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split .prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.split .prose p { color: var(--slate-500); margin-bottom: 14px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.check-list li { position: relative; padding-left: 30px; color: var(--slate-700); font-size: .96rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--grad); color: #04121a; border-radius: 6px; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.panel { background: var(--navy-800); color: #fff; border-radius: var(--radius); padding: 34px; }
.panel h3 { font-size: 1.2rem; margin-bottom: 18px; }
.panel .stat-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.panel .stat-row:last-child { border-bottom: 0; }
.panel .stat-row span:first-child { color: rgba(226, 232, 240, .65); font-size: .92rem; }
.panel .stat-row span:last-child { font-family: var(--font-head); font-weight: 600; color: var(--teal); }

/* ===================== CASE STUDIES ===================== */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-top { padding: 22px 26px; color: #fff; position: relative; }
.case-top.oracle { background: linear-gradient(135deg, #e11d3a, #9f1239); }
.case-top.odoo { background: linear-gradient(135deg, #714b67, #4c3247); }
.case-top.sap { background: linear-gradient(135deg, #1e6bd6, #123f80); }
.case-top .case-tag { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.case-top h3 { font-size: 1.15rem; margin-top: 6px; }
.case-body { padding: 24px 26px; display: flex; flex-direction: column; flex: 1; }
.case-body > p { color: var(--slate-500); font-size: .92rem; margin-bottom: 18px; flex: 1; }
.case-metrics { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--slate-100); }
.case-metrics div { display: flex; flex-direction: column; }
.case-metrics strong { font-family: var(--font-head); font-size: 1.4rem; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metrics span { font-size: .72rem; color: var(--slate-500); }
.industries { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.industries span { font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--slate-500); padding: 8px 18px; border: 1px solid var(--slate-200); border-radius: 100px; background: #fff; }

/* dropdown nav */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; padding: 8px; min-width: 220px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--slate-700) !important; font-size: 14px; transition: background .15s; }
.dropdown a:hover { background: var(--slate-50); color: var(--ink) !important; }
.dropdown .chip-badge { width: 28px; height: 28px; font-size: 9px; border-radius: 7px; }

/* ===================== LEGAL PAGES ===================== */
.legal { max-width: 820px; }
.legal p { color: var(--slate-700); margin-bottom: 16px; line-height: 1.7; }
.legal h2 { font-size: 1.3rem; margin: 30px 0 10px; }
.legal a { color: var(--blue); font-weight: 600; }
.legal a:hover { color: var(--teal); }
.legal-list { display: flex; flex-direction: column; gap: 9px; margin: 0 0 16px; }
.legal-list li { position: relative; padding-left: 24px; color: var(--slate-700); line-height: 1.6; }
.legal-list li::before { content: "▸"; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }

/* ===================== ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 940px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .platform-chip { flex: 1 1 200px; }
  .hero-trust { flex-basis: 100%; width: 100%; }
  .features-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { margin-top: 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .timeline::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .feature-list, .stat-cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 30px 24px; }
  .hero-actions .btn { flex: 1 1 100%; }
}
