:root {
  --gold: #ffb800;
  --gold-deep: #e7a400;
  --gold-soft: #fff4cf;
  --ink: #0d0f12;
  --ink-2: #171a1f;
  --text: #262a31;
  --muted: #6a707b;
  --line: #e6e7e9;
  --soft: #f5f5f2;
  --cream: #fffaf0;
  --white: #ffffff;
  --success: #139b62;
  --shadow-sm: 0 12px 32px rgba(13, 15, 18, .08);
  --shadow-lg: 0 30px 80px rgba(13, 15, 18, .14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.1; letter-spacing: -.035em; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: #aeb3bc; }
.skip-link { position: fixed; left: 18px; top: -100px; z-index: 9999; background: var(--gold); color: var(--ink); padding: 12px 18px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 18px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease; backdrop-filter: blur(16px); }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(0,0,0,.07); border-color: var(--line); }
.announcement { background: var(--ink); color: #d9dde3; font-size: 12px; font-weight: 650; letter-spacing: .02em; }
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement a { color: var(--gold); font-weight: 800; }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 178px; height: 62px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > a, .nav-dropdown-button { min-height: 46px; display: inline-flex; align-items: center; padding: 0 14px; border: 0; background: transparent; color: #454a52; font-size: 14px; font-weight: 700; border-radius: 10px; transition: background .2s ease, color .2s ease; white-space: nowrap; }
.primary-nav > a:hover, .nav-dropdown-button:hover, .primary-nav > a.is-active, .nav-dropdown-button.is-active { background: #f4f4f1; color: var(--ink); }
.primary-nav .nav-cta { margin-left: 8px; padding: 0 20px; background: var(--gold); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.primary-nav .nav-cta:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }
.nav-dropdown { position: relative; }
.nav-dropdown-button span { margin-left: 6px; font-size: 14px; transition: transform .2s ease; }
.nav-dropdown-menu { position: absolute; left: 50%; top: calc(100% + 12px); transform: translate(-50%, 10px); width: 330px; padding: 10px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all .22s var(--ease); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown-menu a { display: flex; flex-direction: column; padding: 13px 14px; border-radius: 12px; transition: background .2s ease; }
.nav-dropdown-menu a:hover { background: var(--soft); }
.nav-dropdown-menu strong { font-size: 14px; color: var(--ink); }
.nav-dropdown-menu small { font-size: 12px; color: var(--muted); margin-top: 2px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: var(--ink); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 21px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.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); }

/* Typography and shared components */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #866300; font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(255,184,0,.18); }
.eyebrow-dark { color: var(--gold); }
.section-heading { max-width: 800px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(38px, 4vw, 60px); }
.section-heading p { margin-bottom: 0; font-size: 18px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-split { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; }
.section-heading-split h2 { margin-bottom: 0; }
.section-heading-split p { margin-bottom: 7px; }
.button { min-height: 54px; padding: 0 23px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; font-weight: 850; line-height: 1; border: 1px solid transparent; transition: transform .2s var(--ease), background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 18px; }
.button-primary { color: var(--ink); background: var(--gold); box-shadow: 0 12px 28px rgba(255,184,0,.25); }
.button-primary:hover { background: #ffc62d; box-shadow: 0 18px 38px rgba(255,184,0,.3); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #292d33; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--gold); }
.button-ghost { border-color: #cfd1d5; color: var(--ink); background: var(--white); }
.button-ghost:hover { border-color: var(--ink); }
.button-outline-light { border-color: rgba(255,255,255,.28); color: var(--white); background: transparent; }
.button-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--ink); font-weight: 850; border-bottom: 2px solid var(--gold); padding-bottom: 4px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.section-action { text-align: center; margin-top: 48px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Home hero */
.hero { min-height: 760px; padding: 92px 0 86px; background: linear-gradient(135deg, #fff 0%, #fffaf0 56%, #fff3c8 100%); overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,10,10,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(10,10,10,.026) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to right, #000, transparent 70%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); }
.hero-orb-one { width: 430px; height: 430px; right: -180px; top: -120px; background: rgba(255,184,0,.22); }
.hero-orb-two { width: 240px; height: 240px; left: 38%; bottom: -150px; background: rgba(255,220,110,.25); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 56px; }
.hero-copy h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(48px, 5.3vw, 78px); letter-spacing: -.055em; }
.hero-copy h1 em { display: block; color: #966e00; font-style: normal; }
.hero-lead { max-width: 660px; margin-bottom: 32px; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 18px; color: #555b64; font-size: 13px; font-weight: 700; }
.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points b { width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.hero-visual { min-width: 0; position: relative; padding: 46px 0 50px; }
.visual-glow { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: var(--gold); filter: blur(90px); opacity: .18; top: 0; right: 0; }
.dashboard-shell { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(0,0,0,.12); border-radius: 26px; background: #f8f8f6; box-shadow: 0 45px 95px rgba(18,18,18,.2), 0 6px 0 rgba(255,255,255,.7) inset; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.dashboard-topbar { height: 65px; padding: 0 18px; display: flex; align-items: center; gap: 18px; background: var(--white); border-bottom: 1px solid var(--line); }
.mini-logo { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--gold); color: var(--ink); font-weight: 950; }
.dashboard-search { flex: 1; height: 31px; padding: 0 14px; border-radius: 9px; background: #f1f2ef; color: #a0a4ab; display: flex; align-items: center; font-size: 10px; }
.dashboard-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; }
.dashboard-body { min-height: 390px; display: flex; }
.dashboard-sidebar { width: 58px; background: var(--ink); padding: 25px 17px; display: flex; align-items: center; flex-direction: column; gap: 18px; }
.side-pill { width: 20px; height: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; }
.side-pill.is-current { background: var(--gold); border-color: var(--gold); }
.dashboard-content { flex: 1; min-width: 0; padding: 24px; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dashboard-heading div { display: flex; flex-direction: column; }
.dashboard-heading small { color: #92969d; font-size: 9px; }
.dashboard-heading strong { color: var(--ink); font-size: 15px; }
.dashboard-heading > span { padding: 6px 9px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; font-size: 8px; color: #646a72; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-card { padding: 14px; border-radius: 13px; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,.03); }
.metric-card span, .metric-card small { display: block; font-size: 8px; color: #777c84; }
.metric-card strong { display: block; margin: 4px 0 2px; font-size: 22px; line-height: 1; color: var(--ink); }
.metric-card:first-child small { color: var(--success); }
.dashboard-lower { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; margin-top: 10px; }
.chart-card, .activity-card { min-height: 175px; padding: 15px; border-radius: 14px; background: var(--white); }
.card-label { display: flex; justify-content: space-between; align-items: center; }
.card-label strong { font-size: 10px; color: var(--ink); }
.card-label span { font-size: 7px; color: #888e96; }
.bar-chart { height: 110px; margin-top: 15px; display: flex; align-items: end; gap: 7px; border-bottom: 1px solid #ececeb; }
.bar-chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(var(--gold), #ffd969); min-height: 15px; }
.activity-line { display: flex; gap: 8px; align-items: center; margin-top: 17px; }
.activity-line > b { width: 24px; height: 24px; border-radius: 8px; background: #f2f2ef; display: flex; align-items: center; justify-content: center; font-size: 7px; color: var(--ink); }
.activity-line span { display: flex; flex-direction: column; font-size: 8px; color: var(--ink); font-weight: 700; }
.activity-line small { color: #969aa1; font-size: 6px; font-weight: 500; }
.floating-card { position: absolute; z-index: 4; display: flex; gap: 10px; align-items: center; padding: 12px 15px; background: rgba(255,255,255,.96); border: 1px solid rgba(0,0,0,.1); border-radius: 13px; box-shadow: var(--shadow-sm); animation: float 4s ease-in-out infinite; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: 10px; color: var(--ink); }
.floating-card small { font-size: 7px; color: var(--muted); }
.floating-card-one { left: -35px; bottom: 10px; }
.floating-card-two { right: -25px; top: 15px; animation-delay: -1.5s; }
.float-icon { width: 28px; height: 28px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--ink); font-weight: 900; }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(19,155,98,.12); }
@keyframes float { 50% { transform: translateY(-8px); } }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip-inner { min-height: 90px; display: flex; align-items: center; gap: 50px; }
.trust-label { padding-right: 38px; border-right: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; white-space: nowrap; }
.trust-items { flex: 1; display: flex; justify-content: space-between; gap: 24px; color: #8b9098; font-size: 14px; font-weight: 850; }

/* Problems */
.section-problems { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-card { min-height: 270px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.problem-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: #d6d7d9; }
.problem-number { display: inline-flex; margin-bottom: 45px; font-size: 11px; font-weight: 900; color: #a17600; }
.problem-card h3 { font-size: 21px; margin-bottom: 12px; }
.problem-card p { margin-bottom: 0; font-size: 14px; }
.problem-answer { margin-top: 20px; padding: 25px 28px; border-radius: var(--radius); background: var(--gold); display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; }
.answer-mark { width: 50px; height: 50px; border-radius: 14px; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 25px; font-weight: 950; }
.problem-answer small { color: #745500; font-size: 9px; letter-spacing: .15em; font-weight: 900; }
.problem-answer h3 { margin: 2px 0 0; font-size: 21px; }
.problem-answer a { font-size: 13px; font-weight: 850; white-space: nowrap; }
.problem-answer a span { margin-left: 7px; }

/* Modules */
.section-modules { overflow: hidden; }
.section-modules::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.section-modules .container { position: relative; z-index: 1; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.module-card { min-height: 330px; padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: #15181d; transition: border-color .25s ease, transform .25s var(--ease), background .25s ease; }
.module-card:hover { transform: translateY(-7px); border-color: rgba(255,184,0,.55); background: #1b1e23; }
.module-top { display: flex; justify-content: space-between; align-items: center; }
.module-code { color: #888f99; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.module-arrow { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.06); color: var(--white); display: flex; align-items: center; justify-content: center; }
.module-icon { width: 70px; height: 70px; position: relative; margin: 38px 0 28px; border-radius: 20px; background: rgba(255,184,0,.1); border: 1px solid rgba(255,184,0,.22); }
.module-icon span, .module-icon::before, .module-icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 3px; }
.module-icon span { width: 26px; height: 6px; left: 21px; top: 21px; }
.module-icon::before { width: 16px; height: 6px; left: 21px; top: 33px; opacity: .75; }
.module-icon::after { width: 22px; height: 6px; left: 21px; top: 45px; opacity: .5; }
.module-icon-2 span { width: 16px; height: 16px; border-radius: 50%; left: 27px; top: 16px; }
.module-icon-2::before { width: 34px; height: 16px; left: 18px; top: 38px; border-radius: 16px 16px 5px 5px; }
.module-icon-2::after { display: none; }
.module-icon-3 span { width: 34px; height: 23px; left: 18px; top: 24px; background: transparent; border: 3px solid var(--gold); }
.module-icon-3::before { width: 9px; height: 9px; border-radius: 50%; left: 31px; top: 31px; }
.module-icon-3::after { display: none; }
.module-icon-4 span { width: 10px; height: 30px; left: 18px; top: 28px; }
.module-icon-4::before { width: 10px; height: 42px; left: 31px; top: 16px; }
.module-icon-4::after { width: 10px; height: 22px; left: 44px; top: 36px; opacity: 1; }
.module-icon-5 span { width: 35px; height: 3px; left: 17px; top: 45px; transform: rotate(-28deg); }
.module-icon-5::before { width: 9px; height: 9px; border-radius: 50%; left: 16px; top: 42px; }
.module-icon-5::after { width: 9px; height: 9px; border-radius: 50%; left: 45px; top: 25px; opacity: 1; }
.module-icon-6 span { width: 14px; height: 14px; border-radius: 50%; left: 12px; top: 28px; }
.module-icon-6::before { width: 14px; height: 14px; border-radius: 50%; left: 44px; top: 17px; }
.module-icon-6::after { width: 14px; height: 14px; border-radius: 50%; left: 44px; top: 44px; opacity: 1; }
.module-card h3 { font-size: 23px; margin-bottom: 12px; }
.module-card p { margin: 0; font-size: 14px; }

/* App section */
.app-section { overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.phone-stage { min-height: 650px; position: relative; display: flex; align-items: center; justify-content: center; }
.phone-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,184,0,.32); }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; }
.phone { position: absolute; width: 245px; height: 500px; padding: 10px; border-radius: 38px; background: #111318; box-shadow: 0 35px 65px rgba(0,0,0,.23); }
.phone-front { z-index: 3; transform: translateX(65px) rotate(4deg); }
.phone-back { z-index: 2; transform: translateX(-100px) translateY(35px) rotate(-8deg); opacity: .9; }
.phone-screen { width: 100%; height: 100%; overflow: hidden; border-radius: 29px; background: #f7f7f4; padding: 22px 16px 12px; position: relative; }
.phone-notch { position: absolute; z-index: 4; width: 85px; height: 21px; top: 16px; left: 50%; transform: translateX(-50%); border-radius: 0 0 14px 14px; background: #111318; }
.mobile-title { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.mobile-title .mini-logo { width: 27px; height: 27px; border-radius: 8px; font-size: 11px; }
.mobile-title div:nth-child(2) { display: flex; flex-direction: column; flex: 1; }
.mobile-title small { font-size: 7px; color: #777d84; }
.mobile-title strong { font-size: 10px; color: var(--ink); }
.mobile-title > b { font-size: 11px; }
.mobile-balance { margin-top: 22px; padding: 18px; border-radius: 19px; background: var(--ink); color: var(--white); }
.mobile-balance small { display: block; color: #aeb4bd; font-size: 8px; }
.mobile-balance strong { display: block; margin: 4px 0; font-size: 24px; }
.mobile-balance span { color: var(--gold); font-size: 8px; }
.mobile-metrics { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mobile-metrics div { padding: 13px; border-radius: 15px; background: var(--white); border: 1px solid #ecece9; }
.mobile-metrics small { display: block; color: #888d94; font-size: 7px; }
.mobile-metrics strong { color: var(--ink); font-size: 18px; }
.mobile-chart { margin-top: 10px; padding: 13px; border-radius: 15px; background: var(--white); border: 1px solid #ecece9; }
.mobile-chart > span { font-size: 8px; font-weight: 800; color: var(--ink); }
.mobile-chart > div { height: 95px; display: flex; align-items: end; gap: 6px; }
.mobile-chart i { flex: 1; min-height: 10px; border-radius: 4px 4px 0 0; background: var(--gold); }
.mobile-nav { position: absolute; left: 12px; right: 12px; bottom: 10px; height: 40px; padding: 0 15px; border-radius: 15px; background: var(--white); box-shadow: 0 -8px 22px rgba(0,0,0,.06); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav b { color: #90949b; font-size: 12px; }
.mobile-nav b:nth-child(3) { width: 28px; height: 28px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--ink); }
.screen-customer { padding: 35px 16px 14px; background: #fff9e9; }
.screen-head { display: flex; justify-content: space-between; font-size: 9px; color: var(--ink); font-weight: 800; }
.welcome-card { margin-top: 20px; height: 120px; padding: 20px; border-radius: 22px; background: linear-gradient(135deg, var(--gold), #ffdb71); display: flex; flex-direction: column; justify-content: end; }
.welcome-card small { font-size: 8px; }
.welcome-card strong { font-size: 15px; color: var(--ink); }
.app-shortcuts { margin-top: 12px; display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.app-shortcuts i { aspect-ratio: 1; border-radius: 11px; background: var(--white); border: 1px solid #eee4c8; }
.app-list { margin-top: 17px; display: grid; gap: 9px; }
.app-list span { height: 53px; border-radius: 14px; background: var(--white); border: 1px solid #eee4c8; }
.phone-note { position: absolute; z-index: 4; right: 15px; bottom: 65px; padding: 14px 17px; border-radius: 15px; background: var(--gold); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transform: rotate(-2deg); }
.phone-note b { font-size: 12px; }
.phone-note span { font-size: 8px; color: #705300; }
.app-copy h2 { margin-bottom: 22px; font-size: clamp(42px, 4.5vw, 64px); }
.app-copy > p { font-size: 18px; }
.feature-list { margin: 35px 0 30px; display: grid; gap: 0; }
.feature-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-list > div:last-child { border-bottom: 1px solid var(--line); }
.feature-list > div > span { color: #a67a00; font-size: 11px; font-weight: 900; }
.feature-list h3 { margin-bottom: 6px; font-size: 20px; }
.feature-list p { margin: 0; font-size: 14px; }

/* Process */
.process-line { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-line::before { content: ""; position: absolute; height: 1px; left: 8%; right: 8%; top: 25px; background: #d5d6d4; }
.process-step { position: relative; padding: 0 20px; text-align: center; }
.process-step > span { position: relative; z-index: 1; width: 50px; height: 50px; margin: 0 auto 28px; border-radius: 50%; background: var(--ink); color: var(--gold); border: 7px solid var(--soft); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; }
.process-step h3 { font-size: 18px; }
.process-step p { margin: 0; font-size: 13px; }

/* Industries home */
.industries-home { background: var(--white); }
.industries-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.industries-copy h2 { font-size: clamp(42px,4.5vw,64px); }
.industries-copy p { font-size: 17px; margin-bottom: 30px; }
.industry-cloud { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.industry-cloud a { min-height: 82px; padding: 20px 16px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; color: var(--ink); font-size: 14px; font-weight: 800; transition: background .2s ease, padding .2s ease; }
.industry-cloud a:nth-child(odd) { border-right: 1px solid var(--line); }
.industry-cloud a:hover { background: var(--gold-soft); padding-left: 22px; }
.industry-cloud span { color: #9b7400; font-size: 9px; }
.industry-cloud b { font-size: 14px; }

/* Growth preview */
.growth-preview { background: #f0efe9; }
.growth-grid { display: grid; grid-template-columns: 1.45fr .75fr .75fr; gap: 16px; }
.growth-card { border-radius: var(--radius); overflow: hidden; }
.growth-main { min-height: 430px; padding: 48px; background: var(--ink); display: flex; flex-direction: column; align-items: start; justify-content: end; position: relative; }
.growth-main::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 55px solid rgba(255,184,0,.14); right: -60px; top: -70px; }
.growth-main h2 { max-width: 620px; color: var(--white); font-size: 48px; }
.growth-main p { max-width: 620px; color: #b5bac2; }
.growth-service { min-height: 430px; padding: 28px; background: var(--white); display: flex; flex-direction: column; justify-content: end; transition: transform .25s var(--ease); }
.growth-service:hover { transform: translateY(-7px); }
.service-symbol { width: 58px; height: 58px; margin-bottom: auto; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--gold); font-size: 11px; font-weight: 950; }
.growth-service h3 { font-size: 25px; }
.growth-service p { margin-bottom: 0; font-size: 14px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-intro h2 { font-size: 48px; }
.faq-intro p { font-size: 17px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 84px; padding: 18px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; color: var(--ink); font-size: 18px; font-weight: 800; }
.accordion-item button b { width: 30px; height: 30px; border-radius: 50%; background: #f0f0ed; display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s ease; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-content p { padding: 0 55px 26px 0; margin: 0; }
.accordion-item.is-open .accordion-content { max-height: 220px; }
.accordion-item.is-open button b { transform: rotate(45deg); background: var(--gold); }

/* Shared page hero */
.page-hero { min-height: 580px; padding: 110px 0; position: relative; overflow: hidden; background: var(--cream); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.page-hero-copy h1 { margin-bottom: 24px; font-size: clamp(50px, 5.5vw, 76px); }
.page-hero-copy > p { max-width: 660px; margin-bottom: 32px; font-size: 19px; }
.page-hero-dark { background: var(--ink); }
.page-hero-dark::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:42px 42px; }
.page-hero-dark .container { position: relative; z-index: 1; }
.page-hero-dark h1 { color: var(--white); }
.page-hero-dark p { color: #b2b7c0; }

/* CRM page */
.blueprint { padding: 18px; border-radius: 24px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.055); box-shadow: 0 30px 70px rgba(0,0,0,.28); transform: rotate(2deg); }
.blueprint-head { padding: 0 4px 14px; display: flex; justify-content: space-between; color: #9198a2; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.blueprint-head b { color: var(--gold); }
.blueprint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bp-card { min-height: 105px; padding: 18px; border-radius: 16px; background: #20242a; display: flex; flex-direction: column; justify-content: end; }
.bp-card small { color: #8f969f; font-size: 8px; letter-spacing: .12em; }
.bp-card strong { color: var(--white); font-size: 20px; }
.bp-wide { grid-column: 1/-1; min-height: 185px; }
.bp-chart { height: 82px; margin-top: 18px; display: flex; align-items: end; gap: 9px; }
.bp-chart i { flex: 1; border-radius: 4px 4px 0 0; background: var(--gold); }
.bp-chart i:nth-child(1){height:38%}.bp-chart i:nth-child(2){height:62%}.bp-chart i:nth-child(3){height:49%}.bp-chart i:nth-child(4){height:84%}.bp-chart i:nth-child(5){height:69%}
.bp-flow { grid-column: 1/-1; min-height: auto; flex-direction: row; align-items: center; justify-content: space-between; color: var(--white); font-size: 10px; font-weight: 800; }
.bp-flow b { color: var(--gold); }
.intro-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.big-statement { display: grid; grid-template-columns: 45px 1fr; gap: 20px; }
.big-statement span { color: #a67a00; font-size: 11px; font-weight: 900; }
.big-statement h2 { margin: 0; font-size: 43px; }
.intro-copy > p { font-size: 20px; line-height: 1.75; }
.mini-principles { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.mini-principles span { padding: 8px 12px; border-radius: 999px; background: var(--gold-soft); color: #735500; font-size: 11px; font-weight: 800; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.capability-card { padding: 32px; border-radius: var(--radius); background: var(--white); border: 1px solid #e7e7e4; }
.capability-number { margin-bottom: 48px; color: #a77b00; font-size: 10px; font-weight: 900; }
.capability-card h3 { font-size: 25px; }
.capability-card ul, .check-list { padding: 0; margin: 22px 0 0; list-style: none; }
.capability-card li, .check-list li { position: relative; padding: 9px 0 9px 22px; border-top: 1px solid #ececea; color: #565c64; font-size: 13px; }
.capability-card li::before, .check-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.architecture-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.architecture-copy h2 { font-size: 50px; }
.architecture-copy > p { font-size: 17px; }
.check-list li { padding-left: 28px; font-size: 15px; }
.check-list li::before { width: 11px; height: 11px; }
.role-map { min-height: 570px; position: relative; border-radius: 50%; border: 1px dashed #c7c9cc; background: radial-gradient(circle, #fff8e5 0, #fff 62%); }
.role-center { position: absolute; width: 160px; height: 160px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 40px; font-weight: 950; box-shadow: var(--shadow-lg); }
.role-center small { color: #c2c6cc; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.role-node { position: absolute; width: 120px; height: 82px; padding: 15px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; justify-content: center; align-items: center; flex-direction: column; }
.role-node b { color: var(--ink); font-size: 13px; }
.role-node span { color: var(--muted); font-size: 9px; }
.role-owner{left:50%;top:4%;transform:translateX(-50%)}.role-manager{right:5%;top:25%}.role-sales{right:12%;bottom:12%}.role-team{left:12%;bottom:12%}.role-customer{left:5%;top:25%}
.phase-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.phase-card { min-height: 270px; padding: 30px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: #15181d; display: flex; flex-direction: column; justify-content: end; }
.phase-card > span { margin-bottom: auto; color: var(--gold); font-size: 9px; letter-spacing: .15em; font-weight: 900; }
.phase-card h3 { font-size: 25px; }
.phase-card p { margin: 0; font-size: 14px; }

/* Mobile app page */
.mobile-page-hero { background: linear-gradient(135deg,#fff 0,#fff8e2 100%); }
.app-hero-stack { min-height: 520px; position: relative; display: flex; justify-content: center; align-items: center; }
.app-device { position: absolute; width: 210px; height: 430px; padding: 9px; border-radius: 34px; background: #111318; box-shadow: 0 35px 60px rgba(0,0,0,.2); }
.app-device::before { content:""; position:absolute; width:72px; height:18px; top:9px; left:50%; transform:translateX(-50%); background:#111318; border-radius:0 0 12px 12px; z-index:2; }
.device-screen { height: 100%; padding: 34px 15px 15px; border-radius: 27px; overflow: hidden; background: #f7f7f3; }
.device-left { transform: translateX(-145px) translateY(25px) rotate(-9deg); opacity: .9; }
.device-center { z-index: 3; transform: translateY(-10px); }
.device-right { transform: translateX(145px) translateY(25px) rotate(9deg); opacity: .9; }
.app-brand { color: #806000; font-size: 8px; letter-spacing: .15em; font-weight: 900; }
.device-screen h4 { margin: 13px 0; font-size: 16px; }
.attendance-ring { width: 125px; height: 125px; margin: 30px auto; border-radius: 50%; border: 12px solid var(--gold); background: var(--white); display:flex; flex-direction:column; align-items:center; justify-content:center; }
.attendance-ring b { font-size:20px; }.attendance-ring small{font-size:8px;color:var(--muted)}
.device-button { padding: 12px; border-radius: 12px; background: var(--ink); color: var(--white); font-size: 9px; text-align: center; font-weight: 800; }
.dark-screen { background: var(--ink); color: var(--white); }
.app-top { display:flex;justify-content:space-between;font-size:12px;font-weight:800; }
.dark-screen > small { display:block;margin-top:40px;color:#9299a3;font-size:8px; }
.dark-screen > h3 { color:var(--white);font-size:30px;margin:3px 0 20px; }
.sparkline { height:110px;display:flex;align-items:end;gap:7px;border-bottom:1px solid rgba(255,255,255,.1); }
.sparkline i{flex:1;background:var(--gold);border-radius:4px 4px 0 0}.sparkline i:nth-child(1){height:30%}.sparkline i:nth-child(2){height:55%}.sparkline i:nth-child(3){height:42%}.sparkline i:nth-child(4){height:81%}.sparkline i:nth-child(5){height:68%}.sparkline i:nth-child(6){height:91%}
.dark-metrics{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:15px}.dark-metrics div{padding:12px;border-radius:12px;background:#23272e}.dark-metrics small{display:block;color:#8d949d;font-size:7px}.dark-metrics b{font-size:18px}
.service-ticket{margin-top:28px;padding:16px;border-radius:18px;background:var(--white);border:1px solid var(--line);display:flex;flex-direction:column}.service-ticket small{font-size:8px;color:var(--muted)}.service-ticket b{color:var(--ink);font-size:16px}.service-ticket span{margin-top:12px;padding:5px 8px;align-self:flex-start;border-radius:999px;background:var(--gold-soft);color:#7a5a00;font-size:7px;font-weight:900}.device-lines{margin-top:15px;display:grid;gap:9px}.device-lines i{height:55px;border-radius:15px;background:var(--white);border:1px solid var(--line)}
.app-type-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.app-type-card { padding: 36px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.app-type-card.featured { background: var(--ink); color:var(--white); transform:translateY(-12px); }
.app-type-card.featured h3{color:var(--white)}.app-type-card.featured p,.app-type-card.featured li{color:#b3b8c1}.app-type-card.featured li{border-color:rgba(255,255,255,.1)}
.app-type-label { color:#9a7200;font-size:9px;font-weight:900;letter-spacing:.14em; }
.app-type-card h3 { margin-top:42px;font-size:29px; }.app-type-card p{min-height:82px}.app-type-card ul{list-style:none;padding:0;margin:25px 0 0}.app-type-card li{padding:11px 0;border-top:1px solid var(--line);font-size:13px;color:#555b63}.app-type-card li::before{content:"✓";color:#a77b00;font-weight:900;margin-right:9px}
.app-feature-layout { display:grid;grid-template-columns:.75fr 1.25fr;gap:80px; }.app-feature-copy h2{font-size:48px}.app-feature-copy p{font-size:17px}.app-feature-grid{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid #d8d9d7}.small-feature{padding:28px;border-bottom:1px solid #d8d9d7}.small-feature:nth-child(odd){border-right:1px solid #d8d9d7}.small-feature b{color:#a87c00;font-size:10px}.small-feature h3{margin:25px 0 8px;font-size:20px}.small-feature p{font-size:13px;margin:0}
.roadmap { display:grid;grid-template-columns:repeat(4,1fr);gap:14px; }.roadmap-item{padding:30px;border:1px solid var(--line);border-radius:var(--radius)}.roadmap-item>span{display:flex;width:40px;height:40px;border-radius:12px;background:var(--gold);align-items:center;justify-content:center;font-size:10px;font-weight:900;margin-bottom:60px}.roadmap-item h3{font-size:20px}.roadmap-item p{font-size:13px;margin:0}

/* Industry page */
.industry-page-hero { background: #f5f5f0; }
.industry-hero-map { min-height:470px;position:relative;border-radius:50%;border:1px dashed #c9cbc9;background:radial-gradient(circle,#fff 0,#f5f5f0 68%); }
.map-core,.map-node{position:absolute;display:flex;align-items:center;justify-content:center;flex-direction:column;border-radius:50%;font-weight:900}.map-core{width:150px;height:150px;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--ink);color:var(--gold);font-size:30px;box-shadow:var(--shadow-lg)}.map-core small{font-size:7px;color:#c8ccd2;letter-spacing:.12em;text-transform:uppercase}.map-node{width:75px;height:75px;background:var(--white);border:1px solid var(--line);color:var(--ink);font-size:9px;box-shadow:var(--shadow-sm)}.map-node-1{left:44%;top:1%}.map-node-2{right:8%;top:24%}.map-node-3{right:12%;bottom:12%}.map-node-4{left:42%;bottom:2%}.map-node-5{left:9%;bottom:15%}.map-node-6{left:5%;top:25%}
.industry-card-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.industry-detail-card{padding:34px;border:1px solid var(--line);border-radius:var(--radius);transition:transform .25s var(--ease),box-shadow .25s ease}.industry-detail-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-sm)}.industry-card-head{display:flex;justify-content:space-between;color:#9e7600;font-size:10px;font-weight:900}.industry-card-head b{width:32px;height:32px;border-radius:9px;background:var(--soft);display:flex;align-items:center;justify-content:center;color:var(--ink)}.industry-detail-card h3{font-size:28px;margin:36px 0 12px}.industry-detail-card p{min-height:72px}.industry-tags{display:flex;flex-wrap:wrap;gap:7px;margin-top:22px}.industry-tags span{padding:7px 9px;border-radius:8px;background:var(--gold-soft);color:#735500;font-size:9px;font-weight:800}
.custom-industry{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center}.custom-industry-copy h2{font-size:50px}.custom-workflow{display:flex;flex-direction:column;align-items:center;gap:12px}.custom-workflow span{width:100%;padding:17px;border:1px solid rgba(255,255,255,.12);border-radius:14px;text-align:center;color:var(--white);font-size:11px;font-weight:900;letter-spacing:.1em;background:#171a1f}.custom-workflow i{font-style:normal;color:var(--gold)}

/* Digital growth */
.growth-page-hero { background: linear-gradient(135deg,#fff8df,#fff 58%); }
.growth-canvas{min-height:500px;position:relative}.social-post{position:absolute;border-radius:24px;box-shadow:var(--shadow-lg);display:flex;flex-direction:column;overflow:hidden}.post-one{width:280px;height:350px;left:7%;top:5%;padding:30px;background:var(--ink);transform:rotate(-6deg)}.post-one span{color:var(--gold);font-size:11px;font-weight:900;letter-spacing:.15em}.post-one strong{margin-top:auto;color:var(--white);font-size:31px;line-height:1.05}.post-one i{height:8px;width:60%;margin-top:22px;background:var(--gold);border-radius:999px}.post-two{width:240px;height:300px;right:4%;top:16%;padding:26px;background:var(--gold);transform:rotate(7deg)}.post-two small{font-size:9px;letter-spacing:.15em;font-weight:900}.post-two strong{margin:25px 0;font-size:26px;line-height:1.05;color:var(--ink)}.mini-bars{height:130px;display:flex;align-items:end;gap:8px}.mini-bars i{flex:1;background:var(--ink);border-radius:5px 5px 0 0}.mini-bars i:nth-child(1){height:35%}.mini-bars i:nth-child(2){height:67%}.mini-bars i:nth-child(3){height:49%}.mini-bars i:nth-child(4){height:88%}.post-three{width:230px;height:180px;left:34%;bottom:0;padding:22px;background:var(--white);border:1px solid var(--line);transform:rotate(2deg)}.post-three span{font-size:9px;font-weight:900;color:#9a7100}.post-three strong{font-size:20px;margin:13px 0;color:var(--ink)}.post-three button{align-self:start;border:0;background:var(--ink);color:var(--white);padding:8px 12px;border-radius:8px;font-size:8px}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.service-card{min-height:300px;padding:30px;border-radius:var(--radius);border:1px solid var(--line);background:var(--white);display:flex;flex-direction:column;justify-content:end}.service-card>span{margin-bottom:auto;color:#9c7400;font-size:10px;font-weight:900}.service-card h3{font-size:25px}.service-card p{margin:0;font-size:14px}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;align-items:center}.pricing-card{position:relative;padding:36px;border:1px solid #dcddda;border-radius:var(--radius);background:var(--white)}.pricing-card.featured{background:var(--ink);color:var(--white);transform:translateY(-14px);box-shadow:var(--shadow-lg)}.pricing-card.featured h3{color:var(--white)}.pricing-card.featured p,.pricing-card.featured li{color:#b7bbc3}.pricing-card.featured li{border-color:rgba(255,255,255,.1)}.popular-badge{position:absolute;right:24px;top:24px;padding:6px 8px;border-radius:8px;background:var(--gold);color:var(--ink);font-size:8px;font-weight:950;letter-spacing:.1em}.pricing-card h3{font-size:23px}.price{display:flex;align-items:end;gap:4px;margin:25px 0 12px}.price strong{font-size:48px;line-height:1;color:inherit}.price span{font-size:12px;color:var(--muted)}.pricing-card ul{list-style:none;padding:0;margin:25px 0}.pricing-card li{padding:11px 0;border-top:1px solid var(--line);font-size:13px;color:#575d65}.pricing-card li::before{content:"✓";margin-right:9px;color:#a67b00;font-weight:900}.pricing-card .button{width:100%}.pricing-note{text-align:center;font-size:12px;margin:30px 0 0}
.add-on-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:90px}.add-on-copy h2{font-size:48px}.add-on-list{border-top:1px solid var(--line)}.add-on-list>div{min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:30px;border-bottom:1px solid var(--line)}.add-on-list span{font-weight:700;color:var(--ink)}.add-on-list strong{color:#8c6800;font-size:14px;white-space:nowrap}.connected-growth{text-align:center;max-width:900px}.connected-growth h2{font-size:52px}.connected-growth p{font-size:18px}.connection-flow{margin-top:50px;display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}.connection-flow span{padding:15px 20px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:#171a1f;color:var(--white);font-size:10px;font-weight:900}.connection-flow b{color:var(--gold)}

/* Portfolio */
.portfolio-page-hero{min-height:520px;background:var(--ink);display:flex;align-items:end}.portfolio-page-hero::before{content:"";position:absolute;width:460px;height:460px;border-radius:50%;border:90px solid rgba(255,184,0,.09);right:-100px;top:-130px}.portfolio-hero-copy{position:relative;z-index:1;max-width:950px}.portfolio-hero-copy h1{color:var(--white);font-size:clamp(52px,6vw,82px)}.portfolio-hero-copy p{max-width:750px;color:#b3b8c1;font-size:18px}.case-study{display:grid;grid-template-columns:.85fr 1.15fr;border-radius:var(--radius-lg);overflow:hidden;background:var(--ink);min-height:590px}.case-copy{padding:58px;display:flex;flex-direction:column;justify-content:center}.case-label{color:var(--gold);font-size:9px;font-weight:900;letter-spacing:.15em}.case-copy h2{color:var(--white);font-size:58px;margin:28px 0 18px}.case-copy p{color:#b1b7c0;font-size:17px}.case-tags{display:flex;flex-wrap:wrap;gap:7px;margin:25px 0 32px}.case-tags span{padding:7px 10px;border-radius:8px;background:rgba(255,255,255,.08);color:#d7d9dd;font-size:9px}.case-copy .text-link{color:var(--white);align-self:start}.case-visual{padding:45px 45px 45px 0;display:flex;align-items:center}.case-dashboard{width:100%;min-height:430px;padding:28px;border-radius:24px;background:#f6f6f3;transform:perspective(1000px) rotateY(-6deg);box-shadow:0 35px 75px rgba(0,0,0,.35)}.case-dash-top{display:flex;justify-content:space-between;align-items:center}.case-dash-top b{color:var(--ink)}.case-dash-top span{font-size:10px;color:var(--muted)}.case-kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:30px}.case-kpis i{height:82px;border-radius:14px;background:var(--white);border:1px solid #e6e6e3}.case-graph{height:150px;margin-top:12px;padding:20px;display:flex;align-items:end;gap:10px;border-radius:16px;background:var(--white)}.case-graph span{flex:1;background:var(--gold);border-radius:5px 5px 0 0}.case-graph span:nth-child(1){height:32%}.case-graph span:nth-child(2){height:48%}.case-graph span:nth-child(3){height:75%}.case-graph span:nth-child(4){height:56%}.case-graph span:nth-child(5){height:89%}.case-graph span:nth-child(6){height:67%}.case-table{display:grid;gap:8px;margin-top:13px}.case-table i{height:16px;border-radius:5px;background:#dedfdb}.portfolio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}.portfolio-placeholder{padding:28px;border:1px solid var(--line);border-radius:var(--radius)}.portfolio-placeholder>span{font-size:9px;font-weight:900;letter-spacing:.14em;color:#9c7400}.placeholder-art{height:240px;margin:25px 0;border-radius:18px;background:var(--soft);position:relative;overflow:hidden}.art-one i{position:absolute;border-radius:12px;background:var(--white);box-shadow:var(--shadow-sm)}.art-one i:nth-child(1){width:75%;height:150px;left:12%;top:35px}.art-one i:nth-child(2){width:45%;height:70px;left:5%;bottom:15px;background:var(--gold)}.art-one i:nth-child(3){width:33%;height:80px;right:5%;bottom:10px;background:var(--ink)}.art-two i{position:absolute;width:120px;height:220px;border:7px solid var(--ink);border-radius:25px;background:var(--white);top:10px}.art-two i:first-child{left:32px;transform:rotate(-8deg)}.art-two i:last-child{right:32px;transform:rotate(8deg);background:var(--gold)}.art-three i{position:absolute;border-radius:18px}.art-three i:nth-child(1){width:55%;height:70%;left:8%;top:12%;background:var(--gold);transform:rotate(-5deg)}.art-three i:nth-child(2){width:45%;height:60%;right:5%;bottom:8%;background:var(--ink);transform:rotate(7deg)}.art-three i:nth-child(3){width:35%;height:45%;left:34%;top:29%;background:var(--white);box-shadow:var(--shadow-sm)}.portfolio-placeholder h3{font-size:23px}.portfolio-placeholder p{font-size:13px;margin:0}

/* Process page */
.process-page-hero{background:#fff8df}.process-hero-diagram{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}.diagram-step{width:100px;height:100px;border-radius:50%;background:var(--white);border:1px solid var(--line);display:flex;align-items:center;justify-content:center;flex-direction:column;box-shadow:var(--shadow-sm)}.diagram-step span{color:#9c7400;font-size:9px}.diagram-step b{font-size:12px}.process-hero-diagram>i{font-style:normal;color:#997100;font-size:24px}.detailed-process{max-width:980px}.detailed-step{display:grid;grid-template-columns:110px 1fr;gap:55px;padding:75px 0;border-bottom:1px solid var(--line)}.detailed-step:first-child{padding-top:0}.detailed-step-number{font-size:72px;font-weight:900;line-height:1;color:#e1e2df}.detailed-step-copy>span{font-size:9px;color:#9b7300;font-weight:900;letter-spacing:.14em}.detailed-step-copy h2{font-size:47px;margin:15px 0}.detailed-step-copy p{font-size:18px}.deliverables{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}.deliverables span{padding:8px 11px;border-radius:9px;background:var(--soft);font-size:10px;font-weight:800;color:#555b62}.collaboration-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:100px}.collaboration-copy h2{font-size:50px}.collaboration-list{border-top:1px solid rgba(255,255,255,.12)}.collaboration-list>div{min-height:80px;display:grid;grid-template-columns:50px 1fr;align-items:center;border-bottom:1px solid rgba(255,255,255,.12)}.collaboration-list span{color:var(--gold);font-size:10px;font-weight:900}.collaboration-list p{margin:0;color:var(--white);font-size:16px}.scope-box{padding:55px;border-radius:var(--radius-lg);background:var(--gold);display:grid;grid-template-columns:1fr 1fr;gap:80px}.scope-box h2{font-size:42px}.scope-box ul{list-style:none;margin:0;padding:0}.scope-box li{padding:13px 0;border-bottom:1px solid rgba(0,0,0,.14);color:var(--ink);font-weight:700}.scope-box li::before{content:"✓";margin-right:12px}

/* About */
.about-page-hero{background:var(--ink);min-height:560px;display:flex;align-items:center}.about-hero{display:grid;grid-template-columns:1.2fr .8fr;gap:90px;align-items:end}.about-title h1{color:var(--white);font-size:clamp(52px,6vw,82px)}.about-lead p{color:#b7bbc3;font-size:21px;margin-bottom:10px}.about-story-grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:center}.story-visual{display:grid;grid-template-columns:1fr 1fr;gap:12px;transform:rotate(-2deg)}.story-block{min-height:230px;padding:30px;border-radius:var(--radius);display:flex;flex-direction:column;justify-content:end}.story-block span{font-size:45px;font-weight:950;letter-spacing:-.05em}.story-block small{font-size:10px;font-weight:800}.story-gold{grid-column:1/-1;background:var(--gold);min-height:270px}.story-black{background:var(--ink);color:var(--white)}.story-white{border:1px solid var(--line);background:var(--white)}.story-copy h2{font-size:50px}.story-copy p{font-size:17px}.principle-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.principle-card{min-height:300px;padding:30px;border-radius:var(--radius);background:var(--white)}.principle-card>span{color:#9f7600;font-size:10px;font-weight:900}.principle-card h3{margin-top:70px;font-size:23px}.principle-card p{margin:0;font-size:13px}.powered-section{background:#fff9e8}.powered-grid{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center}.powered-copy h2{font-size:52px}.powered-copy p{font-size:18px}.powered-mark{height:420px;border-radius:var(--radius-lg);background:var(--ink);display:flex;flex-direction:column;align-items:center;justify-content:center}.powered-mark span{font-size:130px;line-height:.8;font-weight:950;color:var(--gold)}.powered-mark strong{margin-top:25px;color:var(--white);font-size:28px;letter-spacing:.17em}.powered-mark small{color:#939aa3;letter-spacing:.3em}

/* Contact */
.contact-page-hero{background:var(--ink);min-height:540px}.contact-hero{display:grid;grid-template-columns:1fr .8fr;gap:90px;align-items:end}.contact-heading h1{color:var(--white);font-size:clamp(52px,6vw,82px)}.contact-heading p{max-width:720px;color:#b4b9c2;font-size:18px}.contact-quick{display:grid;border-top:1px solid rgba(255,255,255,.13)}.contact-quick a{padding:18px 0;border-bottom:1px solid rgba(255,255,255,.13);display:flex;justify-content:space-between;align-items:center;gap:25px}.contact-quick span{font-size:8px;letter-spacing:.14em;color:var(--gold);font-weight:900}.contact-quick strong{color:var(--white);font-size:13px;text-align:right}.contact-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:45px;align-items:start}.contact-form-wrap{padding:45px;border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}.form-heading>span{color:#9e7600;font-size:9px;font-weight:900;letter-spacing:.14em}.form-heading h2{font-size:42px;margin:12px 0}.form-heading p{font-size:13px}.business-form{margin-top:35px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.business-form label{display:flex;flex-direction:column;gap:8px}.business-form label>span{color:#353a41;font-size:12px;font-weight:800}.business-form input,.business-form select,.business-form textarea{width:100%;border:1px solid #d9dbde;border-radius:12px;background:#fbfbf9;color:var(--ink);padding:14px 15px;outline:none;transition:border-color .2s ease,box-shadow .2s ease}.business-form input,.business-form select{height:52px}.business-form textarea{resize:vertical;min-height:150px}.business-form input:focus,.business-form select:focus,.business-form textarea:focus{border-color:var(--gold-deep);box-shadow:0 0 0 4px rgba(255,184,0,.12);background:var(--white)}.form-full{grid-column:1/-1}.honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-submit{margin-top:25px;display:flex;align-items:center;gap:20px}.form-submit p{font-size:10px;margin:0;max-width:260px}.alert{padding:14px 16px;border-radius:12px;margin:20px 0;font-size:13px;font-weight:700}.alert-error{background:#fff0f0;color:#a42d2d;border:1px solid #f1c9c9}.contact-aside{display:grid;gap:18px}.contact-panel{padding:38px;border-radius:var(--radius);background:var(--ink)}.contact-panel-label{color:var(--gold);font-size:9px;font-weight:900;letter-spacing:.14em}.contact-panel h3{color:var(--white);font-size:28px;margin:35px 0 14px}.contact-panel>p{color:#adb3bd}.contact-detail{padding:18px 0;border-top:1px solid rgba(255,255,255,.12);display:flex;flex-direction:column}.contact-detail small{color:#888f99;font-size:8px;letter-spacing:.12em}.contact-detail strong{color:var(--white);font-size:13px}.what-next{padding:34px;border-radius:var(--radius);background:var(--gold-soft)}.what-next h3{font-size:24px}.what-next ol{list-style:none;padding:0;margin:25px 0 0}.what-next li{display:grid;grid-template-columns:30px 1fr;gap:12px;padding:12px 0;border-top:1px solid rgba(0,0,0,.1)}.what-next li span{width:25px;height:25px;border-radius:8px;background:var(--ink);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:9px;font-weight:900}.what-next p{margin:0;color:#4f5358;font-size:13px}.thank-you-section{min-height:720px;padding:120px 0;background:linear-gradient(135deg,#fff,#fff8df);display:flex;align-items:center}.thank-you-card{max-width:760px;margin:auto;padding:65px;text-align:center;border-radius:var(--radius-lg);background:var(--white);box-shadow:var(--shadow-lg)}.success-mark{width:75px;height:75px;margin:0 auto 28px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;color:var(--ink);font-size:32px;font-weight:900}.thank-you-card h1{font-size:52px}.thank-you-card p{font-size:18px}.thank-you-card .hero-actions{justify-content:center}.reference-box{margin:30px auto;padding:15px;border:1px solid var(--line);border-radius:12px;display:flex;flex-direction:column;max-width:360px}.reference-box small{font-size:8px;letter-spacing:.15em;color:var(--muted)}.reference-box strong{font-size:13px;color:var(--ink)}

/* Legal */
.legal-hero{min-height:350px;background:var(--soft);display:flex;align-items:end}.legal-hero h1{font-size:65px}.legal-content{max-width:850px}.legal-content h2{font-size:28px;margin:40px 0 12px}.legal-content p{font-size:16px}.legal-content a{color:#8a6600;text-decoration:underline}

/* Footer */
.final-cta { padding: 80px 0; background: var(--gold); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: center; }
.final-cta h2 { max-width: 850px; margin: 0; font-size: clamp(36px,4vw,58px); }
.site-footer { padding: 80px 0 25px; background: #090a0c; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr 1fr; gap: 65px; padding-bottom: 60px; }
.brand-footer img { width: 170px; }
.footer-brand > p { max-width: 420px; margin: 25px 0; color: #9ca2ab; font-size: 14px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-badges span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: #b7bbc2; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid h3 { color: var(--white); margin: 12px 0 25px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; padding: 6px 0; color: #9ea4ad; font-size: 13px; transition: color .2s ease; }
.footer-grid > div:not(.footer-brand) > a:hover { color: var(--gold); }
.footer-contact p { color: #8f959f; font-size: 12px; }
.footer-bottom { min-height: 55px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.footer-bottom p, .footer-bottom a { margin: 0; color: #737a84; font-size: 11px; }
.whatsapp-float { position: fixed; z-index: 990; right: 22px; bottom: 22px; width: 55px; height: 55px; border-radius: 50%; background: #20bf6b; color: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 950; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }

/* Responsive */
@media (max-width: 1120px) {
  .primary-nav > a, .nav-dropdown-button { padding-inline: 9px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-copy h1 { font-size: 56px; }
  .floating-card-two { right: 0; }
  .problem-grid { grid-template-columns: repeat(2,1fr); }
  .growth-grid { grid-template-columns: 1.2fr .8fr; }
  .growth-service:last-child { grid-column: 2; }
  .growth-main { grid-row: span 2; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-contact { grid-column: 1/-1; display: grid; grid-template-columns: repeat(2,1fr); gap: 5px 30px; }
  .footer-contact h3 { grid-column: 1/-1; }
}

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .announcement { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 150px; height: 54px; }
  .nav-toggle { display: flex; }
  .primary-nav { position: fixed; inset: 74px 0 auto; max-height: calc(100vh - 74px); overflow-y: auto; padding: 20px; background: var(--white); box-shadow: 0 25px 50px rgba(0,0,0,.15); display: none; flex-direction: column; align-items: stretch; gap: 4px; border-top: 1px solid var(--line); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a, .nav-dropdown-button { width: 100%; min-height: 52px; justify-content: space-between; padding: 0 16px; font-size: 15px; }
  .primary-nav .nav-cta { margin: 10px 0 0; justify-content: center; }
  .nav-dropdown-menu { position: static; width: auto; padding: 4px 0 8px 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown.is-open .nav-dropdown-button span { transform: rotate(180deg); }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { transform: none; }
  .hero { padding: 70px 0; }
  .hero-grid, .page-hero-grid, .app-grid, .industries-layout, .faq-layout, .architecture-grid, .custom-industry, .contact-hero, .contact-layout, .about-hero, .about-story-grid, .powered-grid, .app-feature-layout, .add-on-layout, .collaboration-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(48px,8vw,68px); }
  .hero-visual { max-width: 720px; margin: auto; width: 100%; }
  .trust-strip-inner { flex-direction: column; align-items: flex-start; gap: 15px; padding: 22px 0; }
  .trust-label { border: 0; padding: 0; }
  .trust-items { width: 100%; flex-wrap: wrap; }
  .section-heading-split { grid-template-columns: 1fr; gap: 16px; }
  .module-grid { grid-template-columns: repeat(2,1fr); }
  .app-grid { gap: 30px; }
  .phone-stage { order: 2; }
  .process-line { grid-template-columns: repeat(2,1fr); gap: 35px; }
  .process-line::before { display: none; }
  .industry-cloud { max-width: 800px; }
  .page-hero { padding: 90px 0; }
  .page-hero-visual { max-width: 700px; width: 100%; margin: auto; }
  .capability-grid, .service-grid { grid-template-columns: repeat(2,1fr); }
  .phase-grid, .roadmap { grid-template-columns: repeat(2,1fr); }
  .app-hero-stack { min-height: 540px; }
  .app-type-grid { grid-template-columns: 1fr; }
  .app-type-card.featured { transform: none; }
  .industry-card-grid { grid-template-columns: 1fr; }
  .growth-canvas { max-width: 650px; width: 100%; margin: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 640px; margin: auto; }
  .pricing-card.featured { transform: none; }
  .case-study { grid-template-columns: 1fr; }
  .case-visual { padding: 0 40px 45px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .about-lead { max-width: 760px; }
  .principle-grid { grid-template-columns: repeat(2,1fr); }
  .powered-mark { max-width: 650px; width: 100%; }
  .contact-quick { max-width: 700px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 38px; }
  .section-heading p { font-size: 16px; }
  .hero { min-height: auto; padding-top: 55px; }
  .hero-copy h1, .page-hero-copy h1 { font-size: 45px; }
  .hero-copy h1 em { display: inline; }
  .hero-lead, .page-hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-points { flex-direction: column; gap: 10px; }
  .dashboard-shell { transform: none; }
  .dashboard-content { padding: 14px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-card:last-child { grid-column: 1/-1; }
  .dashboard-lower { grid-template-columns: 1fr; }
  .activity-card { display: none; }
  .floating-card { display: none; }
  .trust-items { gap: 12px 20px; font-size: 12px; }
  .problem-grid, .module-grid, .capability-grid, .service-grid, .phase-grid, .roadmap, .portfolio-grid, .principle-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .problem-number { margin-bottom: 35px; }
  .problem-answer { grid-template-columns: auto 1fr; }
  .problem-answer a { grid-column: 1/-1; white-space: normal; }
  .module-card { min-height: 300px; }
  .phone-stage { min-height: 520px; transform: scale(.8); margin: -60px -40px; }
  .app-copy h2, .industries-copy h2, .faq-intro h2, .architecture-copy h2, .custom-industry-copy h2, .connected-growth h2, .story-copy h2, .powered-copy h2 { font-size: 38px; }
  .process-line { grid-template-columns: 1fr; }
  .process-step { text-align: left; display: grid; grid-template-columns: 50px 1fr; gap: 0 18px; }
  .process-step > span { grid-row: span 2; margin: 0; }
  .process-step p { grid-column: 2; }
  .industry-cloud { grid-template-columns: 1fr; }
  .industry-cloud a:nth-child(odd) { border-right: 0; }
  .growth-grid { grid-template-columns: 1fr; }
  .growth-main { grid-row: auto; min-height: 420px; padding: 34px; }
  .growth-main h2 { font-size: 38px; }
  .growth-service:last-child { grid-column: auto; }
  .faq-layout { gap: 45px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .final-cta h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand, .footer-contact { grid-column: 1/-1; }
  .footer-contact { grid-template-columns: 1fr; }
  .page-hero { min-height: auto; padding: 75px 0; }
  .blueprint { padding: 11px; }
  .intro-split-grid, .scope-box { grid-template-columns: 1fr; gap: 35px; }
  .big-statement { grid-template-columns: 35px 1fr; }
  .big-statement h2 { font-size: 34px; }
  .role-map { min-height: 450px; transform: scale(.9); margin: -20px; }
  .role-node { width: 92px; height: 67px; }
  .role-center { width: 125px; height: 125px; font-size: 32px; }
  .app-hero-stack { transform: scale(.75); margin: -60px -80px; }
  .app-feature-grid { grid-template-columns: 1fr; }
  .small-feature:nth-child(odd) { border-right: 0; }
  .industry-hero-map { min-height: 400px; transform: scale(.88); margin: -25px; }
  .industry-detail-card { padding: 28px; }
  .growth-canvas { transform: scale(.78); margin: -50px -70px; }
  .add-on-list > div { align-items: flex-start; flex-direction: column; gap: 5px; padding: 18px 0; }
  .case-copy { padding: 38px 28px; }
  .case-copy h2 { font-size: 43px; }
  .case-visual { padding: 0 18px 25px; }
  .case-dashboard { min-height: 350px; padding: 18px; transform: none; }
  .case-kpis { grid-template-columns: 1fr 1fr; }
  .detailed-step { grid-template-columns: 1fr; gap: 18px; padding: 55px 0; }
  .detailed-step-number { font-size: 45px; }
  .detailed-step-copy h2 { font-size: 38px; }
  .scope-box { padding: 35px 26px; }
  .scope-box h2 { font-size: 34px; }
  .story-visual { transform: none; }
  .story-block { min-height: 180px; padding: 22px; }
  .story-gold { min-height: 210px; }
  .powered-mark { height: 330px; }
  .powered-mark span { font-size: 100px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .contact-panel, .what-next { padding: 28px; }
  .thank-you-card { padding: 45px 24px; }
  .thank-you-card h1 { font-size: 40px; }
  .legal-hero h1 { font-size: 48px; }
}

@media (max-width: 430px) {
  .brand img { width: 136px; }
  .hero-copy h1, .page-hero-copy h1 { font-size: 39px; }
  .dashboard-sidebar { display: none; }
  .dashboard-topbar { height: 52px; }
  .dashboard-body { min-height: 340px; }
  .metric-card strong { font-size: 18px; }
  .phone-stage { transform: scale(.69); margin: -95px -75px; }
  .app-hero-stack { transform: scale(.62); margin: -100px -120px; }
  .growth-canvas { transform: scale(.64); margin: -85px -105px; }
  .story-visual { grid-template-columns: 1fr; }
  .story-gold { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-top: 22px; }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
