:root {
    --blue: #2e3192;
    --blue-dark: #1c1f70;
    --cyan: #00aeef;
    --red: #bf1e2e;
    --ink: #121826;
    --text: #4b5563;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f6f8fc;
    --white: #ffffff;
    --dark: #080a24;
    --shadow: 0 18px 45px rgba(18, 24, 38, 0.12);
    --shadow-soft: 0 10px 30px rgba(18, 24, 38, 0.06);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--ink);
}

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

a {
    color: inherit;
}

.shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img,
.logo-fallback {
    width: 52px;
    height: 52px;
    border-radius: 16px;
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(46, 49, 146, 0.24);
}

.brand strong {
    display: block;
    color: var(--blue);
    font-size: 1.08rem;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 800;
    font-size: 0.94rem;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: white !important;
    box-shadow: 0 12px 26px rgba(46, 49, 146, 0.22);
}

/* Language Switcher */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.language-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    text-decoration: none;
    color: #374151;
    font-size: 0.82rem;
    font-weight: 800;
}

.language-option img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.12);
}

.language-option.active,
.language-option:hover {
    background: rgba(46, 49, 146, 0.08);
    color: var(--blue);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 86px;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(46, 49, 146, 0.14), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 110px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: rgba(46, 49, 146, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: 44%;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.1);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 62px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(46, 49, 146, 0.08);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.hero h1 {
    margin: 22px 0 20px;
    max-width: 860px;
    font-size: clamp(2.45rem, 4.65vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.hero-lead {
    margin: 0;
    max-width: 710px;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

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

.primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 14px 32px rgba(46, 49, 146, 0.25);
}

.secondary {
    background: white;
    color: var(--blue);
    border: 1px solid var(--line);
}

.dark {
    background: #111827;
    color: white;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.22);
}

.ghost {
    background: white;
    color: var(--blue);
    border: 1px solid var(--line);
}

.white {
    background: white;
    color: var(--blue);
}

.outline-white {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-tags span {
    padding: 9px 12px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    color: #374151;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Company Dashboard */

.company-visual {
    display: flex;
    justify-content: center;
}

.company-dashboard {
    width: min(500px, 100%);
    padding: 28px;
    border-radius: 34px;
    background: white;
    border: 1px solid rgba(46, 49, 146, 0.12);
    box-shadow: var(--shadow);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.dashboard-header span {
    color: var(--muted);
    font-weight: 800;
}

.dashboard-header strong {
    color: var(--blue);
    font-size: 1.25rem;
}

.dashboard-main-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 26px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.28), transparent 42%),
        linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.dashboard-main-card span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-main-card h2 {
    margin: 18px 0 10px;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.dashboard-main-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.dashboard-actions a {
    padding: 10px 13px;
    border-radius: 999px;
    background: white;
    color: var(--blue);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 900;
}

.dashboard-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.dashboard-product-grid > div {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.dashboard-product-grid small {
    display: block;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.72rem;
}

.dashboard-product-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--blue);
    font-size: 1rem;
}

.dashboard-product-grid span {
    display: block;
    margin-top: 6px;
    color: var(--text);
    line-height: 1.45;
    font-size: 0.88rem;
}

.dashboard-product-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.dashboard-product-title strong {
    margin-top: 0;
}

.new-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.18);
    color: var(--blue);
    font-size: 0.56rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Trust Strip */

.trust-strip {
    background: linear-gradient(135deg, var(--blue), #080a24);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 28px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid strong {
    display: block;
    font-size: 1rem;
}

.trust-grid span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Shared Sections */

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 44px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.centered .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.experience-grid h2,
.final-conversion-box h2,
.contact-box h2 {
    margin: 18px 0 16px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-heading p,
.experience-grid p,
.final-conversion-box p,
.contact-box p {
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* Company Positioning */

.company-position-section {
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.company-value-grid {
    margin-top: 6px;
}

.company-value-card {
    position: relative;
    overflow: hidden;
}

.company-value-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.company-value-card span {
    color: var(--blue);
}

/* Audience / Client Environments */

.audience-section {
    background: var(--soft);
}

.audience-grid {
    grid-template-columns: repeat(4, 1fr);
}

.audience-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
}

.audience-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0.85;
}

.audience-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.audience-card:nth-child(3)::before {
    background: linear-gradient(90deg, #111827, var(--blue));
}

.audience-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--blue), var(--red));
}

.audience-card span {
    color: var(--blue);
}

/* Conversion Cards */

.conversion-section {
    background: white;
}

.core-solutions-section {
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.conversion-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.conversion-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.taurus-card::before {
    background: linear-gradient(90deg, #111111, var(--red));
}

.conversion-badge {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(46, 49, 146, 0.09);
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.secondary-badge {
    background: rgba(191, 30, 46, 0.09);
    color: var(--red);
}

.product-kicker {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.conversion-card h3 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.conversion-card p {
    margin: 0 0 22px;
    color: var(--text);
    line-height: 1.75;
}

.conversion-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.conversion-card li {
    position: relative;
    padding-left: 28px;
    color: #374151;
    font-weight: 800;
    line-height: 1.55;
}

.conversion-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900;
}

.taurus-card li::before {
    color: var(--red);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Experience / Support Dark Section */

.experience-section {
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.22), transparent 35%),
        linear-gradient(135deg, var(--blue), #080a24);
    color: white;
}

.support-section {
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.support-section .shell {
    position: relative;
    z-index: 1;
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.experience-grid p {
    color: rgba(255, 255, 255, 0.76);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.experience-stats div {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-stats strong {
    display: block;
    color: white;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    line-height: 1;
}

.experience-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    font-weight: 700;
}

.experience-proof {
    display: grid;
    gap: 16px;
}

.proof-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.proof-card h3 {
    margin: 0 0 12px;
    color: white;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: white;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.proof-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.proof-mini-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-mini-grid strong {
    display: block;
    color: white;
}

.proof-mini-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* Decision / Reusable Cards */

.decision-section {
    background: var(--soft);
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.decision-card {
    padding: 28px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.decision-card span {
    color: var(--cyan);
    font-size: 2rem;
    font-weight: 900;
}

.decision-card h3 {
    margin: 18px 0 10px;
    font-size: 1.2rem;
}

.decision-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

.decision-card a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

/* Approach */

.approach-section {
    background: white;
}

.approach-section .decision-card {
    position: relative;
    overflow: hidden;
}

.approach-section .decision-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    opacity: 0.8;
}

/* Platform */

.platform-section {
    background: white;
}

.platform-section .shell {
    width: min(1380px, calc(100% - 40px));
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.platform-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    min-height: 280px;
    border-radius: var(--radius);
    background: var(--soft);
    border: 1px solid var(--line);
}

.platform-card.primary-product {
    background: white;
    border-color: rgba(46, 49, 146, 0.18);
    box-shadow: 0 16px 42px rgba(18, 24, 38, 0.10);
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0.7;
}

.platform-card:nth-child(2)::before {
    background: linear-gradient(90deg, #111111, var(--red));
}

.platform-card.payroll-priority-card::before {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 1;
}

.platform-card.taurus-priority-card::before {
    background: linear-gradient(90deg, #111111, var(--red));
    opacity: 1;
}

.platform-card.workflow-card::before {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.platform-card > span,
.platform-label-row span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.platform-label-row span {
    margin: 0;
}

.platform-label-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-height: 22px;
    white-space: nowrap;
}

.platform-label-row span {
    margin: 0;
}

.platform-label-row .new-pill {
    background: rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.18);
    color: var(--blue);
}

.focus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 3px 5px;
    border-radius: 999px;
    background: rgba(18, 24, 38, 0.05);
    border: 1px solid rgba(18, 24, 38, 0.12);
    color: var(--ink);
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.015em;
}

.payroll-focus {
    background: rgba(46, 49, 146, 0.07);
    border-color: rgba(46, 49, 146, 0.16);
    color: var(--blue);
}

.accounting-focus {
    background: rgba(191, 30, 46, 0.06);
    border-color: rgba(191, 30, 46, 0.14);
    color: var(--red);
}

.platform-card h3 {
    margin: 14px 0 10px;
    font-size: 1.28rem;
}

.platform-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.65;
    font-size: 0.95rem;
}

.platform-card a {
    display: inline-flex;
    margin-top: auto;
    padding-top: 18px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

/* Final Conversion */

.final-conversion-section {
    background: var(--soft);
}

.final-conversion-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    padding: 46px;
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.24), transparent 34%),
        linear-gradient(135deg, var(--blue), #080a24);
    box-shadow: var(--shadow);
}

.final-conversion-box p {
    color: rgba(255, 255, 255, 0.76);
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

/* Contact */

.contact-section {
    padding: 86px 0;
    background: linear-gradient(135deg, var(--blue), #080a24);
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

/* Footer */

.footer {
    padding: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.12), transparent 34%),
        linear-gradient(135deg, #05071c 0%, #030414 100%);
    color: white;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.2), transparent 36%),
        linear-gradient(135deg, rgba(46, 49, 146, 0.82), rgba(8, 10, 36, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.footer-kicker {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta h2 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.footer-cta p {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.25fr 0.8fr 0.9fr;
    gap: 42px;
    padding: 56px 0 42px;
}

.footer strong {
    display: block;
    color: white;
}

.footer-brand-block > strong {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.footer-brand-block p {
    max-width: 310px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-trust-pills span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.76rem;
    font-weight: 900;
}

.footer-column h3 {
    margin: 0 0 16px;
    color: white;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-solution-links,
.footer-nav-links,
.footer-contact-list {
    display: grid;
    gap: 10px;
}

.footer-solution-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 11px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 900;
}

.footer-solution-links a:hover,
.footer-nav-links a:hover,
.footer-contact-list a:hover,
.footer-bottom-links a:hover {
    color: white;
}

.footer-solution-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.16);
}

.footer-solution-links img,
.footer-solution-links .product-logo-fallback {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    padding: 3px;
    border-radius: 8px;
    background: white;
}

.footer-solution-links .product-logo-fallback {
    padding: 0;
    color: var(--blue);
    font-size: 0.68rem;
}

.footer-solution-links span {
    white-space: nowrap;
}

.footer-nav-links a,
.footer-contact-list a,
.footer-contact-list span {
    width: fit-content;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
}

/* Product Logos */

.product-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.mini-product-logo,
.solution-logo,
.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(18, 24, 38, 0.08);
}

.mini-product-logo {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 13px;
}

.solution-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
}

.large-logo {
    width: 74px;
    height: 74px;
    border-radius: 22px;
}

.platform-logo {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 16px;
}

.mini-product-logo img,
.solution-logo img,
.platform-logo img,
.product-footer-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
}

.solution-logo img {
    padding: 8px;
}

.large-logo img {
    padding: 9px;
}

.light-logo {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.22);
}

.light-logo .product-logo-fallback {
    background: white;
    color: var(--blue);
}

/* Conversion Card Header With Logos */

.conversion-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.conversion-card-header .conversion-badge {
    margin-bottom: 0;
}

/* Dashboard Logo Adjustments */

.dashboard-product-grid > div {
    position: relative;
}

.dashboard-product-grid .mini-product-logo + small {
    margin-top: 0;
}

/* Payroll + Taurus Deep Section */

.payroll-taurus-section {
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.deep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.deep-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.deep-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.taurus-deep-card::before {
    background: linear-gradient(90deg, #111111, var(--red));
}

.deep-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.deep-card-header span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.deep-card-header h3 {
    margin: 6px 0 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.deep-card > p {
    margin: 0 0 26px;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.8;
}

.deep-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.deep-feature-grid div {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.deep-feature-grid strong {
    display: block;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.35;
}

.deep-feature-grid span {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.65;
}

.deep-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.deep-bottom strong {
    display: block;
    color: var(--blue);
    font-size: 1rem;
}

.taurus-deep-card .deep-bottom strong {
    color: var(--red);
}

.deep-bottom p {
    margin: 7px 0 0;
    color: var(--text);
    line-height: 1.65;
}

.taurus-deep-card .deep-feature-grid div {
    background: #fbf7f7;
}

.taurus-deep-card .deep-card-header h3 {
    color: #111111;
}

/* Wettax Proof Logo Row */

.proof-logo-row,
.proof-product-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.proof-logo-row span,
.proof-product-heading span {
    margin-bottom: 0;
}

.proof-product-heading {
    gap: 12px;
    margin-bottom: 14px;
}

.proof-product-heading .solution-logo {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
}

.proof-product-heading strong {
    margin: 0;
    color: white;
    line-height: 1.2;
}

/* Platform Cards With Logos */

.platform-card .platform-logo + span {
    margin-top: 0;
}

/* Footer Product Logos */

.product-footer-links {
    gap: 12px;
}

.product-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-footer-links a img,
.product-footer-links a .product-logo-fallback {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    padding: 3px;
    border-radius: 8px;
    background: white;
}

.product-footer-links a .product-logo-fallback {
    padding: 0;
    font-size: 0.68rem;
    color: var(--blue);
}

.product-footer-links a span {
    white-space: nowrap;
}

/* Responsive */

@media (max-width: 1180px) {
    .nav-links {
        gap: 16px;
    }

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

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

    .deep-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .nav-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 980px) {
    .hero-grid,
	.experience-grid,
	.conversion-grid,
	.deep-grid,
	.footer-grid,
	.footer-main {
		grid-template-columns: 1fr;
	}

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

	.footer-cta-actions {
		justify-content: flex-start;
	}

    .trust-grid,
    .decision-grid,
    .company-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-visual {
        justify-content: flex-start;
    }

    .deep-bottom {
        grid-template-columns: 1fr;
    }

    .deep-bottom .button {
        width: fit-content;
    }

    .final-conversion-box,
    .contact-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-actions,
    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding: 58px 0;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-lead {
        font-size: 1.04rem;
    }

    .section {
        padding: 68px 0;
    }

    .nav-links {
		gap: 12px;
	}

	/* Mobile header polish */
	body .compact-header .nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		padding: 12px 0 14px;
	}

	body .compact-header .brand {
		width: 100%;
		min-width: 0;
		max-width: none;
	}

	body .compact-header .brand img,
	body .compact-header .logo-fallback {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
		border-radius: 11px;
	}

	body .compact-header .brand strong {
		font-size: 0.98rem;
	}

	body .compact-header .brand small {
		max-width: 260px;
		font-size: 0.78rem;
	}

	body .compact-header .nav-links {
		width: 100%;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px 12px;
	}

	body .compact-header .nav-links > a:not(.nav-cta) {
		min-height: auto;
		font-size: 0.92rem;
		line-height: 1.2;
	}

	body .compact-header .nav-cta {
		order: 20;
		width: auto;
		min-height: 36px;
		padding: 8px 14px;
		font-size: 0.9rem;
		box-shadow: 0 10px 20px rgba(46, 49, 146, 0.16);
	}

	body .compact-header .language-switcher {
		order: 21;
		height: 36px;
		margin-left: 0;
	}

	body .compact-header .language-option {
		height: 28px;
		padding: 4px 8px;
	}

	body .compact-header .language-option img {
		width: 20px;
		height: 20px;
	}

    .trust-grid,
    .decision-grid,
    .company-value-grid,
    .audience-grid,
    .platform-grid,
    .experience-stats,
    .proof-mini-grid,
    .dashboard-product-grid {
        grid-template-columns: 1fr;
    }

    .conversion-card,
    .deep-card,
    .company-dashboard,
    .final-conversion-box {
        padding: 24px;
    }

    .dashboard-header,
    .conversion-card-header,
    .deep-card-header,
    .proof-logo-row,
    .proof-product-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-main-card h2 {
        font-size: 1.7rem;
    }

    .hero-actions,
    .card-actions,
    .final-actions,
    .contact-actions {
        width: 100%;
    }

    .button,
    .deep-bottom .button {
        width: 100%;
    }

    .solution-logo,
    .large-logo {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .platform-logo {
        width: 48px;
        height: 48px;
    }

    .product-footer-links a {
        width: 100%;
    }
	
	.footer {
		padding-top: 28px;
	}

	.footer-cta {
		padding: 24px;
		border-radius: 24px;
	}

	.footer-main {
		gap: 30px;
		padding: 38px 0 28px;
	}

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

	.footer-cta-actions,
	.footer-cta-actions .button {
		width: 100%;
	}

	.footer-solution-links a {
		width: 100%;
	}
}

@media (max-width: 430px) {
    .nav-links {
        width: 100%;
    }

    body .compact-header .nav-links {
        gap: 10px 11px;
    }

    body .compact-header .nav-links > a:not(.nav-cta) {
        font-size: 0.88rem;
    }

    body .compact-header .nav-cta {
        width: auto;
        text-align: center;
    }

    body .compact-header .language-switcher {
        order: 21;
    }

    .company-dashboard {
        border-radius: 26px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}