:focus-visible {
    outline: 3px solid rgba(16, 185, 129, 0.85);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-video-overlay {
    background: linear-gradient(90deg, rgba(3, 18, 35, 0.62) 0%, rgba(3, 18, 35, 0.46) 48%, rgba(3, 18, 35, 0.22) 100%);
}

.hero-sound-toggle {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 9999px;
    padding: 0.625rem 0.875rem;
    color: #fff;
    background: rgba(3, 18, 35, 0.68);
    box-shadow: 0 12px 30px rgba(3, 18, 35, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-sound-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(3, 18, 35, 0.82);
}

.hero-sound-toggle:active {
    transform: translateY(0);
}

.hero-sound-icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.hero-rotating-statement {
    position: relative;
    min-height: clamp(3.8rem, 9vw, 6.8rem);
}

.hero-phrase {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 560ms ease, transform 560ms ease;
    will-change: opacity, transform;
}

.hero-phrase.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hero-phrase.is-exiting {
    opacity: 0;
    transform: translateY(-10px);
}

.hero-statement-static {
    display: none;
}

.hero-support-copy {
    color: rgba(219, 234, 254, 0.84);
    font-weight: 400;
    line-height: 1.7;
}

.motion-card {
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.motion-card:hover {
    transform: translateY(-4px);
}

.who-serve-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f4fdfa 100%);
}

.who-serve-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='820' height='420' viewBox='0 0 820 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231E3A8A' stroke-width='1.2' stroke-opacity='.14'%3E%3Cpath d='M42 318 138 258 226 286 326 210 432 238 532 166 650 198 772 128'/%3E%3Cpath d='M88 110 188 146 296 104 404 154 518 120 648 174 748 146'/%3E%3Cpath d='M156 344 264 312 366 350 482 306 586 342 710 292'/%3E%3C/g%3E%3Cg fill='%2310B981' fill-opacity='.2'%3E%3Ccircle cx='42' cy='318' r='4'/%3E%3Ccircle cx='138' cy='258' r='3.5'/%3E%3Ccircle cx='226' cy='286' r='3.5'/%3E%3Ccircle cx='326' cy='210' r='4'/%3E%3Ccircle cx='432' cy='238' r='3.5'/%3E%3Ccircle cx='532' cy='166' r='4'/%3E%3Ccircle cx='650' cy='198' r='3.5'/%3E%3Ccircle cx='772' cy='128' r='4'/%3E%3Ccircle cx='88' cy='110' r='3.5'/%3E%3Ccircle cx='188' cy='146' r='3.5'/%3E%3Ccircle cx='296' cy='104' r='3.5'/%3E%3Ccircle cx='404' cy='154' r='4'/%3E%3Ccircle cx='518' cy='120' r='3.5'/%3E%3Ccircle cx='648' cy='174' r='4'/%3E%3Ccircle cx='748' cy='146' r='3.5'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: min(820px, 92vw) auto;
    opacity: 0.34;
}

.who-serve-section > .max-w-7xl,
.research-journey-section > .max-w-7xl {
    position: relative;
    z-index: 1;
}

.who-serve-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0 auto;
}

.who-serve-card {
    display: flex;
    min-height: 15rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(30, 58, 138, 0.11);
    border-left: 4px solid #1e3a8a;
    border-radius: 14px;
    padding: clamp(1.5rem, 3vw, 1.75rem);
    text-align: center;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.065);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.who-serve-card:hover,
.who-serve-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.who-serve-card--blue {
    border-left-color: #1e3a8a;
    background: rgba(238, 245, 255, 0.92);
}

.who-serve-card--green {
    border-left-color: #10b981;
    background: rgba(236, 251, 243, 0.92);
}

.who-serve-card--blue:hover,
.who-serve-card--blue:focus-within {
    border-color: rgba(30, 58, 138, 0.24);
    border-left-color: #1e3a8a;
}

.who-serve-card--green:hover,
.who-serve-card--green:focus-within {
    border-color: rgba(16, 185, 129, 0.32);
    border-left-color: #10b981;
}

.who-serve-icon {
    display: inline-flex;
    width: 3.15rem;
    height: 3.15rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 9999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
    font-size: 1.8rem;
    line-height: 1;
}

.who-serve-card h3 {
    margin: 0 0 0.65rem;
    color: #0f2e5b;
    font-size: clamp(1.1rem, 1.8vw, 1.22rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0;
}

.who-serve-card p {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.62;
}

.research-journey-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f8fafc 0%, #eef5ff 52%, #f4fdfa 100%);
}

.research-journey-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(30, 58, 138, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.045) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg width='900' height='360' viewBox='0 0 900 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231E3A8A' stroke-width='1.1' stroke-opacity='.11'%3E%3Cpath d='M64 86 C182 34 260 144 374 94 S604 70 736 130 850 104 886 78'/%3E%3Cpath d='M22 258 C132 198 244 286 356 230 S556 188 680 250 806 278 880 218'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 0 0, 0 0, center;
    background-repeat: repeat, repeat, no-repeat;
    background-size: 56px 56px, 56px 56px, min(900px, 94vw) auto;
    opacity: 0.72;
}

.research-journey-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.journey-card {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 15.5rem;
    flex-direction: column;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-top: 4px solid #1e3a8a;
    border-radius: 14px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.journey-card:hover,
.journey-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
}

.journey-card--green {
    border-top-color: #10b981;
}

.journey-card--blue:hover,
.journey-card--blue:focus-within {
    border-color: rgba(30, 58, 138, 0.24);
    border-top-color: #1e3a8a;
}

.journey-card--green:hover,
.journey-card--green:focus-within {
    border-color: rgba(16, 185, 129, 0.32);
    border-top-color: #10b981;
}

.journey-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.journey-step {
    display: inline-flex;
    min-width: 2.55rem;
    min-height: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.35rem 0.7rem;
    color: #1e3a8a;
    background: rgba(219, 234, 254, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.journey-card--green .journey-step {
    color: #047857;
    background: rgba(209, 250, 229, 0.84);
}

.journey-icon {
    display: inline-flex;
    width: 2.9rem;
    height: 2.9rem;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.96);
    box-shadow: inset 0 0 0 1px rgba(30, 58, 138, 0.08);
    font-size: 1.55rem;
    line-height: 1;
}

.journey-card h3 {
    margin: 0 0 0.75rem;
    color: #0f2e5b;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
}

.journey-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.research-journey-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    border-radius: 10px;
    padding: 0.85rem 1.3rem;
    color: #ffffff;
    background: #1e3a8a;
    box-shadow: 0 10px 24px rgba(30, 58, 138, 0.16);
    font-weight: 800;
    line-height: 1;
    transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.research-journey-cta:hover,
.research-journey-cta:focus-visible {
    transform: translateY(-2px);
    background: #172554;
    box-shadow: 0 14px 30px rgba(30, 58, 138, 0.22);
}

.scientific-disciplines-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.14), transparent 32%),
        radial-gradient(circle at 82% 76%, rgba(16, 185, 129, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 52%, #f8fdfa 100%);
}

.scientific-disciplines-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(30, 58, 138, 0.16) 1.1px, transparent 1.4px),
        url("data:image/svg+xml,%3Csvg width='820' height='360' viewBox='0 0 820 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2310B981' stroke-width='1.1' stroke-opacity='.12'%3E%3Cpath d='M22 260 C126 184 220 312 322 218 S530 154 642 220 758 250 804 174'/%3E%3Cpath d='M74 92 C176 32 286 138 386 84 S592 54 720 120'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 0 0, center;
    background-repeat: repeat, no-repeat;
    background-size: 34px 34px, min(820px, 92vw) auto;
    opacity: 0.38;
    animation: discipline-pattern-drift 22s ease-in-out infinite alternate;
}

.scientific-disciplines-section > .max-w-7xl {
    position: relative;
    z-index: 1;
}

.scientific-disciplines-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.discipline-card {
    min-height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-top: 4px solid #1e3a8a;
    border-radius: 16px;
    padding: clamp(1.3rem, 3vw, 1.6rem);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.discipline-card:hover,
.discipline-card:focus-within {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.discipline-card--green {
    border-top-color: #10b981;
}

.discipline-card--blue:hover,
.discipline-card--blue:focus-within {
    border-color: rgba(30, 58, 138, 0.24);
    border-top-color: #1e3a8a;
}

.discipline-card--green:hover,
.discipline-card--green:focus-within {
    border-color: rgba(16, 185, 129, 0.32);
    border-top-color: #10b981;
}

.discipline-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: rgba(219, 234, 254, 0.82);
    box-shadow: inset 0 0 0 1px rgba(30, 58, 138, 0.08);
    font-size: 1.6rem;
    line-height: 1;
}

.discipline-card--green .discipline-icon {
    background: rgba(209, 250, 229, 0.84);
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.discipline-card h3 {
    margin: 0 0 0.85rem;
    color: #0f2e5b;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
}

.discipline-card ul {
    display: grid;
    gap: 0.42rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.discipline-card li {
    position: relative;
    padding-left: 1rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.48;
}

.discipline-card li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 9999px;
    background: #1e3a8a;
}

.discipline-card--green li::before {
    background: #10b981;
}

@keyframes discipline-pattern-drift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(18px, -12px, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.footer-social-link {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #ffffff;
    background: #475569;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.footer-social-facebook {
    background: #1877f2;
}

.footer-social-instagram {
    background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.footer-social-x {
    background: #000000;
}

.footer-social-youtube {
    background: #ff0000;
}

.footer-social-telegram {
    background: #229ed9;
}

.footer-social-linkedin {
    background: #0a66c2;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.26);
    opacity: 0.96;
}

.footer-social-link svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    fill: currentColor;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* INNOSCIENTICA CONTACT MAP - START */
.contact-map-section {
    margin-top: 2rem;
}

.contact-map-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.contact-map-card iframe,
.contact-map-modal-content iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-expand {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    border: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: right;
}

.contact-map-expand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(15, 46, 91, 0.94);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-map-expand:hover span,
.contact-map-expand:focus-visible span {
    transform: translateY(-1px);
    background: rgba(30, 58, 138, 0.96);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.contact-map-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.contact-map-modal.is-open {
    display: flex;
}

.contact-map-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 10, 25, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-map-modal-content {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    height: min(700px, 82vh);
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.contact-map-modal-close {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    z-index: 5;
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.contact-map-body-lock {
    overflow: hidden;
}
/* INNOSCIENTICA CONTACT MAP - END */

.publisher-marquee {
    --publisher-gap: 1rem;
    width: 100%;
    overflow: hidden;
    padding: 0.35rem 0 1.1rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.publisher-track {
    display: flex;
    width: max-content;
    gap: var(--publisher-gap);
    animation: publisher-scroll 42s linear infinite;
    will-change: transform;
}

.publisher-marquee:hover .publisher-track {
    animation-play-state: paused;
}

.publisher-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--publisher-gap);
    min-width: max-content;
}

.publisher-item {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 86px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: #1e3a8a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.publisher-item img {
    display: block;
    width: auto;
    max-width: 148px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.74;
    transition: filter 240ms ease, opacity 240ms ease;
}

.publisher-item:hover,
.publisher-item:focus-within {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.34);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.publisher-item:hover img,
.publisher-item:focus-within img {
    filter: grayscale(0%);
    opacity: 1;
}

.publisher-item--fallback {
    color: #1e3a8a;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(30, 58, 138, 0.22), rgba(16, 185, 129, 0.26)) border-box;
}

.publisher-item--fallback span {
    color: #0f2e5b;
    font-size: 1.08rem;
    letter-spacing: 0;
}

.data-security-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(3.5rem, 7.4vw, 6.75rem) 0;
    color: #111827;
    background:
        linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(239, 246, 255, 0.94) 48%, rgba(236, 253, 245, 0.84)),
        radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.12), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(16, 185, 129, 0.1), transparent 32%);
}

.data-security-section::before,
.data-security-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.data-security-section::before {
    background-image:
        radial-gradient(circle, rgba(191, 219, 254, 0.18) 1px, transparent 1.4px),
        linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.052) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg width='900' height='420' viewBox='0 0 900 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2310B981' stroke-width='1.1' stroke-opacity='.18'%3E%3Cpath d='M36 306 142 246 252 288 358 198 482 236 596 152 742 194 864 112'/%3E%3Cpath d='M82 116 188 156 306 104 426 158 548 118 690 174 824 138'/%3E%3C/g%3E%3Cg fill='%2393C5FD' fill-opacity='.26'%3E%3Ccircle cx='36' cy='306' r='4'/%3E%3Ccircle cx='142' cy='246' r='3.5'/%3E%3Ccircle cx='252' cy='288' r='3.5'/%3E%3Ccircle cx='358' cy='198' r='4'/%3E%3Ccircle cx='482' cy='236' r='3.5'/%3E%3Ccircle cx='596' cy='152' r='4'/%3E%3Ccircle cx='742' cy='194' r='3.5'/%3E%3Ccircle cx='864' cy='112' r='4'/%3E%3Ccircle cx='82' cy='116' r='3.5'/%3E%3Ccircle cx='188' cy='156' r='3.5'/%3E%3Ccircle cx='306' cy='104' r='3.5'/%3E%3Ccircle cx='426' cy='158' r='4'/%3E%3Ccircle cx='548' cy='118' r='3.5'/%3E%3Ccircle cx='690' cy='174' r='4'/%3E%3Ccircle cx='824' cy='138' r='3.5'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 0 0, 0 0, 0 0, center;
    background-size: 30px 30px, 72px 72px, 72px 72px, min(900px, 94vw) auto;
    background-repeat: repeat, repeat, repeat, no-repeat;
    opacity: 0.42;
    animation: data-security-drift 18s ease-in-out infinite alternate;
}

.data-security-section::after {
    background:
        radial-gradient(circle at 50% 44%, rgba(16, 185, 129, 0.14), transparent 32%),
        radial-gradient(circle at 74% 86%, rgba(59, 130, 246, 0.16), transparent 28%);
    opacity: 0.72;
    animation: data-security-glow 20s ease-in-out infinite alternate;
}

.data-security-section > .max-w-7xl {
    position: relative;
    z-index: 2;
}

.data-security-header {
    max-width: 800px;
    margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
    text-align: center;
}

.data-security-header h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: 0;
}

.data-security-header p {
    margin: 1rem auto 0;
    color: #4b5563;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.data-security-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
}

.data-security-section .data-security-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 17rem;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: clamp(1.25rem, 2.5vw, 1.55rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
    box-shadow: 0 22px 54px rgba(3, 18, 35, 0.26);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.data-security-section .data-security-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(147, 197, 253, 0.16), transparent 36%),
        radial-gradient(circle at 88% 12%, rgba(16, 185, 129, 0.16), transparent 30%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.data-security-section .data-security-card:hover,
.data-security-section .data-security-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.36);
    background-color: rgba(255, 255, 255, 0.045);
    box-shadow: 0 26px 62px rgba(3, 18, 35, 0.34), 0 0 32px rgba(16, 185, 129, 0.12);
}

.data-security-section .data-security-card:hover::before,
.data-security-section .data-security-card:focus-within::before {
    opacity: 1;
}

.data-security-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 3.35rem;
    height: 3.35rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.92), rgba(16, 185, 129, 0.78));
    box-shadow: 0 14px 34px rgba(3, 18, 35, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.data-security-section .data-security-card:hover .data-security-icon,
.data-security-section .data-security-card:focus-within .data-security-icon {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(3, 18, 35, 0.3), 0 0 24px rgba(16, 185, 129, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.data-security-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.data-security-section .data-security-card h3 {
    position: relative;
    z-index: 1;
    margin: 1.2rem 0 0;
    color: #1E3A8A;
    font-size: clamp(1.08rem, 1.4vw, 1.2rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
}

.data-security-section .data-security-card p {
    position: relative;
    z-index: 1;
    margin: 0.75rem 0 0;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.65;
}

.data-security-motif {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: min(42rem, 88vw);
    transform: translate(-50%, -50%);
    color: #bfdbfe;
    opacity: 0.11;
    pointer-events: none;
}

.data-security-motif svg {
    width: 100%;
    height: auto;
}

.data-security-motif path,
.data-security-motif rect {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.data-security-motif circle {
    fill: #10b981;
}

.data-security-motif-line {
    stroke-width: 2;
}

.data-security-motif-shield {
    stroke-width: 3;
}

.data-security-motif-lock {
    stroke-width: 2.5;
}

@keyframes publisher-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - (var(--publisher-gap) / 2)), 0, 0);
    }
}

@keyframes data-security-drift {
    from {
        background-position: 0 0, 0 0, 0 0, center;
    }

    to {
        background-position: 16px 12px, 24px 18px, 18px 24px, 50% 53%;
    }
}

@keyframes data-security-glow {
    from {
        opacity: 0.58;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0.82;
        transform: translate3d(0, -1.2rem, 0);
    }
}

.google-review-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.google-review-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: none;
    opacity: 0;
}

.google-review-section > .max-w-7xl {
    position: relative;
    z-index: 1;
}

.google-review-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.google-review-rating-panel {
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: 8px;
    padding: 1.25rem;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.google-review-score {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    color: #111827;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
}

.google-review-stars {
    color: #fbbc04;
    font-size: 1.15rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.google-review-count {
    margin-top: 0.65rem;
    color: #4b5563;
    font-size: 0.98rem;
    font-weight: 600;
}

.google-review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.google-review-actions[hidden] {
    display: none;
}

.google-review-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.google-review-action:hover,
.google-review-action:focus-visible {
    transform: translateY(-2px);
}

.google-review-action--primary {
    color: #ffffff;
    background: #1e3a8a;
}

.google-review-action--primary:hover,
.google-review-action--primary:focus-visible {
    background: #172554;
}

.google-review-action--secondary {
    color: #1e3a8a;
    border: 1px solid rgba(30, 58, 138, 0.2);
    background: #ffffff;
}

.google-review-action--secondary:hover,
.google-review-action--secondary:focus-visible {
    border-color: rgba(16, 185, 129, 0.45);
    color: #047857;
}

.google-review-showcase {
    margin-top: 1rem;
}

.google-review-kicker {
    margin-bottom: 1.1rem;
    color: #1e3a8a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
}

.google-review-carousel {
    --google-review-gap: 1.25rem;
    position: relative;
}

.google-review-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0.35rem 0 1.1rem;
}

.google-review-track {
    display: flex;
    width: 100%;
    gap: var(--google-review-gap);
    transition: transform 650ms ease;
    will-change: transform;
}

.google-review-carousel.is-paused .google-review-track {
    transition-duration: 0ms;
}

.google-review-track.is-resetting {
    transition-duration: 0ms;
}

.review-image-card {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: clamp(260px, 42vw, 340px);
    margin: 0;
    padding: 0.8rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-image-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
}

.review-image-button {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.review-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.google-review-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.google-review-nav {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 58, 138, 0.14);
    border-radius: 9999px;
    color: #1e3a8a;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.google-review-nav:hover,
.google-review-nav:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.34);
    color: #047857;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.google-review-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    max-width: min(620px, 100%);
}

.google-review-dot {
    width: 0.58rem;
    height: 0.58rem;
    border: 0;
    border-radius: 9999px;
    padding: 0;
    background: rgba(30, 58, 138, 0.24);
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease;
}

.google-review-dot:hover,
.google-review-dot:focus-visible {
    transform: scale(1.25);
    background: rgba(16, 185, 129, 0.72);
}

.google-review-dot.is-active {
    background: #1e3a8a;
}

.google-review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.google-review-lightbox.is-open {
    display: flex;
}

.google-review-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 10, 25, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.google-review-lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(1000px, 94vw);
    max-height: 85vh;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1rem;
    background: #202124;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.google-review-lightbox-content img {
    display: block;
    width: 100%;
    max-height: calc(85vh - 2rem);
    object-fit: contain;
}

.google-review-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9999px;
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.google-review-lightbox-lock {
    overflow: hidden;
}

.policy-hero {
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(236, 253, 245, 0.86)),
        radial-gradient(circle at top left, rgba(30, 58, 138, 0.12), transparent 30%);
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}

.policy-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 600;
}

.policy-breadcrumb a {
    color: #1e3a8a;
    transition: color 180ms ease;
}

.policy-breadcrumb a:hover,
.policy-breadcrumb a:focus-visible {
    color: #047857;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.policy-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 9999px;
    padding: 0.45rem 0.8rem;
    color: #065f46;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.policy-shell {
    background: #f9fafb;
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
}

.policy-toc {
    position: sticky;
    top: 5.25rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    scrollbar-color: rgba(30, 58, 138, 0.28) transparent;
    scrollbar-width: thin;
}

.policy-toc::-webkit-scrollbar {
    width: 0.45rem;
}

.policy-toc::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.26);
}

.policy-toc h2 {
    margin-bottom: 0.75rem;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.policy-toc-hint {
    margin: -0.35rem 0 0.85rem;
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.4;
}

.policy-toc ol {
    display: grid;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-toc a {
    display: block;
    position: relative;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    padding: 0.48rem 0.65rem 0.48rem 0.75rem;
    color: #4b5563;
    font-size: 0.88rem;
    line-height: 1.35;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
    border-color: #10b981;
    color: #1e3a8a;
}

.policy-toc a.is-active {
    border-left-color: #1e3a8a;
    color: #0f2e5b;
    background: rgba(30, 58, 138, 0.08);
    font-weight: 800;
}

.policy-document {
    width: 100%;
    min-width: 0;
    max-width: 920px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    padding: clamp(1.35rem, 4vw, 3rem);
    color: #1f2937;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    font-size: 1rem;
    line-height: 1.78;
    overflow-wrap: anywhere;
}

.policy-info-panel {
    margin-bottom: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    padding: 1rem 1.15rem;
    background: #f8fafc;
}

.policy-info-label {
    margin: 0;
    color: #1e3a8a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.policy-info-title {
    margin: 0.45rem 0 0;
    color: #111827;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 800;
    line-height: 1.25;
}

.policy-info-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.policy-info-dates span {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    color: #065f46;
    background: rgba(16, 185, 129, 0.1);
    font-size: 0.86rem;
    font-weight: 700;
}

.policy-section {
    scroll-margin-top: 7.5rem;
}

.policy-document.reveal,
.policy-document.reveal.reveal-visible {
    opacity: 1;
    transform: none;
}

.policy-document h2,
.policy-document h3 {
    scroll-margin-top: 7rem;
}

.policy-document h2 {
    margin-top: 2.1rem;
    margin-bottom: 0.8rem;
    color: #1e3a8a;
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    font-weight: 800;
    line-height: 1.3;
}

.policy-document h2:first-child {
    margin-top: 0;
}

.policy-section:first-of-type h2 {
    margin-top: 0;
}

.policy-document h3 {
    margin-top: 1.35rem;
    margin-bottom: 0.45rem;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
}

.policy-document p,
.policy-document ul,
.policy-document ol,
.policy-document address {
    margin-top: 0.85rem;
}

.policy-document ul,
.policy-document ol {
    padding-left: 1.35rem;
}

.policy-document li {
    margin-top: 0.3rem;
    padding-left: 0.2rem;
}

.policy-important-notice,
.policy-source-notice {
    margin-top: 2rem;
    border-left: 4px solid #10b981;
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
    background: rgba(16, 185, 129, 0.08);
}

.policy-important-notice h2,
.policy-source-notice h2 {
    margin-top: 0;
}

.policy-important-notice h2 {
    color: #0f2e5b;
}

.policy-source-notice {
    border-left-color: #1e3a8a;
    background: rgba(30, 58, 138, 0.07);
}

.policy-document a {
    color: #1e3a8a;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.policy-document a:hover,
.policy-document a:focus-visible {
    color: #047857;
}

.policy-back-top {
    display: inline-flex;
    margin-top: 2rem;
    color: #1e3a8a;
    font-size: 0.95rem;
    font-weight: 800;
}

.policy-reading-progress {
    position: fixed;
    top: 4rem;
    left: 0;
    z-index: 45;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.policy-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #1e3a8a, #10b981);
    transition: transform 120ms ease;
}

.footer-legal-links {
    display: grid;
    gap: 0.5rem;
    align-items: start;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
}

/* INNOSCIENTICA SERVICES ARCHITECTURE - START */
.service-hero-shell {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(30, 58, 138, 0.98) 0%, rgba(30, 64, 175, 0.94) 56%, rgba(6, 95, 70, 0.9) 100%);
}

.service-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.28;
}

.service-hero-kicker,
.service-index-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    padding: 0.38rem 0.8rem;
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-hero-image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
}

.service-hero-image-card img {
    display: block;
    width: 100%;
    height: clamp(260px, 34vw, 430px);
    object-fit: cover;
}

.service-section-heading {
    max-width: 760px;
}

.service-section-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.7rem;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-hero-shell .grid > *,
.service-card-grid > *,
.service-process-grid > * {
    min-width: 0;
}

.service-card {
    height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.service-card h3 {
    margin: 0 0 0.55rem;
    color: #0f2e5b;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.35;
}

.service-card p {
    margin: 0;
    color: #475569;
    line-height: 1.62;
}

.service-hero-shell h1,
.service-section-heading h2,
.service-card h3,
.service-faq-button span:first-child,
.related-service-card strong {
    overflow-wrap: anywhere;
}

.service-context-tagline {
    margin: 0.75rem 0 0;
    color: #0f2e5b;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.55;
}

.service-challenge-card {
    border-left: 4px solid #1e3a8a;
    background: #f8fbff;
}

.service-challenge-card:nth-child(even) {
    border-left-color: #10b981;
    background: #f4fdfa;
}

.service-solution-card {
    border-top: 4px solid #10b981;
}

.service-deliverable-card {
    border-top: 4px solid #1e3a8a;
    background: #f8fafc;
}

.service-benefit-card {
    border-top: 4px solid #10b981;
    background: #ffffff;
}

.service-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-process-step {
    position: relative;
    z-index: 1;
    min-height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.11);
    border-radius: 8px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.service-process-number {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0.9rem;
    color: #ffffff;
    background: #1e3a8a;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
}

.service-process-step:nth-child(even) .service-process-number {
    background: #10b981;
}

.service-process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: #0f2e5b;
    font-weight: 800;
    line-height: 1.5;
}

.service-process-flow span:nth-child(even) {
    color: #047857;
}

.service-support-image {
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    background: #f8fafc;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.service-support-image img {
    display: block;
    width: 100%;
    height: clamp(220px, 28vw, 340px);
    object-fit: cover;
}

.service-faq-list {
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.service-faq-item + .service-faq-item {
    border-top: 1px solid #e5e7eb;
}

.service-faq-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    padding: 1.1rem 1.25rem;
    color: #111827;
    background: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;
}

.service-faq-button:hover,
.service-faq-button:focus-visible,
.service-faq-item.is-open .service-faq-button {
    color: #1e3a8a;
}

.service-faq-icon {
    display: inline-flex;
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #ffffff;
    background: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #475569;
    line-height: 1.68;
    transition: max-height 240ms ease, padding 240ms ease;
}

.service-faq-answer p {
    margin: 0;
    padding: 0 1.25rem;
}

.service-faq-item.is-open .service-faq-answer {
    max-height: 20rem;
    padding-bottom: 1.15rem;
}

.related-service-card {
    display: block;
    height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: 8px;
    padding: 1.2rem;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.related-service-card:hover,
.related-service-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.36);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.related-service-card span {
    display: block;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.related-service-card strong {
    display: block;
    margin-top: 0.45rem;
    color: #0f2e5b;
    font-size: 1rem;
    line-height: 1.35;
}

.service-disclaimer {
    border: 1px solid rgba(30, 58, 138, 0.13);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 1.25rem;
    background: #f8fafc;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.service-disclaimer h2 {
    margin: 0 0 0.75rem;
    color: #0f2e5b;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
}

.service-disclaimer p {
    margin: 0;
    color: #475569;
    line-height: 1.68;
}

.service-disclaimer p + p {
    margin-top: 0.8rem;
}

.services-index-card {
    position: relative;
    display: flex;
    min-height: 18rem;
    flex-direction: column;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-top: 4px solid #1e3a8a;
    border-radius: 8px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.services-index-card:nth-child(even) {
    border-top-color: #10b981;
}

.services-index-card:hover,
.services-index-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.services-index-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(219, 234, 254, 0.82);
    font-size: 1.6rem;
    line-height: 1;
}

.services-index-card:nth-child(even) .services-index-icon {
    background: rgba(209, 250, 229, 0.84);
}

.service-category-label {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 1.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    padding: 0.28rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
}

.category-writing {
    color: #1e3a8a;
    background: #dbeafe;
}

.category-research {
    color: #047857;
    background: #dcfce7;
}

.services-index-card h3 {
    margin-bottom: 0.7rem;
    color: #0f2e5b;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
}

.services-index-card p {
    color: #475569;
    line-height: 1.62;
}

.services-index-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: #1e3a8a;
    font-weight: 800;
    line-height: 1;
}

.services-index-link:hover,
.services-index-link:focus-visible {
    color: #047857;
}

.discipline-relevance {
    margin: 0.85rem 0 0;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
}

@media (min-width: 768px) {
    .service-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .service-card-grid.service-card-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-process-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .service-process-grid::before {
        content: "";
        position: absolute;
        top: 2.55rem;
        right: 6%;
        left: 6%;
        height: 2px;
        border-radius: 9999px;
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.14), rgba(16, 185, 129, 0.34), rgba(30, 58, 138, 0.14));
    }
}

@media (max-width: 640px) {
    .service-hero-shell .max-w-7xl,
    .service-hero-shell .grid > *,
    .service-section-heading,
    .service-card,
    .service-process-step,
    .service-faq-button,
    .related-service-card {
        min-width: 0;
        max-width: 100%;
    }

    .service-hero-shell h1 {
        font-size: 2rem;
        line-height: 1.18;
    }

    .service-section-heading h2 {
        font-size: 1.75rem;
        line-height: 1.22;
    }

    .service-hero-shell h1,
    .service-hero-shell p,
    .service-section-heading h2,
    .service-section-heading p,
    .service-context-tagline {
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .service-hero-image-card img,
    .service-support-image img {
        height: 240px;
    }

    .service-faq-button {
        padding: 1rem;
    }

    .service-faq-answer p {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
/* INNOSCIENTICA SERVICES ARCHITECTURE - END */

@keyframes google-review-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - (var(--google-review-gap) / 2)), 0, 0);
    }
}

@media (min-width: 768px) {
    .who-serve-grid {
        max-width: 900px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .data-security-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

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

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

@media (min-width: 1024px) {
    .who-serve-grid {
        max-width: 1120px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .who-serve-card {
        grid-column: span 2;
    }

    .who-serve-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .who-serve-card:nth-child(5) {
        grid-column: 4 / span 2;
    }

    .research-journey-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1rem;
    }

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

    .review-image-card {
        flex-basis: calc((100% - var(--google-review-gap)) / 2);
    }

    .data-security-section .data-security-card {
        min-height: 16rem;
    }

    .research-journey-grid::before {
        content: "";
        position: absolute;
        top: 2.35rem;
        right: 8%;
        left: 8%;
        z-index: 0;
        height: 2px;
        border-radius: 9999px;
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.14), rgba(16, 185, 129, 0.34), rgba(30, 58, 138, 0.14));
    }

    .journey-card {
        min-height: 17rem;
        padding: 1.15rem;
    }
}

@media (min-width: 1180px) {
    .data-security-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .contact-map-card {
        height: 260px;
    }

    .google-review-summary {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .google-review-rating-panel {
        max-width: 420px;
    }

    .review-image-card {
        height: clamp(250px, 56vw, 320px);
    }

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

    .policy-toc {
        position: static;
        max-height: 20rem;
    }
}

@media (max-width: 640px) {
    .contact-map-section {
        margin-top: 1.5rem;
    }

    .contact-map-card {
        height: 230px;
        border-radius: 14px;
    }

    .contact-map-expand {
        padding: 0.75rem;
    }

    .contact-map-expand span {
        min-height: 2.35rem;
        padding: 0.6rem 0.85rem;
        font-size: 0.82rem;
    }

    .contact-map-modal {
        padding: 0.75rem;
    }

    .contact-map-modal-content {
        width: 94vw;
        height: 70vh;
        border-radius: 14px;
    }

    .publisher-marquee {
        --publisher-gap: 0.75rem;
        padding-bottom: 0.85rem;
    }

    .publisher-item {
        width: 144px;
        height: 74px;
        padding: 0.85rem;
        font-size: 0.875rem;
    }

    .publisher-item img {
        max-width: 116px;
        max-height: 38px;
    }

    .publisher-item--fallback span {
        font-size: 0.95rem;
    }

    .google-review-carousel {
        --google-review-gap: 0.85rem;
    }

    .google-review-viewport {
        padding-bottom: 0.8rem;
    }

    .google-review-rating-panel {
        width: 100%;
        max-width: none;
    }

    .review-image-card {
        height: clamp(220px, 62vw, 270px);
        padding: 0.5rem;
    }

    .data-security-section {
        padding-top: 3.75rem;
        padding-bottom: 4rem;
    }

    .data-security-section .data-security-card {
        min-height: 0;
    }

    .policy-meta {
        gap: 0.55rem;
    }

    .policy-meta span {
        width: 100%;
        justify-content: center;
    }

    .policy-document {
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .policy-toc {
        max-height: 16rem;
    }

    .policy-info-dates span {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-phrase {
        display: none;
    }

    .hero-statement-static {
        display: block;
    }

    .reveal,
    .reveal.reveal-visible {
        opacity: 1;
        transform: none;
    }

    .motion-card:hover,
    .who-serve-card:hover,
    .who-serve-card:focus-within,
    .data-security-section .data-security-card:hover,
    .data-security-section .data-security-card:focus-within,
    .data-security-section .data-security-card:hover .data-security-icon,
    .data-security-section .data-security-card:focus-within .data-security-icon,
    .discipline-card:hover,
    .discipline-card:focus-within,
    .journey-card:hover,
    .journey-card:focus-within,
    .research-journey-cta:hover,
    .research-journey-cta:focus-visible,
    .google-review-nav:hover,
    .google-review-nav:focus-visible,
    .contact-map-expand:hover span,
    .contact-map-expand:focus-visible span,
    .footer-social-link:hover,
    .footer-social-link:focus-visible {
        transform: none;
    }

    .policy-reading-progress span,
    .policy-toc a {
        transition: none;
    }

    .publisher-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .publisher-track {
        width: 100%;
        flex-wrap: wrap;
        animation: none !important;
        transform: none;
        will-change: auto;
    }

    .publisher-group {
        min-width: 0;
        flex-wrap: wrap;
    }

    .publisher-group[aria-hidden="true"] {
        display: none;
    }

    .scientific-disciplines-section::before {
        animation: none;
    }

    .data-security-section::before,
    .data-security-section::after {
        animation: none;
        transform: none;
    }

    .google-review-track {
        transition: none;
        transform: none;
        will-change: auto;
    }

    .review-image-card:hover {
        transform: none;
    }
}

@media print {
    nav,
    footer,
    .policy-reading-progress,
    .policy-breadcrumb,
    .policy-toc,
    .policy-back-top {
        display: none !important;
    }

    body,
    .policy-shell,
    .policy-hero,
    .policy-document {
        background: #ffffff !important;
        box-shadow: none !important;
    }

    .policy-hero {
        border-bottom: 1px solid #111827;
        padding: 0 0 1rem !important;
    }

    .policy-shell {
        padding: 1rem 0 0 !important;
    }

    .policy-layout,
    .policy-document {
        display: block;
        max-width: none;
        border: 0;
        padding: 0;
    }

    .policy-document {
        color: #111827;
        font-size: 11pt;
        line-height: 1.55;
    }

    .policy-document a {
        color: #111827;
        text-decoration: none;
    }
}
