:root {
    --datactor-primary: #123B6D;
    --datactor-secondary: #0EA5A4;
    --datactor-accent: #22C55E;
    --datactor-dark: #0F172A;
    --datactor-muted: #64748B;
    --datactor-light: #F8FAFC;
    --datactor-border: #E2E8F0;
    --datactor-white: #FFFFFF;
    --datactor-radius: 20px;
    --datactor-radius-lg: 28px;
    --datactor-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
    --datactor-shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.06);
    --datactor-shadow-hover: 0 24px 64px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body.datactor-site {
    min-height: 100vh;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--datactor-dark);
    background: var(--datactor-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--datactor-primary);
    text-decoration: none;
}

a:hover {
    color: var(--datactor-secondary);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.accordion-button:focus-visible {
    outline: 3px solid rgba(14, 165, 164, 0.32);
    outline-offset: 3px;
    box-shadow: none;
}

/* Layout */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.86);
    backdrop-filter: blur(18px);
}

.datactor-navbar {
    min-height: 76px;
    padding: 12px 0;
}

.datactor-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--datactor-dark);
    font-weight: 800;
    letter-spacing: 0;
}

.datactor-brand:hover,
.footer-brand:hover {
    color: var(--datactor-primary);
}

.datactor-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--datactor-white);
    background: linear-gradient(135deg, var(--datactor-primary), #0B2B50);
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(18, 59, 109, 0.18);
}

.datactor-brand-text {
    font-size: 1.25rem;
    line-height: 1;
}

.datactor-navbar .navbar-collapse {
    flex-grow: 0;
    gap: 28px;
}

.datactor-navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.datactor-navbar .nav-link {
    position: relative;
    border-radius: 999px;
    padding: 10px 13px;
    color: var(--datactor-muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.datactor-navbar .nav-link:hover,
.datactor-navbar .nav-link:focus {
    color: var(--datactor-primary);
    background: rgba(18, 59, 109, 0.06);
}

.datactor-nav-dropdown {
    display: flex;
    align-items: center;
}

.datactor-dropdown-toggle {
    margin-left: -8px;
    padding-inline: 8px;
}

.datactor-dropdown-toggle::after {
    margin-left: 0;
}

.datactor-dropdown-menu {
    min-width: 280px;
    padding: 10px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 18px;
    box-shadow: var(--datactor-shadow-soft);
}

.datactor-dropdown-menu .dropdown-item {
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--datactor-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.datactor-dropdown-menu .dropdown-item:hover,
.datactor-dropdown-menu .dropdown-item:focus {
    color: var(--datactor-primary);
    background: rgba(18, 59, 109, 0.06);
}

.datactor-navbar .navbar-toggler {
    border-color: var(--datactor-border);
    border-radius: 14px;
    padding: 8px 10px;
}

.datactor-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 164, 0.2);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-main {
    min-height: 48vh;
}

/* Buttons */
.btn-datactor-primary,
.btn-datactor-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn-datactor-primary {
    color: var(--datactor-white);
    background: var(--datactor-primary);
    border: 1px solid var(--datactor-primary);
    box-shadow: 0 14px 28px rgba(18, 59, 109, 0.18);
}

.btn-datactor-primary:hover,
.btn-datactor-primary:focus {
    color: var(--datactor-white);
    background: var(--datactor-secondary);
    border-color: var(--datactor-secondary);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(14, 165, 164, 0.2);
}

.btn-datactor-outline {
    color: var(--datactor-primary);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 59, 109, 0.24);
}

.btn-datactor-outline:hover,
.btn-datactor-outline:focus {
    color: var(--datactor-white);
    background: var(--datactor-primary);
    border-color: var(--datactor-primary);
    transform: translateY(-1px);
}

/* Sections and typography */
.hero-section,
.datactor-section,
.contact-cta-section {
    overflow: hidden;
}

.hero-section {
    position: relative;
    padding: 112px 0 104px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 1)),
        radial-gradient(circle at 82% 16%, rgba(14, 165, 164, 0.12), transparent 32%),
        radial-gradient(circle at 10% 16%, rgba(18, 59, 109, 0.1), transparent 28%);
}

.hero-section::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(18, 59, 109, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 109, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 74%);
    content: "";
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.datactor-section {
    padding: 104px 0;
}

.datactor-section-light {
    background:
        linear-gradient(180deg, #FFFFFF, var(--datactor-light));
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 165, 164, 0.26);
    border-radius: 999px;
    padding: 7px 14px;
    color: #087D7C;
    background: rgba(14, 165, 164, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-title,
.section-title,
.contact-cta h2 {
    letter-spacing: 0;
}

.hero-title {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--datactor-dark);
    font-size: clamp(2.55rem, 5.8vw, 5.25rem);
    font-weight: 800;
    line-height: 1.01;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--datactor-muted);
    font-size: 1.13rem;
    line-height: 1.8;
}

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

.section-heading {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-title {
    margin-bottom: 18px;
    color: var(--datactor-dark);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.14;
}

.section-description {
    margin-bottom: 0;
    color: var(--datactor-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* Cards */
.content-panel,
.info-card,
.module-card,
.benefit-item,
.dashboard-mockup,
.report-box,
.datactor-accordion .accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: var(--datactor-white);
    box-shadow: var(--datactor-shadow-soft);
}

.content-panel,
.info-card,
.module-card {
    border-radius: var(--datactor-radius);
}

.content-panel {
    padding: 34px;
}

.info-card,
.module-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.module-card:hover,
.benefit-item:hover,
.report-box:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 164, 0.34);
    box-shadow: var(--datactor-shadow-hover);
}

.content-panel p,
.info-card p,
.module-card p {
    color: var(--datactor-muted);
    line-height: 1.75;
}

.content-panel p:last-child,
.info-card p:last-child,
.module-card p:last-child {
    margin-bottom: 0;
}

.info-card h3,
.module-card h3 {
    margin: 22px 0 12px;
    color: var(--datactor-dark);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.28;
}

.card-icon,
.module-card > i,
.benefit-item i,
.report-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: var(--datactor-primary);
    background: rgba(18, 59, 109, 0.08);
    font-size: 1.35rem;
}

.module-card > i {
    color: var(--datactor-white);
    background: linear-gradient(135deg, var(--datactor-primary), var(--datactor-secondary));
}

.module-card p {
    flex: 1;
}

.module-card h2 {
    margin: 22px 0 12px;
    color: var(--datactor-dark);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.28;
}

.module-card-link {
    color: inherit;
    cursor: pointer;
}

.module-card-link:hover,
.module-card-link:focus {
    color: inherit;
}

.module-card-link:focus-visible {
    outline: 3px solid rgba(14, 165, 164, 0.32);
    outline-offset: 4px;
}

.module-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--datactor-primary);
    font-size: 0.92rem;
    font-weight: 800;
}

.module-card-action::after {
    font-family: "bootstrap-icons";
    content: "\F285";
}

.module-list-benefits {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.module-list-benefits li {
    position: relative;
    padding-left: 22px;
    color: var(--datactor-muted);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
}

.module-list-benefits li::before {
    position: absolute;
    top: 0.06rem;
    left: 0;
    color: var(--datactor-secondary);
    font-family: "bootstrap-icons";
    content: "\F26E";
}

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

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--datactor-muted);
    line-height: 1.6;
}

.check-list li::before {
    position: absolute;
    top: 0.1rem;
    left: 0;
    color: var(--datactor-secondary);
    font-family: "bootstrap-icons";
    content: "\F26E";
}

.compact-list {
    margin-top: 26px;
}

/* Benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 104px;
    border-radius: var(--datactor-radius);
    padding: 20px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-item i {
    color: var(--datactor-accent);
    background: rgba(34, 197, 94, 0.1);
}

.benefit-item span {
    color: var(--datactor-dark);
    font-weight: 700;
    line-height: 1.55;
}

/* Dashboard mockups */
.dashboard-mockup {
    position: relative;
    border-radius: var(--datactor-radius-lg);
    padding: 22px;
    box-shadow: var(--datactor-shadow);
}

.hero-mockup {
    isolation: isolate;
    transform: translateY(6px);
}

.hero-mockup::before {
    position: absolute;
    inset: -16px;
    z-index: -1;
    border: 1px solid rgba(18, 59, 109, 0.08);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.42);
    content: "";
}

.dashboard-mockup-compact {
    background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding-bottom: 18px;
}

.mockup-header span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--datactor-border);
}

.mockup-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 20px;
    padding: 20px;
    color: var(--datactor-white);
    background:
        linear-gradient(135deg, rgba(14, 165, 164, 0.28), transparent 42%),
        var(--datactor-primary);
}

.mockup-toolbar strong,
.mockup-toolbar small {
    display: block;
}

.mockup-toolbar small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
}

.mockup-status {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--datactor-dark);
    background: var(--datactor-white);
    font-size: 0.82rem;
    font-weight: 800;
}

.mockup-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.mockup-summary div {
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 18px;
    padding: 15px;
    background: rgba(248, 250, 252, 0.8);
}

.mockup-summary span,
.mockup-list span,
.mockup-tile span,
.report-box span {
    color: var(--datactor-muted);
    font-weight: 600;
}

.mockup-summary strong {
    display: block;
    margin-top: 5px;
    color: var(--datactor-dark);
}

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

.mockup-grid {
    margin-top: 16px;
}

.mockup-tile,
.report-box {
    border: 1px solid var(--datactor-border);
    border-radius: 18px;
    background: var(--datactor-light);
}

.mockup-tile {
    min-height: 118px;
    padding: 18px;
}

.mockup-tile i {
    display: block;
    margin-bottom: 18px;
    color: var(--datactor-secondary);
    font-size: 1.45rem;
}

.mockup-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.mockup-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--datactor-border);
    border-radius: 16px;
    padding: 14px 16px;
}

.mockup-list strong {
    color: var(--datactor-primary);
}

.report-box {
    display: grid;
    gap: 12px;
    min-height: 170px;
    padding: 22px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.report-box strong {
    color: var(--datactor-dark);
    font-size: 1.08rem;
}

.report-box-wide {
    grid-column: 1 / -1;
}

/* FAQ */
.datactor-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.datactor-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: var(--datactor-radius);
}

.datactor-accordion .accordion-button {
    padding: 22px 24px;
    color: var(--datactor-dark);
    background: var(--datactor-white);
    font-weight: 800;
    line-height: 1.45;
}

.datactor-accordion .accordion-button:not(.collapsed) {
    color: var(--datactor-primary);
    background: rgba(18, 59, 109, 0.05);
    box-shadow: none;
}

.datactor-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 164, 0.18);
}

.datactor-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: rgba(18, 59, 109, 0.08);
    background-position: center;
    background-size: 16px;
}

.datactor-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--datactor-muted);
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta-section {
    padding: 56px 0 104px;
    background: var(--datactor-white);
}

.contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: start;
    gap: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--datactor-radius-lg);
    padding: 46px;
    color: var(--datactor-white);
    background:
        linear-gradient(135deg, rgba(14, 165, 164, 0.34), transparent 42%),
        var(--datactor-primary);
    box-shadow: var(--datactor-shadow);
}

.contact-copy {
    position: sticky;
    top: 112px;
}

.contact-cta .section-eyebrow {
    color: var(--datactor-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-cta h2 {
    max-width: 720px;
    margin-bottom: 14px;
    color: var(--datactor-white);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.16;
}

.contact-cta p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.contact-form {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

.contact-form .form-label {
    margin-bottom: 8px;
    color: var(--datactor-dark);
    font-size: 0.92rem;
    font-weight: 800;
}

.contact-form .form-control {
    min-height: 48px;
    border-color: var(--datactor-border);
    border-radius: 14px;
    color: var(--datactor-dark);
    background: var(--datactor-white);
    font-weight: 500;
}

.contact-form textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: var(--datactor-secondary);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 164, 0.14);
}

.contact-form .form-control.is-invalid {
    border-color: #DC2626;
    background-image: none;
}

.form-error {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    color: #B91C1C;
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-check {
    color: var(--datactor-muted);
    font-weight: 600;
}

.contact-check .form-check-input {
    border-color: var(--datactor-border);
}

.contact-check .form-check-input:checked {
    background-color: var(--datactor-secondary);
    border-color: var(--datactor-secondary);
}

.form-alert {
    margin-bottom: 18px;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
    line-height: 1.5;
}

.form-alert.is-success {
    color: #166534;
    background: rgba(34, 197, 94, 0.12);
}

.form-alert.is-error {
    color: #991B1B;
    background: rgba(220, 38, 38, 0.1);
}

.contact-submit {
    width: 100%;
}

.contact-cta .contact-submit {
    color: var(--datactor-primary);
    background: var(--datactor-white);
    border-color: rgba(18, 59, 109, 0.16);
    box-shadow: 0 12px 24px rgba(18, 59, 109, 0.12);
}

.contact-cta .contact-submit:hover,
.contact-cta .contact-submit:focus {
    color: var(--datactor-white);
    background: var(--datactor-secondary);
    border-color: var(--datactor-secondary);
}

.contact-cta .contact-submit:disabled {
    color: var(--datactor-muted);
    background: var(--datactor-light);
    border-color: var(--datactor-border);
    transform: none;
    box-shadow: none;
}

/* Footer */
.site-footer {
    padding: 72px 0 28px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--datactor-dark);
}

.site-footer .datactor-brand-mark {
    background: var(--datactor-secondary);
}

.site-footer .datactor-brand-text,
.site-footer .footer-brand {
    color: var(--datactor-white);
}

.footer-description {
    max-width: 420px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.footer-title {
    margin-bottom: 18px;
    color: var(--datactor-white);
    font-size: 0.95rem;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--datactor-white);
}

.site-footer .btn-datactor-outline {
    color: var(--datactor-white);
    border-color: rgba(255, 255, 255, 0.32);
    background: transparent;
}

.site-footer .btn-datactor-outline:hover,
.site-footer .btn-datactor-outline:focus {
    color: var(--datactor-dark);
    background: var(--datactor-white);
    border-color: var(--datactor-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

/* Module detail */
.modules-list-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 88px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 1)),
        radial-gradient(circle at 78% 12%, rgba(14, 165, 164, 0.14), transparent 34%),
        radial-gradient(circle at 14% 18%, rgba(18, 59, 109, 0.12), transparent 28%);
}

.modules-list-hero-content {
    max-width: 820px;
}

.module-list-card p {
    flex: initial;
}

.module-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 92px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 1)),
        radial-gradient(circle at 82% 20%, rgba(14, 165, 164, 0.14), transparent 34%),
        radial-gradient(circle at 12% 10%, rgba(18, 59, 109, 0.12), transparent 28%);
}

.module-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--datactor-muted);
    font-weight: 800;
}

.module-back-link:hover,
.module-back-link:focus {
    color: var(--datactor-primary);
}

.module-breadcrumb {
    margin-bottom: 28px;
}

.module-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.module-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--datactor-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.module-breadcrumb li:not(:last-child)::after {
    color: rgba(100, 116, 139, 0.7);
    content: ">";
}

.module-breadcrumb a {
    color: var(--datactor-muted);
}

.module-breadcrumb a:hover,
.module-breadcrumb a:focus {
    color: var(--datactor-primary);
}

.module-detail-title {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--datactor-dark);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.04;
}

.module-detail-lead {
    max-width: 700px;
    margin-bottom: 32px;
    color: var(--datactor-muted);
    font-size: 1.12rem;
    line-height: 1.8;
}

.module-detail-visual {
    display: grid;
    align-content: center;
    min-height: 360px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--datactor-radius-lg);
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(18, 59, 109, 0.08), rgba(14, 165, 164, 0.08)),
        var(--datactor-white);
    box-shadow: var(--datactor-shadow);
}

.module-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    color: var(--datactor-white);
    background: linear-gradient(135deg, var(--datactor-primary), var(--datactor-secondary));
    font-size: 2rem;
    box-shadow: 0 18px 36px rgba(18, 59, 109, 0.2);
}

.module-detail-visual strong {
    display: block;
    margin-top: 28px;
    color: var(--datactor-dark);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
}

.module-detail-visual span {
    display: block;
    margin-top: 12px;
    color: var(--datactor-muted);
    font-weight: 700;
}

.module-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    display: flex;
    gap: 16px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--datactor-radius);
    padding: 26px;
    background: var(--datactor-white);
    box-shadow: var(--datactor-shadow-soft);
}

.feature-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--datactor-accent);
    background: rgba(34, 197, 94, 0.1);
}

.feature-card h3 {
    margin: 0;
    color: var(--datactor-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.module-detail-cta {
    padding: 56px 0 104px;
}

.related-module-card {
    min-height: 100%;
}

.related-module-card p {
    font-size: 0.95rem;
}

/* Privacy */
.privacy-hero {
    overflow: hidden;
    padding: 96px 0 72px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 1)),
        radial-gradient(circle at 78% 12%, rgba(14, 165, 164, 0.12), transparent 34%),
        radial-gradient(circle at 14% 18%, rgba(18, 59, 109, 0.1), transparent 28%);
}

.privacy-hero-content {
    max-width: 820px;
}

.privacy-hero h1 {
    margin-bottom: 20px;
    color: var(--datactor-dark);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.privacy-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--datactor-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.privacy-section {
    padding: 72px 0 104px;
}

.privacy-content {
    display: grid;
    gap: 18px;
    max-width: 920px;
}

.privacy-block {
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--datactor-radius);
    padding: 28px;
    background: var(--datactor-white);
    box-shadow: var(--datactor-shadow-soft);
}

.privacy-block h2 {
    margin-bottom: 12px;
    color: var(--datactor-dark);
    font-size: 1.28rem;
    font-weight: 800;
}

.privacy-block p {
    color: var(--datactor-muted);
    line-height: 1.8;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .datactor-navbar .navbar-collapse {
        gap: 18px;
    }

    .datactor-navbar .nav-link {
        padding-inline: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 76px;
    }

    .datactor-navbar {
        min-height: 70px;
    }

    .datactor-navbar .navbar-collapse {
        gap: 0;
        padding: 18px 0 6px;
    }

    .datactor-navbar .navbar-nav {
        align-items: stretch;
        gap: 2px;
        padding-bottom: 14px;
    }

    .datactor-navbar .nav-link {
        padding: 12px 14px;
    }

    .datactor-nav-dropdown {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .datactor-nav-dropdown > .nav-link:first-child {
        flex: 1 1 auto;
    }

    .datactor-dropdown-toggle {
        flex: 0 0 auto;
        margin-left: 0;
    }

    .datactor-dropdown-menu {
        width: 100%;
        margin-top: 4px;
    }

    .navbar-actions {
        align-items: stretch;
    }

    .navbar-actions .btn {
        width: 100%;
    }

    .hero-section {
        padding: 82px 0 72px;
    }

    .datactor-section {
        padding: 76px 0;
    }

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

    .hero-mockup {
        transform: none;
    }

    .contact-cta {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }

    .module-detail-hero {
        padding: 82px 0 72px;
    }

    .modules-list-hero {
        padding: 82px 0 72px;
    }

    .privacy-hero {
        padding: 82px 0 64px;
    }

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

@media (max-width: 767.98px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .module-detail-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .datactor-navbar {
        min-height: 66px;
    }

    .datactor-brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .datactor-brand-text {
        font-size: 1.12rem;
    }

    .hero-section {
        padding: 62px 0 56px;
    }

    .module-detail-hero {
        padding: 62px 0 56px;
    }

    .modules-list-hero {
        padding: 62px 0 56px;
    }

    .privacy-hero {
        padding: 62px 0 52px;
    }

    .datactor-section {
        padding: 58px 0;
    }

    .privacy-section {
        padding: 52px 0 64px;
    }

    .hero-title,
    .module-detail-title {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .hero-text,
    .section-description {
        font-size: 1rem;
    }

    .hero-actions,
    .hero-actions .btn,
    .contact-cta .btn {
        width: 100%;
    }

    .mockup-summary,
    .mockup-grid,
    .report-grid {
        grid-template-columns: 1fr;
    }

    .mockup-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .content-panel,
    .info-card,
    .module-card,
    .dashboard-mockup,
    .contact-cta,
    .module-detail-visual,
    .feature-card,
    .privacy-block {
        padding: 24px;
    }

    .contact-form {
        padding: 20px;
    }

    .report-box-wide {
        grid-column: auto;
    }

    .contact-cta-section {
        padding: 36px 0 64px;
    }

    .module-detail-cta {
        padding: 36px 0 64px;
    }

    .site-footer {
        padding-top: 56px;
    }

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

    .footer-bottom {
        margin-top: 36px;
    }
}
