@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #eef4ff;
    --surface-muted: #f0f3f8;
    --ink: #0f172a;
    --ink-soft: #475569;
    --line: rgba(15, 23, 42, 0.08);
    --primary: #9589c8;
    --primary-deep: #1a2344;
    --accent: #ff8a00;
    --accent-soft: #fff1e0;
    --slate: #4f535c;
    --cloud: #f5f3fb;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(15, 91, 215, 0.12), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 138, 0, 0.12), transparent 24%),
        var(--bg);
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    overflow: clip;
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(180deg, rgba(20, 29, 58, 0.96), rgba(20, 29, 58, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand-logo {
    width: 120px;
}

.hero {
    position: relative;
    padding: 56px 0 72px;
    color: #fff;
    background:
    radial-gradient(circle at 20% 20%, rgba(149, 137, 200, 0.35), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(255, 138, 0, 0.25), transparent 20%),
    linear-gradient(135deg, #121937 0%, #233d7d 54%, #5f78bf 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -8% -120px auto;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 64px;
}

.eyebrow,
.section-tag,
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-tag,
.mini-label {
    color: var(--primary);
    background: rgba(149, 137, 200, 0.12);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hero-text,
.section-heading p,
.problem-card p,
.module-card p,
.benefit-card p,
.cta-copy p,
.contact-form span,
.contact-form input,
.contact-form textarea,
.stack-card span,
.metric-card span,
.highlight-card p {
    color: var(--ink-soft);
}

.hero-text {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff9d2f, var(--accent));
    box-shadow: 0 14px 30px rgba(255, 138, 0, 0.28);
}

.btn-secondary,
.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.btn-block {
    width: 100%;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.metric-card,
.problem-card,
.stack-card,
.product-frame,
.module-card,
.benefit-card,
.contact-form,
.hero-screen-card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.metric-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.metric-card strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.metric-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 18px;
    align-items: end;
}

.hero-screen-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.95);
}

.hero-screen-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-main-shot {
    padding: 22px 22px 56px;
}

.hero-side-shot {
    width: 100%;
    margin-bottom: 24px;
    padding: 14px 14px 48px;
}

.frame-caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

.section {
    padding: 96px 0;
}

.trust-strip-section {
    padding: 28px 0 12px;
}

.trust-strip {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
}

.trust-strip-copy p {
    margin: 10px 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.trust-strip-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trust-logo-card {
    min-height: 88px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    display: grid;
    place-items: center;
    text-align: center;
}

.trust-logo-card img {
    max-width: 170px;
    max-height: 42px;
    width: auto;
    height: auto;
}

.trust-logo-finnegans img {
    max-width: 190px;
    max-height: 48px;
}

.trust-logo-text strong {
    color: var(--primary-deep);
    font-size: 1.02rem;
    line-height: 1.4;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.9));
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading.align-left,
.narrow-left {
    text-align: left;
}

.section-heading h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
}

.narrow {
    max-width: 760px;
}

.problem-grid,
.modules-grid,
.benefits-grid,
.product-showcase {
    display: grid;
    gap: 22px;
}

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

.problem-card,
.benefit-card,
.module-card,
.stack-card,
.contact-form,
.highlight-card,
.product-frame,
.final-cta {
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.problem-card,
.benefit-card {
    padding: 26px;
}

.problem-card-lilac {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(149, 137, 200, 0.12) 100%);
}

.problem-card-sky {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(80, 131, 208, 0.12) 100%);
}

.problem-card-soft {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(79, 83, 92, 0.08) 100%);
}

.problem-card h3,
.module-card h3,
.benefit-card strong {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.problem-card p,
.benefit-card p,
.module-card p {
    margin: 0;
    line-height: 1.7;
}

.highlight-card {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #4f66b3, #1a2344);
}

.highlight-card div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-card .mini-label,
.highlight-card p {
    color: #fff;
}

.solution-layout,
.benefits-layout,
.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.65;
    color: var(--ink);
    font-weight: 600;
}

.check-list li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffb54f);
    box-shadow: 0 0 0 5px rgba(255, 138, 0, 0.12);
}

.solution-stack {
    display: grid;
    gap: 16px;
}

.stack-card {
    padding: 24px;
}

.stack-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.15rem;
    line-height: 1.45;
}

.accent-blue {
    background: linear-gradient(180deg, rgba(15, 91, 215, 0.08), #fff);
}

.accent-orange {
    background: linear-gradient(180deg, rgba(255, 138, 0, 0.08), #fff);
}

.accent-dark {
    background: linear-gradient(180deg, rgba(10, 44, 116, 0.08), #fff);
}

.product-section {
    background: #fff;
}

.product-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.product-frame {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 16px;
    overflow: hidden;
    height: 100%;
}

.product-frame img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    border-radius: calc(var(--radius-lg) - 6px);
}

.product-copy {
    display: grid;
    gap: 6px;
    padding: 2px 4px 0;
}

.product-copy strong {
    font-size: 1rem;
    color: var(--primary-deep);
}

.product-copy span {
    color: var(--ink-soft);
    line-height: 1.6;
}

.product-frame-lilac {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 76%, rgba(149, 137, 200, 0.12) 100%);
}

.product-frame-sky {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 76%, rgba(80, 131, 208, 0.12) 100%);
}

.product-frame-slate {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 76%, rgba(79, 83, 92, 0.08) 100%);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.module-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 24px;
}

.module-card-featured {
    align-items: start;
    min-height: 100%;
}

.module-card-primary {
    grid-column: 1 / -1;
    padding: 28px;
    grid-template-columns: 160px minmax(0, 1fr);
}

.module-card-compact {
    padding: 22px;
    grid-template-columns: 108px minmax(0, 1fr);
}

.module-card-tms {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(80, 131, 208, 0.1) 100%);
}

.module-card-wms {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(149, 137, 200, 0.09) 100%);
}

.module-card-oms {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(255, 138, 0, 0.08) 100%);
}

.module-card-dms {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(79, 83, 92, 0.08) 100%);
}

.module-content {
    display: grid;
    align-content: start;
}

.module-content h3 {
    margin: 0 0 10px;
}

.module-content p {
    margin: 0;
}

.module-caption {
    margin-top: 16px !important;
    color: var(--slate) !important;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.module-media {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 10px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--cloud), #f7f8fc);
}

.module-card-primary .module-media {
    padding: 14px;
}

.module-card-compact .module-media {
    border-radius: 22px;
}

.module-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.module-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.module-highlights span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(80, 131, 208, 0.18);
    color: var(--primary-deep);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.module-card-compact .module-highlights span {
    font-size: 0.85rem;
}

.apps-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.app-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(149, 137, 200, 0.08) 100%);
    box-shadow: var(--shadow-soft);
}

.app-card-primary {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 74%, rgba(80, 131, 208, 0.12) 100%);
}

.app-card-wide {
    grid-column: 1 / -1;
}

.app-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.app-card-head strong {
    color: var(--primary-deep);
    font-size: 1.12rem;
}

.app-card-body {
    display: grid;
    align-content: start;
}

.app-summary {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.app-caption {
    margin: 14px 0 0;
    color: var(--slate);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.app-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.app-highlights span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--primary-deep);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
}

.app-platform {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--slate);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.app-platform-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
}

.app-platform-web .app-platform-icon {
    width: 16px;
    height: 12px;
    border: 2px solid var(--primary-deep);
    border-radius: 3px;
}

.app-platform-web .app-platform-icon::after {
    content: '';
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -5px;
    height: 2px;
    background: var(--primary-deep);
    border-radius: 999px;
}

.app-platform-mobile .app-platform-icon {
    width: 10px;
    height: 16px;
    border: 2px solid var(--primary-deep);
    border-radius: 3px;
}

.app-platform-mobile .app-platform-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 2px;
    height: 2px;
    margin-left: -1px;
    border-radius: 50%;
    background: var(--primary-deep);
}

.app-platform-tv .app-platform-icon {
    width: 16px;
    height: 11px;
    border: 2px solid var(--primary-deep);
    border-radius: 3px;
}

.app-platform-tv .app-platform-icon::before,
.app-platform-tv .app-platform-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 6px;
    height: 2px;
    background: var(--primary-deep);
    border-radius: 999px;
}

.app-platform-tv .app-platform-icon::before {
    left: 1px;
    transform: rotate(25deg);
}

.app-platform-tv .app-platform-icon::after {
    right: 1px;
    transform: rotate(-25deg);
}

.app-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.72;
}

.odoo-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f2f9 100%);
}

.odoo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 30px;
    align-items: start;
}

.odoo-copy h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--primary-deep);
}

.odoo-copy p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.75;
}

.odoo-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid rgba(113, 75, 103, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.odoo-proof img {
    width: 118px;
    height: auto;
}

.odoo-proof span {
    color: var(--slate);
    font-weight: 700;
    line-height: 1.55;
}

.odoo-grid {
    display: grid;
    gap: 18px;
}

.odoo-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    grid-column: 1 / -1;
}

.odoo-feature-item {
    padding: 22px;
    border: 1px solid rgba(113, 75, 103, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(1, 126, 132, 0.06) 100%);
    box-shadow: var(--shadow-soft);
}

.odoo-feature-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-size: 1.02rem;
}

.odoo-feature-item p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.odoo-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(113, 75, 103, 0.08) 100%);
    box-shadow: var(--shadow-soft);
}

.odoo-icon-wrap {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.14), rgba(1, 126, 132, 0.12));
}

.odoo-icon-wrap img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.odoo-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-size: 1.08rem;
}

.odoo-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

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

.benefit-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-deep);
}

.about-section {
    padding-top: 16px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.about-heading {
    margin-bottom: 0;
}

.about-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, var(--cloud));
    box-shadow: var(--shadow-soft);
}

.about-card p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.75;
}

.about-card p:last-of-type {
    margin-bottom: 0;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--primary-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.integrations-section {
    padding-top: 12px;
}

.integrations-wrap {
    display: grid;
    gap: 26px;
}

.integrations-heading {
    margin-bottom: 0;
}

.integration-logos,
.integration-cards {
    display: grid;
    gap: 18px;
}

.integration-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.integration-logo-card,
.integration-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, var(--cloud));
    box-shadow: var(--shadow-soft);
}

.integration-logo-card {
    min-height: 126px;
    display: grid;
    place-items: center;
    text-align: center;
}

.integration-logo-card img {
    max-width: 180px;
    max-height: 48px;
    width: auto;
    height: auto;
}

.integration-logo-text strong {
    display: block;
    color: var(--primary-deep);
    font-size: 1.2rem;
    font-weight: 900;
}

.integration-logo-text span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    line-height: 1.55;
}

.integration-logo-finnegans {
    background: linear-gradient(135deg, #ffffff, #f6f8ff);
}

.integration-logo-finnegans-image {
    max-width: 240px !important;
    max-height: 62px !important;
}

.integration-logo-odoo {
    background: linear-gradient(135deg, #ffffff, #f8f1f7);
}

.integration-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-size: 1.04rem;
}

.integration-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.ecosystem-section {
    padding-top: 20px;
    background:
        radial-gradient(circle at top, rgba(149, 137, 200, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.ecosystem-heading {
    margin-bottom: 30px;
}

.ecosystem-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.ecosystem-column {
    display: grid;
    gap: 18px;
}

.ecosystem-node {
    position: relative;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.ecosystem-node::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ecosystem-node-kicker {
    display: inline-block;
    margin-left: 24px;
    color: var(--primary-deep);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ecosystem-node strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--primary-deep);
    font-size: 1.02rem;
    line-height: 1.4;
}

.ecosystem-node p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.ecosystem-node-blue::before {
    background: #2f68d8;
    box-shadow: 0 0 0 6px rgba(47, 104, 216, 0.12);
}

.ecosystem-node-green::before {
    background: #20a05c;
    box-shadow: 0 0 0 6px rgba(32, 160, 92, 0.12);
}

.ecosystem-node-orange::before {
    background: #ff8a00;
    box-shadow: 0 0 0 6px rgba(255, 138, 0, 0.12);
}

.ecosystem-node-violet::before {
    background: #8c58c8;
    box-shadow: 0 0 0 6px rgba(140, 88, 200, 0.12);
}

.ecosystem-node-teal::before {
    background: #1d98a8;
    box-shadow: 0 0 0 6px rgba(29, 152, 168, 0.12);
}

.ecosystem-node-gold::before {
    background: #e6aa14;
    box-shadow: 0 0 0 6px rgba(230, 170, 20, 0.14);
}

.ecosystem-center {
    display: grid;
    place-items: center;
}

.ecosystem-orbit {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    padding: 28px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0 44%, transparent 45%),
        conic-gradient(
            #2f68d8 0deg 58deg,
            transparent 58deg 72deg,
            #20a05c 72deg 130deg,
            transparent 130deg 144deg,
            #8c58c8 144deg 202deg,
            transparent 202deg 216deg,
            #e6aa14 216deg 274deg,
            transparent 274deg 288deg,
            #1d98a8 288deg 346deg,
            transparent 346deg 360deg
        );
    box-shadow: 0 28px 70px rgba(26, 35, 68, 0.12);
}

.ecosystem-orbit::after {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px solid rgba(26, 35, 68, 0.08);
}

.ecosystem-core {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 10px;
    width: 72%;
    aspect-ratio: 1 / 1;
    padding: 26px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fe 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(26, 35, 68, 0.12);
}

.ecosystem-core img {
    width: 78%;
    height: auto;
}

.ecosystem-core p {
    margin: 0;
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.ecosystem-integrations-wrap {
    margin-top: 28px;
    padding: 28px 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #14356a, #1a2344);
    box-shadow: var(--shadow-soft);
}

.ecosystem-integrations-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.ecosystem-integrations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ecosystem-integrations span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.ecosystem-footnote {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
}

.final-cta-section {
    padding-top: 40px;
    padding-bottom: 110px;
}

.final-cta {
    padding: 34px;
    background: linear-gradient(135deg, #ffffff, #edf3ff);
}

.cta-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cta-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.form-status {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.55;
}

.form-status-success {
    color: #0b6b3b;
    background: rgba(30, 168, 91, 0.12);
    border: 1px solid rgba(30, 168, 91, 0.22);
}

.form-status-error {
    color: #9f1239;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.contact-form span {
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: rgba(15, 91, 215, 0.4);
    box-shadow: 0 0 0 4px rgba(15, 91, 215, 0.12);
}

.contact-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-deep) 50%), linear-gradient(135deg, var(--primary-deep) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.whatsapp-link {
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    min-width: 132px;
    padding: 14px 18px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(135deg, #1ea85b, #0b7d42);
    box-shadow: 0 18px 40px rgba(11, 125, 66, 0.3);
}

.brands-marquee-section {
    padding: 0 0 52px;
}

.brands-marquee-wrap {
    display: grid;
    gap: 18px;
}

.brands-marquee-tag {
    justify-self: center;
}

.brands-marquee {
    position: relative;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 84px;
    z-index: 1;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f6f9ff 0%, rgba(246, 249, 255, 0) 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f6f9ff 0%, rgba(246, 249, 255, 0) 100%);
}

.brands-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: brandMarquee 42s linear infinite;
}

.brand-mark {
    flex: 0 0 210px;
    height: 96px;
    display: grid;
    place-items: center;
    padding: 18px 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, #f3f5f9 0%, #eceff5 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.brand-mark img {
    width: 100%;
    max-width: 150px;
    max-height: 52px;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) saturate(0) contrast(1.08) opacity(0.88);
}

.brand-mark-wide img {
    max-width: 172px;
}

.brand-mark-small img {
    max-width: 186px;
    max-height: 58px;
}

.brand-mark-light img {
    filter: brightness(0) saturate(0) opacity(0.62);
}

.site-footer {
    padding: 28px 0 36px;
    background: linear-gradient(180deg, rgba(20, 29, 58, 0.96), rgba(20, 29, 58, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
}

.footer-tag {
    margin-bottom: 12px;
}

.site-footer h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.2;
}

.site-footer-contact {
    display: grid;
    gap: 10px;
}

.site-footer-contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.6;
}

.site-footer-contact a:hover {
    color: #ffffff;
}

.site-footer-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-downloads a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.6;
}

.site-footer-downloads a:hover {
    color: #ffffff;
}

.site-footer-legal {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.7;
}

@keyframes brandMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

@media (max-width: 1080px) {
    .hero-layout,
    .solution-layout,
    .trust-strip,
    .odoo-layout,
    .about-layout,
    .benefits-layout,
    .final-cta,
    .problem-grid,
    .product-showcase,
    .modules-grid,
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .integration-logos,
    .integration-cards {
        grid-template-columns: 1fr;
    }

    .odoo-features {
        grid-template-columns: 1fr;
    }

    .ecosystem-board {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: grid;
        grid-template-columns: 1fr 220px;
        gap: 18px;
    }

    .hero-screen-card {
        position: static;
    }

    .hero-main-shot,
    .hero-side-shot {
        padding: 16px 16px 52px;
    }

    .trust-strip-logos {
        grid-template-columns: 1fr;
    }

    .site-footer-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .hero {
        padding-top: 32px;
    }

    .hero-metrics,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-integrations-wrap {
        padding: 24px 20px;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-side-shot {
        margin-bottom: 0;
    }

    .module-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .module-card-primary,
    .module-card-compact {
        grid-column: auto;
        padding: 24px;
        grid-template-columns: 1fr;
    }

    .app-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ecosystem-node {
        padding: 20px;
    }

    .ecosystem-node::before {
        top: 20px;
        left: 20px;
    }

    .brand-mark {
        flex-basis: 184px;
        height: 88px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--max-width), calc(100% - 24px));
    }

    .topbar-inner {
        gap: 12px;
        padding: 14px 0;
    }

    .brand-logo {
        width: 96px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .cta-points {
        flex-direction: column;
    }

    .section {
        padding: 72px 0;
    }

    .problem-card,
    .ecosystem-node,
    .benefit-card,
    .module-card,
    .stack-card,
    .final-cta,
    .contact-form,
    .brand-mark {
        padding: 22px;
    }

    .brands-marquee::before,
    .brands-marquee::after {
        width: 34px;
    }

    .brands-marquee-track {
        gap: 14px;
    }

    .brand-mark {
        flex-basis: 164px;
        height: 80px;
        padding: 14px 16px;
    }

    .brand-mark img {
        max-width: 130px;
        max-height: 42px;
    }

    .ecosystem-orbit {
        width: min(100%, 300px);
        padding: 22px;
    }

    .ecosystem-core {
        width: 74%;
        padding: 20px;
    }

    .ecosystem-core p {
        font-size: 0.82rem;
    }

    .floating-whatsapp {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }
}