:root {
    --cyan: #01b1e3;
    --blue: #004a99;
    --blue-2: #0878cc;
    --green: #25d366;
    --ink: #172033;
    --muted: #687386;
    --line: #dfe5ec;
    --soft: #f4f7fa;
    --white: #fff;
    --radius: 28px;
    --shadow: 0 26px 80px rgba(0, 74, 153, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(920px, calc(100% - 48px)); }
.section { padding: 120px 0; }

.site-header {
    position: fixed;
    inset: 16px 0 auto;
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-inline: 24px;
}
.site-header .nav { width: min(1180px, calc(100% - 104px)); margin-inline: 0; }
.nav {
    min-height: 68px;
    padding: 8px 10px 8px 22px;
    border: 1px solid #e4e6e9;
    border-radius: 999px;
    background: #f7f7f7;
    box-shadow: 0 12px 32px rgba(29, 41, 57, .12);
    display: flex;
    align-items: center;
    gap: 20px;
    pointer-events: auto;
}
.nav-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: #20242b;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.04em;
    text-decoration: none;
}
.nav-brand-logo { display: block; width: 42px; height: 42px; object-fit: contain; }
.nav-divider { align-self: stretch; width: 1px; margin-block: 5px; background: #dedfe2; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; color: var(--blue); text-decoration: none; }
.brand-logo { display: block; width: 42px; height: 42px; object-fit: contain; }
.language-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 4px;
    border: 1px solid rgba(0, 74, 153, .12);
    border-radius: 999px;
    background: #f7f7f7;
    box-shadow: 0 10px 28px rgba(29, 41, 57, .08);
    pointer-events: auto;
}
.language-button {
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #687386;
    cursor: pointer;
    font: 700 12px Inter, sans-serif;
}
.language-button.active {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 74, 153, .22);
}
.brand-mark { position: relative; display: inline-flex; width: 29px; height: 29px; align-items: flex-end; justify-content: center; gap: 2px; padding: 5px; border-radius: 9px; background: linear-gradient(145deg, var(--cyan), var(--blue)); }
.brand-mark i { width: 4px; border-radius: 4px; background: #fff; transform: rotate(28deg); }
.brand-mark i:nth-child(1) { height: 8px; }.brand-mark i:nth-child(2) { height: 15px; }.brand-mark i:nth-child(3) { height: 11px; }
.brand-mark.large { width: 56px; height: 56px; padding: 10px; gap: 4px; border-radius: 17px; }
.brand-mark.large i { width: 7px; }.brand-mark.large i:nth-child(1) { height: 16px; }.brand-mark.large i:nth-child(2) { height: 28px; }.brand-mark.large i:nth-child(3) { height: 21px; }
.nav-links { display: flex; flex: 1 1 auto; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 24px; margin: 0; }
.nav-links a { position: relative; color: #20242b; font-size: 18px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: color .2s; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #20242b; }
.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: #ef7373;
    transform: scaleX(0);
    transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { flex: 0 0 auto; margin-left: auto; }
.nav .nav-cta {
    min-height: 50px;
    padding-inline: 24px;
    border: 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: none;
    font-size: 14px;
}
.nav .nav-cta:hover {
    box-shadow: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 25px rgba(1, 177, 227, .22);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(1, 177, 227, .3); }
.button-small { min-height: 46px; padding-inline: 20px; font-size: 13px; }
.button-white { color: var(--blue); background: #fff; box-shadow: 0 12px 35px rgba(0, 0, 0, .14); }
.text-link { color: var(--blue); font-size: 15px; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #fff; }

.hero {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding-top: 180px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f7fbfe 78%, #fff 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .23; }
.hero-glow-one { width: 480px; height: 480px; top: -150px; left: -200px; background: var(--cyan); }
.hero-glow-two { width: 420px; height: 420px; right: -180px; top: 240px; background: #739cff; }
.eyebrow { margin: 0 0 17px; color: var(--cyan); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: clamp(54px, 8vw, 108px);
    line-height: .98;
    letter-spacing: -.075em;
}
.hero h1 span { background: linear-gradient(105deg, var(--cyan), var(--blue) 76%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 720px; margin: 30px auto 0; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 25px; margin-top: 34px; }
.trial-note { margin: 17px 0 0; color: #8290a3; font-size: 12px; font-weight: 500; }

.product-stage { width: min(940px, 100%); margin: 60px auto 0; }
.product-visual { width: 100%; height: auto; display: block; }

.display { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.06; letter-spacing: -.06em; }
.lead { color: var(--muted); font-size: 20px; line-height: 1.7; letter-spacing: -.025em; }
.belief { background: #fff; }
.belief .display { max-width: 800px; }
.belief > .shell > .lead { max-width: 840px; margin: 30px 0 0; }
.belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 70px; }
.belief-grid article { min-height: 250px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; transition: transform .25s, box-shadow .25s; }
.belief-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.belief-grid article > span { color: var(--cyan); font-size: 12px; font-weight: 800; }
.belief-grid h3 { margin: 60px 0 12px; font-size: 21px; letter-spacing: -.04em; }
.belief-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.ecosystem { overflow: hidden; background: var(--soft); }
.section-heading { display: grid; grid-template-columns: 1fr 400px; align-items: end; gap: 50px; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.ecosystem-map { position: relative; width: min(780px, 100%); height: 620px; margin: 70px auto 55px; }
.orbit { position: absolute; inset: 50%; border: 1px solid rgba(0, 74, 153, .13); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 300px; height: 300px; }.orbit-two { width: 470px; height: 470px; border-style: dashed; }
.core, .satellite { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: #fff; box-shadow: 0 18px 60px rgba(0, 74, 153, .13); text-align: center; }
.core { width: 210px; height: 210px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.ecosystem-logo { width: 62px; height: 62px; object-fit: contain; }
.core strong { margin-top: 8px; color: var(--blue); font-size: 21px; }.core small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.satellite { width: 150px; height: 150px; left: 50%; top: 50%; border: 1px solid #e5edf3; }
.satellite > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 9px; border-radius: 13px; background: #e5f9fe; color: var(--blue); font-size: 11px; font-weight: 800; }
.satellite strong { font-size: 14px; }.satellite small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.satellite-hr { transform: translate(-50%, -50%) translate(0, -235px); }
.satellite-crm { transform: translate(-50%, -50%) translate(223px, -73px); }
.satellite-finance { transform: translate(-50%, -50%) translate(138px, 190px); }
.satellite-pms { transform: translate(-50%, -50%) translate(-138px, 190px); }
.satellite-connect { transform: translate(-50%, -50%) translate(-223px, -73px); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product-card { min-height: 520px; padding: 34px; border: 1px solid #e0e8ef; border-radius: var(--radius); background: #fff; display: flex; flex-direction: column; }
.product-card-live { color: #fff; border-color: transparent; background: linear-gradient(145deg, #087fbd, var(--blue)); box-shadow: 0 25px 60px rgba(0, 74, 153, .22); }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.product-icon { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 15px; background: #e3f7fd; color: var(--blue); font-size: 12px; font-weight: 800; }
.product-card-live .product-icon { background: rgba(255,255,255,.17); color: #fff; }
.status { display: inline-flex; width: fit-content; padding: 7px 11px; border-radius: 999px; background: #e8edf2; color: #6f7d90; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.status.live { background: #dff8ea; color: #14804a; }
.product-card-live .status.live { background: rgba(255,255,255,.17); color: #fff; }
.product-card h3 { margin: 40px 0 14px; font-size: 30px; letter-spacing: -.05em; }
.product-card > p { min-height: 78px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.product-card-live > p { color: rgba(255,255,255,.73); }
.product-card ul, .price-card ul { margin: 30px 0; padding: 0; list-style: none; }
.product-card li, .price-card li { position: relative; padding: 9px 0 9px 24px; color: #536174; font-size: 13px; line-height: 1.4; }
.product-card li::before, .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.product-card-live li { color: rgba(255,255,255,.88); }.product-card-live li::before { color: #7aebff; }
.product-card > a { margin-top: auto; color: inherit; font-size: 13px; font-weight: 800; text-decoration: none; }
.product-card > a span { margin-left: 6px; }

.integration { background: #fff; }
.integration-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.integration-copy .lead { max-width: 560px; margin-top: 25px; }
.integration-points { margin-top: 40px; display: grid; gap: 22px; }
.integration-points > div { display: flex; gap: 16px; }
.integration-points > div > span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #e3f8fd; color: var(--blue); font-size: 12px; font-weight: 800; }
.integration-points p { margin: 0; display: flex; flex-direction: column; gap: 5px; font-size: 14px; }
.integration-points small { color: var(--muted); font-size: 13px; line-height: 1.5; }
.integration-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 520px; padding: 40px 34px; border: 1px solid var(--line); border-radius: 45px; background: linear-gradient(180deg, #f2fbff, #fff 62%); box-shadow: 0 22px 60px rgba(0, 74, 153, .07); }
.integration-tier { width: 100%; }
.integration-tier-label { margin: 0 0 16px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; text-align: center; }
.integration-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.integration-chip { display: flex; flex-direction: column; gap: 4px; min-height: 62px; justify-content: center; padding: 14px 18px; border: 1px solid #e3eaf0; border-radius: 18px; background: #fff; color: #5f6d80; font-size: 13px; font-weight: 700; box-shadow: 0 10px 26px rgba(0, 74, 153, .06); }
.integration-chip b { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: -.01em; }
.integration-chip.is-brand { border-color: rgba(1, 177, 227, .3); background: #f4fdff; color: var(--blue); }
.integration-chip.is-brand b { color: var(--cyan); }
.integration-bridge { position: relative; width: 1px; height: 68px; margin: 22px 0; background: repeating-linear-gradient(180deg, rgba(1, 177, 227, .75) 0 6px, transparent 6px 13px); }
.integration-bridge-short { height: 42px; margin: 18px 0; }
.integration-api { position: absolute; left: 50%; top: 50%; padding: 7px 15px; border: 1px solid rgba(1, 177, 227, .35); border-radius: 999px; background: #fff; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; transform: translate(-50%, -50%); }
.integration-hub { display: flex; align-items: center; gap: 16px; padding: 18px 26px 18px 18px; border-radius: 26px; background: linear-gradient(135deg, var(--cyan), var(--blue) 78%); color: #fff; box-shadow: 0 20px 45px rgba(0, 74, 153, .28); }
.integration-hub-logo { flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: #fff; }
.integration-hub-logo img { width: 34px; height: 34px; display: block; }
.integration-hub-copy { display: flex; flex-direction: column; gap: 3px; }
.integration-hub-copy strong { font-size: 19px; letter-spacing: -.03em; }
.integration-hub-copy small { color: rgba(255, 255, 255, .76); font-size: 11px; }

.hr-section { color: #fff; background: linear-gradient(135deg, #008fc7 0%, #004a99 60%, #07366d 100%); }
.hr-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.hr-copy .status { margin-bottom: 38px; }.hr-copy .eyebrow { color: #79e5ff; }.hr-copy .lead { color: rgba(255,255,255,.73); }
.hr-copy .text-link { color: #fff; }
.feature-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; align-content: center; min-height: 450px; padding: 55px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: radial-gradient(circle at center, rgba(1,177,227,.35), rgba(255,255,255,.04) 65%); }
.feature-cloud span { padding: 12px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); color: rgba(255,255,255,.85); font-size: 11px; font-weight: 600; }
.hr-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid rgba(255,255,255,.18); }
.hr-stats > div { padding: 38px 25px 0; border-right: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; }
.hr-stats > div:first-child { padding-left: 0; }.hr-stats > div:last-child { border: 0; }
.hr-stats strong { font-size: clamp(24px, 3vw, 39px); letter-spacing: -.05em; }.hr-stats span { margin-top: 8px; color: rgba(255,255,255,.6); font-size: 11px; }

.pricing { background: var(--soft); }
.pricing-intro { text-align: center; }
.currency-toggle {
    display: inline-flex;
    margin-top: 28px;
    padding: 4px;
    border: 1px solid rgba(0, 74, 153, .12);
    border-radius: 999px;
    background: #f7f7f7;
    box-shadow: 0 10px 28px rgba(29, 41, 57, .08);
}
.currency-button {
    min-width: 58px;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #687386;
    cursor: pointer;
    font: 700 12px Inter, sans-serif;
}
.currency-button.active {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 74, 153, .22);
}
.page-hero-copy .currency-toggle { margin-top: 24px; }
.pricing-visual + .pricing-intro { margin-top: 36px; text-align: center; }
.pricing-visual + .pricing-intro .currency-toggle { margin-top: 0; }
.price-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; width: min(900px, 100%); margin: 65px auto 0; }
.price-panels-three { grid-template-columns: repeat(3, 1fr); width: min(1180px, 100%); }
.price-card { min-height: 650px; padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; display: flex; flex-direction: column; }
.price-card > p:first-of-type { margin: 35px 0 14px; color: var(--blue); font-size: 16px; font-weight: 800; }
.big-price { color: var(--blue); font-size: 80px; font-weight: 800; line-height: 1; letter-spacing: -.07em; }
.big-price sup { position: relative; top: -30px; margin-right: 5px; font-size: 18px; letter-spacing: 0; }
.big-price small { margin-left: 8px; color: var(--muted); font-size: 13px; font-weight: 500; letter-spacing: 0; }
.usd { margin-top: 8px; color: var(--muted); font-size: 12px; }
.price-card h3 { margin: 38px 0 10px; font-size: 20px; }
.price-desc { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.price-card ul { margin-bottom: 25px; }
.price-card .button { margin-top: auto; }
.ecosystem-price { color: #fff; border: 0; background: linear-gradient(145deg, #17263c, #003c7b); box-shadow: 0 24px 65px rgba(0,41,86,.17); }
.ecosystem-price .status { background: rgba(255,255,255,.1); color: #b5d9ee; }
.ecosystem-price > p:first-of-type, .ecosystem-price .big-price { color: #fff; }.ecosystem-price .big-price small, .ecosystem-price .usd, .ecosystem-price .price-desc { color: rgba(255,255,255,.62); }
.ecosystem-price li { color: rgba(255,255,255,.82); }.ecosystem-price li::before { color: #71dfff; }
.fine-print { margin-top: auto; color: #8c98a8; font-size: 10px; line-height: 1.6; }
.ecosystem-price .fine-print { color: rgba(255,255,255,.48); }
.ecosystem-price .button-white { color: var(--blue); background: #fff; }
.ecosystem-price .button-white:hover { box-shadow: 0 14px 30px rgba(255, 255, 255, .22); }
.status.trial { background: #fff0d6; color: #a65a00; }
.bundle-price { border-color: rgba(1,177,227,.45); box-shadow: 0 20px 55px rgba(1,177,227,.1); }
.pricing-explore-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, 100%);
    margin: 40px auto 0;
    padding: 28px 34px;
    border: 1px solid rgba(0, 74, 153, .14);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(1, 177, 227, .1), rgba(0, 74, 153, .08));
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(0, 74, 153, .08);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pricing-explore-cta:hover {
    transform: translateY(-3px);
    border-color: rgba(1, 177, 227, .35);
    box-shadow: 0 24px 60px rgba(0, 74, 153, .14);
}
.pricing-explore-copy strong {
    display: block;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: -.04em;
}
.pricing-explore-copy small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}
.pricing-explore-action {
    flex: 0 0 auto;
    min-height: 56px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(1, 177, 227, .35);
}
.product-pricing {
    width: min(1180px, 100%);
    margin: 60px auto 0;
}
.product-pricing-heading {
    max-width: 660px;
    margin: 0 auto 30px;
    text-align: center;
}
.product-pricing-heading h2 {
    margin: 8px 0 12px;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.05em;
}
.product-pricing-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.product-switcher {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(0, 74, 153, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 40px rgba(0, 74, 153, .08);
    backdrop-filter: blur(14px);
}
.product-switch {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 0;
    border-radius: 17px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    transition: color .2s, background .2s, box-shadow .2s, transform .2s;
}
.product-switch:hover {
    color: var(--blue);
    background: rgba(1, 177, 227, .07);
}
.product-switch.active {
    color: var(--blue);
    background: #fff;
    box-shadow: 0 9px 24px rgba(0, 74, 153, .12);
    transform: translateY(-1px);
}
.product-switch:focus-visible {
    outline: 3px solid rgba(1, 177, 227, .3);
    outline-offset: 2px;
}
.product-switch-icon {
    flex: 0 0 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: #eaf8fc;
    font-size: 11px;
    font-weight: 800;
}
.product-switch.active .product-switch-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}
.product-switch strong,
.product-switch small {
    display: block;
}
.product-switch strong {
    color: var(--ink);
    font: 700 14px Inter, sans-serif;
}
.product-switch small {
    margin-top: 4px;
    color: var(--muted);
    font: 500 11px Inter, sans-serif;
}
.product-pricing-stage {
    position: relative;
    margin-top: 22px;
    padding: 28px 24px 32px;
    overflow: hidden;
    border: 1px solid rgba(0, 74, 153, .1);
    border-radius: 32px;
    background:
        radial-gradient(circle at 95% 5%, rgba(1, 177, 227, .16), transparent 32%),
        linear-gradient(145deg, #fff, #edf7fc);
    box-shadow: 0 24px 65px rgba(0, 74, 153, .1);
}
.product-hr-packages {
    width: 100%;
    animation: product-price-in .28s ease both;
}
.product-hr-packages[hidden],
.product-price-card[hidden] { display: none; }
.product-pricing-stage .osa-s5-pricing {
    padding: 12px 4px 8px;
    background: transparent;
}
.product-pricing-stage .osa-s5-container {
    max-width: none;
    margin: 0;
}
.product-pricing-stage .osa-s5-header {
    margin-bottom: 28px;
}
.product-pricing-stage .osa-s5-heading {
    font-size: clamp(28px, 4vw, 40px);
}
.product-pricing-stage .osa-s5-grid {
    max-width: none;
    gap: 16px;
}
.product-price-card {
    width: min(680px, 100%);
    min-height: 560px;
    margin: 0 auto;
    animation: product-price-in .28s ease both;
}
@keyframes product-price-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cms-block { padding: 60px 0; }
.cms-block-hero h2 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -.05em; }
.cms-block-image img { width: 100%; border-radius: 24px; }
.cms-block-cta { text-align: center; background: var(--soft); }
.cms-block-cta h2 { margin-bottom: 20px; }

.page-main { min-height: 80vh; }
.page-hero { position: relative; overflow: hidden; padding: 190px 0 105px; background: linear-gradient(180deg, #fff, #f3f9fd); }
.page-hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -180px; top: -180px; border-radius: 50%; background: var(--cyan); filter: blur(100px); opacity: .13; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(55px, 8vw, 96px); line-height: .98; letter-spacing: -.07em; }
.page-hero h1 span { color: var(--cyan); }
.page-hero .lead { max-width: 720px; margin: 28px 0 0; }
.page-hero .hero-actions { justify-content: flex-start; }
.page-hero-product { padding-bottom: 70px; }
.page-hero-product-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: center; gap: 50px; }
.page-hero-product .page-hero-copy { min-width: 0; }
.page-hero-phone { height: 560px; display: flex; align-items: center; justify-content: center; }
.page-hero-phone img { width: auto; max-width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(0, 54, 107, .24)); transform: translateY(20px); }
.page-hero-split { padding-bottom: 90px; }
.page-hero-split-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); align-items: center; gap: 48px; }
.page-hero-media { overflow: hidden; min-height: 420px; border-radius: 28px; border: 1px solid var(--line); background: #edf5fb; box-shadow: var(--shadow); }
.page-hero-media img { width: 100%; height: 100%; min-height: 420px; display: block; object-fit: cover; object-position: center; }
.content-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 48px; }
.content-media-grid figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.content-media-grid img { width: 100%; height: 220px; display: block; object-fit: cover; object-position: center; }
.content-media-grid figcaption { padding: 16px 20px 18px; color: var(--blue); font-size: 13px; font-weight: 800; }
.pricing-visual { width: min(920px, 100%); margin: 0 auto 48px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 18px 50px rgba(0, 74, 153, .08); }
.pricing-visual img { width: 100%; display: block; }
.page-section { padding: 100px 0; }
.page-section.soft { background: var(--soft); }
.page-section.blue { color: #fff; background: linear-gradient(135deg, #008fc7, #004a99 70%); }
.page-section.blue .eyebrow { color: #7ce8ff; }
.page-section.blue .lead { color: rgba(255,255,255,.72); }
.page-heading { max-width: 800px; margin-bottom: 55px; }
.page-heading .lead { margin: 22px 0 0; }
.legal-hero { min-height: 640px; display: flex; align-items: center; background: linear-gradient(145deg, #f1fbff, #fff 58%); }
.legal-hero .lead { max-width: 760px; margin-top: 26px; }
.legal-updated { margin: 22px 0 0; color: var(--blue); font-size: 13px; font-weight: 800; }
.legal-content { display: grid; gap: 24px; }
.legal-intro { padding: 34px 38px; border-radius: 24px; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; font-size: 17px; line-height: 1.75; }
.legal-intro p { margin: 0; }
.legal-section { position: relative; padding: 40px 42px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 12px 35px rgba(0, 74, 153, .05); }
.legal-section > span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 24px; border-radius: 13px; background: #e5f9fe; color: var(--blue); font-size: 11px; font-weight: 800; }
.legal-section h2 { margin: 0 0 16px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.045em; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-section p { margin: 0; }.legal-section p + p { margin-top: 15px; }
.legal-section ul { display: grid; gap: 10px; margin: 20px 0 0; padding-left: 22px; }
.legal-contact { background: var(--soft); }
.legal-contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.legal-contact-links a { padding: 13px 18px; border-radius: 999px; background: #fff; color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: none; }
.module-grid, .feature-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-previews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 48px; }
.module-previews figure { min-height: 310px; margin: 0; overflow: hidden; position: relative; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #f7fcff, #e9f5fb); }
.module-previews img { width: 100%; height: 270px; display: block; object-fit: contain; object-position: center bottom; padding: 14px 14px 0; }
.module-previews figcaption { padding: 0 22px 18px; color: var(--blue); font-size: 13px; font-weight: 800; }
.module-card, .feature-list-card { min-height: 220px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.module-card span, .feature-list-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: #e1f8fd; color: var(--blue); font-size: 11px; font-weight: 800; }
.module-card h3, .feature-list-card h3 { margin: 35px 0 10px; font-size: 20px; letter-spacing: -.04em; }
.module-card p, .feature-list-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.notice { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 35px 40px; border: 1px solid rgba(1,177,227,.3); border-radius: 24px; background: #edfbff; }
.notice h2 { margin: 0 0 8px; font-size: 24px; }.notice p { margin: 0; color: var(--muted); font-size: 14px; }
.page-cta { padding: 90px 0; color: #fff; text-align: center; background: linear-gradient(125deg, var(--cyan), var(--blue)); }
.page-cta h2 { max-width: 800px; margin: 0 auto; font-size: clamp(40px, 6vw, 70px); line-height: 1.05; letter-spacing: -.06em; }
.page-cta .hero-actions { margin-top: 30px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-cover { position: relative; height: 190px; overflow: hidden; padding: 25px; display: flex; align-items: flex-end; color: #fff; background: linear-gradient(135deg, var(--cyan), var(--blue)); font-size: 13px; font-weight: 700; }
.blog-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.blog-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(8, 24, 48, .78)); }
.blog-cover span { position: relative; z-index: 1; }
.blog-card:nth-child(2) .blog-cover { background: linear-gradient(135deg, #344864, #071d3a); }.blog-card:nth-child(3) .blog-cover { background: linear-gradient(135deg, #0da56e, #006f7f); }
.blog-copy { padding: 25px; }.blog-copy small { color: var(--cyan); font-weight: 700; }.blog-copy h2 { margin: 12px 0 10px; font-size: 20px; line-height: 1.35; letter-spacing: -.035em; }.blog-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq { background: #fff; }
.faq .display { margin-bottom: 55px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 30px 50px 30px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); color: var(--blue); transform: translateY(-50%); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { max-width: 730px; margin: -5px 0 30px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.final-cta { padding: 110px 0; color: #fff; background: linear-gradient(125deg, var(--cyan), var(--blue) 72%); text-align: center; }
.final-cta .eyebrow { color: rgba(255,255,255,.7); }.final-cta h2 { margin: 0; font-size: clamp(48px, 7vw, 84px); line-height: 1; letter-spacing: -.07em; }
.site-footer { padding: 0; border-top: 1px solid #d8dce2; background: #f3f3f5; color: #202534; }
.footer-connect { padding: 44px 0 36px; text-align: center; }
.footer-logo { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.footer-logo img, .footer-logo svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.footer-connect h2 { margin: 0; font-size: clamp(25px, 3vw, 36px); line-height: .98; letter-spacing: -.055em; }
.footer-connect > p { margin: 14px 0 22px; color: #717887; font-size: 14px; line-height: 1.5; }
.footer-contact-list { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 14px; }
.footer-contact-list a { min-height: 48px; display: flex; align-items: center; gap: 18px; padding: 8px 10px 8px 18px; border: 1px solid #dde0e5; border-radius: 13px; background: #f7f7f8; box-shadow: 0 3px 8px rgba(23, 32, 51, .04); color: #272d3b; font-size: 13px; font-weight: 800; text-decoration: none; transition: transform .2s, border-color .2s, background .2s; }
.footer-contact-list a:hover { transform: translateY(-2px); border-color: rgba(1, 177, 227, .45); background: #fff; }
.footer-contact-list b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #263246; color: #fff; font-size: 14px; line-height: 1; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 30px 24px 24px; border-top: 1px solid #d8dce2; text-align: center; }
.footer-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 13px 28px; }
.footer-links a, .footer-policy { color: #242936; font-size: 13px; font-weight: 800; text-decoration: none; }
.footer-links a:hover, .footer-policy:hover { color: var(--blue); }
.footer-bottom p { margin: 0; color: #717887; font-size: 12px; }
.whatsapp-fab { position: fixed; z-index: 90; right: 24px; bottom: 92px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); box-shadow: 0 10px 30px rgba(37,211,102,.35); color: #fff; transition: transform .2s; }
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.03); }.whatsapp-fab svg { width: 29px; height: 29px; }
.go-top { --scroll-progress: 0deg; position: fixed; z-index: 89; right: 24px; bottom: 24px; width: 52px; height: 52px; display: grid; place-items: center; padding: 2px; border: 0; border-radius: 50%; background: conic-gradient(var(--cyan) var(--scroll-progress), rgba(23, 32, 51, .14) 0); color: #fff; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s, visibility .25s, transform .25s; }
.go-top::before { content: ""; position: absolute; inset: 3px; border-radius: inherit; background: #263246; }
.go-top span { position: relative; z-index: 1; font-size: 22px; line-height: 1; transform: translateY(-1px); }
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { transform: translateY(-3px); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .section { padding: 95px 0; }
    .section-heading, .integration-inner { grid-template-columns: 1fr; }
    .section-heading > p { max-width: 600px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card { min-height: auto; }
    .product-card > p { min-height: auto; }
    .integration-visual { width: min(580px, 100%); margin: 0 auto; }
    .hr-hero { grid-template-columns: 1fr; }
    .feature-cloud { width: min(560px, 100%); margin-inline: auto; }
    .price-panels-three { grid-template-columns: 1fr; width: min(560px, 100%); }
    .module-grid, .feature-list-grid, .blog-grid, .content-media-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero-split-grid { grid-template-columns: 1fr; }
    .page-hero-media, .page-hero-media img { min-height: 320px; }
}

@media (max-width: 1100px) {
    .nav { min-height: 60px; padding: 8px 10px 8px 12px; gap: 8px; }
    .nav-links { gap: 4px 10px; }
    .nav-links a { font-size: 16px; }
    .nav-brand { gap: 7px; font-size: 16px; }
    .nav-brand-logo { width: 34px; height: 34px; }
    .button-small { min-height: 40px; padding-inline: 14px; font-size: 12px; }
    .nav .nav-cta { min-height: 42px; padding-inline: 15px; font-size: 12px; }
    .product-switcher { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .shell, .narrow { width: min(1180px, calc(100% - 32px)); }
    .site-header { top: 10px; align-items: flex-start; gap: 7px; padding-inline: 10px; }
    .site-header .nav { width: calc(100% - 82px); }
    .nav {
        min-height: auto;
        flex-wrap: wrap;
        justify-content: space-between;
        border-radius: 24px;
        padding: 10px 12px;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 8px 12px;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 74, 153, .08);
    }
    .nav-divider { display: none; }
    .language-toggle { padding: 3px; }
    .language-button { min-width: 32px; min-height: 34px; padding-inline: 7px; font-size: 10px; }
    .nav-links a { font-size: 16px; }
    .nav-cta { margin-left: 0; }
    .hero { padding-top: 145px; }
    .hero h1 { font-size: clamp(49px, 15vw, 72px); }
    .hero-actions { flex-direction: column; gap: 20px; }
    .product-stage { margin-top: 45px; }
    .belief-grid, .price-panels { grid-template-columns: 1fr; }
    .module-grid, .feature-list-grid, .blog-grid { grid-template-columns: 1fr; }
    .page-hero-product-grid, .page-hero-split-grid { grid-template-columns: 1fr; gap: 25px; }
    .page-hero-phone { height: 390px; }
    .page-hero-media, .page-hero-media img { min-height: 260px; }
    .module-previews, .content-media-grid { grid-template-columns: 1fr; }
    .product-switcher { grid-template-columns: 1fr; border-radius: 20px; }
    .product-switch { padding: 11px 12px; }
    .product-switch-icon { flex-basis: 40px; height: 40px; border-radius: 12px; }
    .product-pricing-stage { padding: 14px 12px 18px; border-radius: 24px; }
    .product-price-card { min-height: 540px; padding: 32px 26px; }
    .product-price-card .big-price { font-size: 62px; }
    .product-pricing-stage .osa-s5-grid { gap: 14px; }
    .pricing-explore-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .pricing-explore-action {
        width: 100%;
        min-height: 52px;
    }
    .ecosystem-map { height: 400px; margin-top: 55px; }
    .orbit-one { width: 172px; height: 172px; }.orbit-two { width: 236px; height: 236px; }
    .core { width: 150px; height: 150px; }.core .brand-mark { width: 44px; height: 44px; }.ecosystem-logo { width: 48px; height: 48px; }.core strong { font-size: 17px; }
    .satellite { width: 95px; height: 95px; }.satellite > span { width: 30px; height: 30px; margin-bottom: 5px; font-size: 8px; }.satellite strong { font-size: 11px; }.satellite small { font-size: 7px; }
    .satellite-hr { transform: translate(-50%, -50%) translate(0, -118px); }
    .satellite-crm { transform: translate(-50%, -50%) translate(112px, -36px); }
    .satellite-finance { transform: translate(-50%, -50%) translate(69px, 95px); }
    .satellite-pms { transform: translate(-50%, -50%) translate(-69px, 95px); }
    .satellite-connect { transform: translate(-50%, -50%) translate(-112px, -36px); }
    .integration-inner { gap: 45px; }
    .integration-visual { min-height: 0; padding: 32px 20px; border-radius: 32px; }
    .integration-chip-grid { gap: 9px; }
    .integration-chip { min-height: 56px; padding: 12px 14px; font-size: 12px; border-radius: 15px; }
    .integration-bridge { height: 54px; margin: 18px 0; }.integration-bridge-short { height: 34px; }
    .integration-hub { gap: 13px; padding: 15px 20px 15px 15px; border-radius: 22px; }.integration-hub-logo { width: 44px; height: 44px; border-radius: 13px; }.integration-hub-logo img { width: 28px; height: 28px; }.integration-hub-copy strong { font-size: 17px; }
    .feature-cloud { min-height: 360px; padding: 35px 25px; border-radius: 30px; }
    .hr-stats { grid-template-columns: repeat(2, 1fr); }.hr-stats > div { min-height: 110px; padding: 25px 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); }.hr-stats > div:nth-child(3) { padding-left: 0; }.hr-stats > div:nth-child(2) { border-right: 0; }
    .price-card { min-height: 0; padding: 32px 25px; }.big-price { font-size: 65px; }
    .page-hero { padding: 150px 0 80px; }
    .legal-hero { min-height: 580px; }
    .legal-intro, .legal-section { padding: 28px 24px; }
    .page-section { padding: 80px 0; }
    .notice { align-items: flex-start; flex-direction: column; padding: 28px; }
    .footer-connect { padding: 38px 0 30px; }
    .footer-contact-list { align-items: stretch; flex-direction: column; width: min(340px, 100%); margin-inline: auto; }
    .footer-contact-list a { justify-content: space-between; }
    .footer-links { gap: 12px 20px; }
    .whatsapp-fab { right: 18px; bottom: 84px; width: 54px; height: 54px; }
    .go-top { right: 18px; bottom: 20px; width: 48px; height: 48px; }
}

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