:root {
    --bg: #ffffff;
    --ink: #12181c;
    --muted: #536069;
    --line: #dfe6e3;
    --soft: #f3f7f5;
    --soft-2: #eaf1ee;
    --dark: #0c1113;
    --dark-2: #121a1d;
    --green: #00a85a;
    --green-dark: #007a43;
    --teal: #0f766e;
    --amber: #d69a22;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(10, 18, 22, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

p {
    color: var(--muted);
}

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

.narrow {
    max-width: 860px;
}

.center {
    text-align: center;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 16px;
}

.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;
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 250, 0.92));
    border-bottom: 1px solid rgba(223, 230, 227, 0.9);
    box-shadow: 0 10px 28px rgba(18, 24, 28, 0.05);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-grid;
    align-items: start;
    width: max-content;
    max-width: 62vw;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
}

.logo-main {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    font-size: 29px;
    font-weight: 700;
    line-height: 0.92;
}

.logo-informatyk {
    color: var(--green);
    font-weight: 700;
}

.logo-gdansk {
    color: var(--ink);
    font-weight: 700;
}

.logo-subline {
    display: inline-block;
    justify-self: end;
    margin-top: 3px;
    color: var(--green-dark);
    font-size: 8.5px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list > li:nth-child(2),
.nav-list > li:nth-child(3),
.nav-list > li:nth-child(4) {
    margin-left: 4px;
    padding-left: 9px;
    border-left: 1px solid rgba(112, 130, 121, 0.22);
}

.nav-link,
.mega-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: #26352e;
    font: inherit;
    font-size: 16px;
    font-weight: 750;
    border-radius: var(--radius);
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--green-dark);
    background: #edf8f2;
    box-shadow: inset 0 0 0 1px rgba(0, 168, 90, 0.08);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid rgba(0, 168, 90, 0.18);
    border-radius: var(--radius);
    background: rgba(0, 168, 90, 0.07);
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-phone .icon {
    width: 19px;
    height: 19px;
}

.nav-phone:hover,
.nav-phone:focus-visible {
    border-color: rgba(0, 168, 90, 0.38);
    background: rgba(0, 168, 90, 0.12);
    color: var(--green-dark);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.nav-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--green) 0%, #07804a 100%);
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(0, 168, 90, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: linear-gradient(135deg, #07804a 0%, var(--dark) 100%);
}

.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% - 18px);
    transform: translateX(-50%) translateY(8px);
    width: min(1120px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(223, 230, 227, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(18, 24, 28, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 22px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-hover .mega-menu,
.has-mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-intro {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(0, 168, 90, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(244, 250, 247, 0.98), rgba(237, 248, 242, 0.92));
    color: var(--ink);
}

.mega-intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--green);
}

.mega-intro strong {
    position: relative;
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 19px;
}

.mega-intro p {
    position: relative;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

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

.mega-link {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.mega-link .icon {
    color: var(--green);
}

.mega-link strong,
.mega-link small {
    display: block;
}

.mega-link small {
    color: var(--muted);
    font-size: 13px;
}

.mega-link:hover,
.mega-link:focus-visible,
.mega-link.is-active {
    border-color: rgba(0, 168, 90, 0.35);
    background: var(--soft);
}

.hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-home {
    min-height: 650px;
}

.hero-contact {
    min-height: 390px;
}

.hero-contact .hero-content {
    padding: 54px 0;
}

.hero-contact .hero-content .breadcrumbs {
    margin-bottom: 22px;
}

.hero-contact .lead {
    max-width: 820px;
    margin-bottom: 0;
}

.hero-contact .hero-badges {
    margin-top: 22px;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 12, 14, 0.94) 0%, rgba(8, 12, 14, 0.82) 42%, rgba(8, 12, 14, 0.42) 100%),
        linear-gradient(0deg, rgba(8, 12, 14, 0.18), rgba(8, 12, 14, 0.18));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 88px 0;
    color: var(--white);
}

.hero-content .breadcrumbs {
    margin-bottom: 34px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
}

.hero .eyebrow {
    color: #6af0ad;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 1.08;
}

.hero .lead {
    max-width: 760px;
    margin-bottom: 28px;
    color: #e2ebe7;
    font-size: 20px;
}

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

.btn-primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.hero-badges li {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: #edf8f2;
    background: rgba(0, 0, 0, 0.18);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #cbd8d2;
    font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #7f9188;
}

.breadcrumbs a {
    color: #e6f2ed;
}

.section {
    padding: 88px 0;
}

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

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

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

.section-dark p,
.section-dark .check-list li {
    color: #d5dfda;
}

.section-heading {
    max-width: 940px;
    margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.form-heading h2 {
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.16;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: start;
}

.split-media {
    align-items: center;
}

.content-copy p:last-child,
.section-heading p:last-child {
    margin-bottom: 0;
}

.section-follow {
    margin-top: 34px;
}

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

.client-type-item {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    box-shadow: 0 8px 24px rgba(18, 24, 28, 0.04);
}

.section-image {
    width: 100%;
    aspect-ratio: 15 / 8;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #87efb8;
    font-weight: 800;
}

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

.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 11px;
    width: 5px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

.card-grid,
.service-grid,
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card,
.service-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.info-card h2,
.info-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.25;
}

.info-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
}

.card-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: var(--radius);
    color: var(--green);
    background: rgba(0, 168, 90, 0.1);
}

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

.practice-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18, 24, 28, 0.05);
}

.practice-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.25;
}

.practice-card p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.58;
}

.compact-list {
    gap: 9px;
}

.compact-list li {
    font-size: 15px;
    line-height: 1.45;
}

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

.signal-item {
    position: relative;
    min-height: 104px;
    padding: 18px 18px 18px 52px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.45;
    box-shadow: 0 10px 28px rgba(18, 24, 28, 0.04);
}

.signal-item::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 168, 90, 0.14);
}

.signal-item::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 26px;
    width: 5px;
    height: 8px;
    border-right: 2px solid var(--green-dark);
    border-bottom: 2px solid var(--green-dark);
    transform: rotate(45deg);
}

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

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

.service-card {
    display: grid;
    align-content: start;
    gap: 10px;
    color: var(--ink);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 168, 90, 0.4);
    box-shadow: var(--shadow);
}

.service-card-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.service-card-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.service-card-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--green-dark);
    font-weight: 800;
}

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

.process-step {
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

.section-muted .process-step,
.section-light .process-step {
    background: var(--white);
    border-color: var(--line);
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--green);
    font-weight: 800;
}

.process-step p {
    margin: 0;
}

.section-dark .process-step p {
    color: #e7f0ec;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 800;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
}

.contact-band {
    background: linear-gradient(135deg, #f8fbf9 0%, #e9f4ef 100%);
}

.contact-main-section {
    padding-top: 64px;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: start;
}

.contact-details-panel {
    position: sticky;
    top: 102px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(18, 24, 28, 0.06);
}

.contact-details-panel h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.16;
}

.contact-detail-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 5px 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfdfc;
    color: var(--ink);
}

.contact-detail-item span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(0, 168, 90, 0.1);
    color: var(--green-dark);
}

.contact-detail-item strong {
    font-size: 15px;
    line-height: 1.2;
}

.contact-detail-item em {
    color: var(--muted);
    font-style: normal;
    font-size: 15px;
    line-height: 1.35;
}

.contact-detail-item:hover,
.contact-detail-item:focus-visible {
    border-color: rgba(0, 168, 90, 0.28);
}

.contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.contact-cta h2 {
    max-width: 760px;
}

.contact-cta p:not(.eyebrow) {
    max-width: 820px;
}

.contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.contact-inline a {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-dark);
    font-weight: 800;
}

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

.form-heading {
    margin-bottom: 22px;
}

.form-heading h2 {
    font-size: 28px;
}

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

.form-wide {
    grid-column: 1 / -1;
}

.contact-form label span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.contact-form label span em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 12px;
    background: var(--soft);
    color: var(--ink);
    font: inherit;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(0, 168, 90, 0.18);
    border-color: var(--green);
    background: var(--white);
}

.consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    margin: 18px 0;
    align-items: start;
}

.consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.consent span {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
}

.turnstile-box {
    min-height: 65px;
    margin: 10px 0 18px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--radius);
}

.form-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.form-alert-success {
    color: #0d3d26;
    background: #dff6e9;
    border: 1px solid #9ae0ba;
}

.form-alert-error {
    color: #5a1717;
    background: #ffe8e8;
    border: 1px solid #f1b8b8;
}

.large-cta {
    align-self: center;
    justify-self: start;
}

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 168, 90, 0.18), transparent 34%),
        linear-gradient(135deg, #0b1716 0%, #101f20 100%);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 0.9fr;
    gap: 32px;
    padding: 58px 0;
}

.site-footer .logo {
    margin-bottom: 18px;
}

.site-footer .logo-gdansk {
    color: var(--white);
}

.site-footer p,
.site-footer li,
.company-details {
    color: #c8d4ce;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(134, 239, 184, 0.26);
    border-radius: var(--radius);
    background: rgba(0, 168, 90, 0.1);
    color: #86efb8;
    font-size: 14px;
    font-weight: 800;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible {
    border-color: rgba(134, 239, 184, 0.48);
    background: rgba(0, 168, 90, 0.16);
    color: var(--white);
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 16px;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.company-details {
    display: grid;
    gap: 7px;
    font-style: normal;
}

.company-details strong {
    color: var(--white);
    font-weight: 800;
}

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

.footer-contact-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    align-items: center;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.footer-contact-card span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(0, 168, 90, 0.14);
    color: #86efb8;
}

.footer-contact-card strong {
    font-size: 14px;
    line-height: 1.25;
}

.footer-contact-card:hover,
.footer-contact-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(134, 239, 184, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.footer-contact-card-static {
    color: var(--white);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #86efb8;
    font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #86efb8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 1120px) {
    .nav-phone {
        display: none;
    }
}

@media (max-width: 1040px) {

    .card-grid,
    .contact-cards,
    .client-type-grid,
    .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 72px;
        left: 14px;
        right: 14px;
        display: none;
        max-height: calc(100vh - 92px);
        overflow: auto;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        align-items: stretch;
    }

    .nav-list > li:nth-child(2),
    .nav-list > li:nth-child(3),
    .nav-list > li:nth-child(4) {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .responsibility-section::after {
        display: none;
    }

    .nav-link,
    .mega-toggle,
    .nav-cta {
        width: 100%;
        justify-content: space-between;
    }

    .nav-cta {
        margin-top: 4px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        margin-top: 10px;
        padding: 12px;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-menu::before {
        display: none;
    }

    .has-mega:hover .mega-menu,
    .has-mega:focus-within .mega-menu {
        display: none;
    }

    .has-mega.is-open .mega-menu {
        display: grid;
        transform: none;
    }

    .mega-grid,
    .service-grid,
    .service-grid-related,
    .contact-cta,
    .contact-main-layout,
    .split {
        grid-template-columns: 1fr;
    }

    .contact-details-panel {
        position: static;
    }

    .hero,
    .hero-home {
        min-height: 610px;
    }

    .hero-content {
        padding: 68px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .lead {
        font-size: 18px;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading h2,
    .split h2 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .logo {
        max-width: 64vw;
    }

    .logo-main {
        font-size: 22px;
    }

    .logo-subline {
        font-size: 7px;
    }

    .hero,
    .hero-home {
        min-height: 590px;
    }

    .hero-contact {
        min-height: 360px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero .lead {
        font-size: 17px;
    }

    .hero-actions,
    .contact-inline {
        align-items: stretch;
        flex-direction: column;
    }

    .btn,
    .contact-inline a {
        width: 100%;
    }

    .card-grid,
    .contact-cards,
    .client-type-grid,
    .process,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .service-card,
    .contact-form {
        padding: 20px;
    }

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

    .footer-bottom .container {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }
}

/* Firma-first refresh */
body {
    background: #fbfdfc;
}

.mega-columns {
    display: grid;
    gap: 18px;
}

.mega-label {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

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

.mega-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--green-dark);
    font-weight: 800;
}

.mega-intro-link:hover,
.mega-intro-link:focus-visible {
    color: var(--ink);
}

.hero {
    color: var(--ink);
    background: #eef7f2;
}

.hero-image {
    opacity: 0.48;
    object-position: center right;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(248, 252, 250, 0.96) 0%, rgba(248, 252, 250, 0.82) 46%, rgba(248, 252, 250, 0.38) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
}

.hero .eyebrow {
    color: var(--green-dark);
}

.hero h1 {
    color: var(--ink);
}

.hero .lead {
    color: #405058;
}

.hero .btn-secondary {
    color: var(--ink);
    border-color: #b9cbc4;
    background: rgba(255, 255, 255, 0.74);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
    background: var(--white);
}

.hero-badges li {
    color: var(--ink);
    border-color: #cbdcd5;
    background: rgba(255, 255, 255, 0.82);
}

.hero .breadcrumbs ol {
    color: var(--muted);
}

.hero .breadcrumbs a {
    color: var(--green-dark);
}

.hero-panel {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-panel div {
    position: relative;
    min-height: 178px;
    padding: 30px 26px 26px;
    overflow: hidden;
    border: 1px solid rgba(0, 168, 90, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 250, 0.94) 100%);
    box-shadow: 0 20px 46px rgba(18, 24, 28, 0.12);
}

.hero-panel div::before {
    content: "01";
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(0, 122, 67, 0.18);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.hero-panel div:nth-child(2)::before {
    content: "02";
}

.hero-panel div:nth-child(3)::before {
    content: "03";
}

.hero-panel div::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 0;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--green), var(--teal));
}

.hero-panel strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 82%;
    color: var(--ink);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.25;
}

.hero-panel p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: #4e626a;
    font-size: 18px;
    line-height: 1.55;
}

.split-company {
    align-items: center;
}

.assurance-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18, 24, 28, 0.06);
}

.assurance-panel h3 {
    margin-bottom: 18px;
    font-size: 22px;
}

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

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.value-column {
    position: relative;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(18, 24, 28, 0.07);
}

.value-column::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--green);
}

.value-column-pains::before {
    background: #e3a32d;
}

.value-column-outcomes::before {
    background: var(--green);
}

.value-column-label {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.value-column-pains .value-column-label {
    color: #8a5a09;
}

.value-column h3 {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.18;
}

.value-list {
    display: grid;
    gap: 14px;
}

.value-card {
    padding: 18px 18px 18px 20px;
    border: 1px solid rgba(18, 24, 28, 0.08);
    border-radius: var(--radius);
    background: #fbfdfc;
}

.value-card h4 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 850;
    line-height: 1.3;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.value-answer-layout {
    align-items: center;
}

.value-answer .split h2 {
    max-width: 560px;
}

.value-mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.value-mini-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid rgba(0, 168, 90, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
}

.value-solution-grid {
    display: grid;
    gap: 14px;
}

.value-solution-card {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(18, 24, 28, 0.06);
}

.value-solution-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-bottom: 14px;
    padding: 8px 10px;
    border-radius: var(--radius);
    background: rgba(0, 168, 90, 0.1);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.value-solution-card h3 {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.25;
}

.value-solution-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

.core-service-grid,
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

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

.responsibility-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, var(--white) 0%, var(--white) 62%, rgba(237, 248, 242, 0.72) 100%);
}

.responsibility-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 390px;
    height: 796px;
    background: url("/assets/img/section-circuit-mark.png") center / contain no-repeat;
    filter: brightness(0) saturate(100%) invert(42%) sepia(83%) saturate(1097%) hue-rotate(111deg) brightness(86%) contrast(101%);
    opacity: 0.3;
    pointer-events: none;
    transform: translateY(-50%);
}

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

.core-service-card {
    min-height: 300px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(18, 24, 28, 0.05);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.core-service-card:hover,
.core-service-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 168, 90, 0.32);
    box-shadow: var(--shadow);
}

.core-service-title {
    color: var(--ink);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.25;
}

.core-service-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
}

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

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

.trust-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(18, 24, 28, 0.05);
}

.trust-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.25;
}

.trust-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
}

.trust-break {
    background:
        radial-gradient(circle at 16% 14%, rgba(0, 168, 90, 0.24), transparent 32%),
        linear-gradient(135deg, #0d1d1b 0%, #14292b 58%, #10201e 100%);
}

.trust-break::after {
    opacity: 0.08;
}

.trust-break .eyebrow {
    color: #8cf0bc;
}

.trust-break .section-heading h2 {
    color: var(--white);
}

.trust-break .section-heading p {
    color: #e3eee9;
}

.trust-break .trust-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.trust-break .trust-card h3 {
    color: var(--white);
}

.trust-break .trust-card p {
    color: #e4eee9;
    font-size: 17px;
    line-height: 1.58;
}

.trust-break .card-icon {
    color: #8cf0bc;
    background: rgba(0, 168, 90, 0.16);
}

.benefit-item {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.benefit-item h3 {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 850;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.58;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10231f 0%, #13292a 100%);
}

.section-dark::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 440px;
    height: 640px;
    background: url("/assets/img/section-circuit-mark.png") center / contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

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

.section-dark .section-image {
    opacity: 0.92;
}

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

.process-step h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.detail-link-list {
    display: grid;
    gap: 10px;
}

.detail-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
}

.detail-link-list a:hover,
.detail-link-list a:focus-visible {
    border-color: rgba(0, 168, 90, 0.32);
    color: var(--green-dark);
}

@media (max-width: 1040px) {
    .value-prop-grid,
    .core-service-grid,
    .service-area-grid,
    .benefit-grid,
    .trust-grid,
    .process-detailed,
    .service-practice-grid,
    .signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .mega-columns,
    .mega-grid-compact {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .value-prop-grid,
    .core-service-grid,
    .service-area-grid,
    .benefit-grid,
    .trust-grid,
    .process-detailed,
    .service-practice-grid,
    .signal-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-panel div {
        min-height: 0;
        padding: 26px 22px 22px;
    }

    .hero-panel div::before {
        top: 18px;
        right: 20px;
        font-size: 36px;
    }

    .hero-panel strong {
        max-width: 100%;
    }

    .value-column {
        padding: 24px 20px 22px;
    }

    .value-column h3 {
        font-size: 23px;
    }

    .value-solution-card {
        padding: 22px;
    }

    .value-solution-card span {
        position: static;
        width: fit-content;
        min-height: 34px;
        justify-content: flex-start;
        margin-bottom: 14px;
    }
}
