@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Roboto+Slab:wght@500;600;700&display=swap');

:root {
    --eikra-primary: #002147;
    --eikra-primary-soft: #0d2f5f;
    --eikra-secondary: #f9b707;
    --eikra-secondary-soft: #ffc82e;
    --eikra-text: #3a4a66;
    --eikra-light: #f4f8ff;
    --eikra-border: #d8e2f2;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--eikra-text);
    background: #eef3fb;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.page-title,
.hero-title,
.cta-title {
    font-family: 'Roboto Slab', serif;
}

main {
    max-width: 1320px;
    box-shadow: 0 10px 36px rgba(8, 29, 76, 0.11);
}

.topbar {
    background: var(--eikra-primary);
    color: #dce8ff;
    font-size: 14px;
}

.topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    gap: 1rem;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-left {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-left li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: #dce8ff;
}

.topbar-left li:first-child {
    padding-left: 0;
}

.topbar-left li:last-child {
    border-right: 0;
    padding-right: 0;
}

.topbar-left i {
    color: var(--eikra-secondary);
    font-size: 0.85rem;
}

.topbar-left a {
    color: #dce8ff;
    text-decoration: none;
}

.topbar-left a:hover {
    color: #ffffff;
}

.topbar-right {
    gap: 0.65rem;
}

.topbar-login {
    color: #dce8ff;
    text-decoration: none;
    padding: 0.25rem 0.35rem;
    font-weight: 500;
}

.topbar-login:hover {
    color: #ffffff;
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.topbar-socials a {
    color: #dce8ff;
    text-decoration: none;
}

.topbar-socials a:hover {
    color: #ffffff;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e3ebf8;
    box-shadow: none;
    max-width: 1320px;
    margin: 0 auto;
}

.header::before {
    display: none;
}

.navbar {
    padding: 0;
}

.header .container {
    max-width: 1320px;
}

.nav-wrapper {
    min-height: 86px;
}

.logo {
    padding-left: 0;
    border-radius: 0.2rem;
}

.logo:hover {
    background: rgba(0, 33, 71, 0.04);
}

.logo-img {
    height: 54px;
}

.logo-text {
    color: var(--eikra-primary);
    font-size: 1.35rem;
    font-weight: 700;
}

.nav-menu {
    gap: 1.3rem;
}

.nav-link {
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2rem 0;
    background: transparent !important;
    position: relative;
}

.nav-link::before {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.35rem;
    height: 2px;
    background: var(--eikra-secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--eikra-primary);
    background: transparent !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.nav-cta {
    background: var(--eikra-secondary);
    color: #1b2e4f;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.2rem;
    box-shadow: none;
    padding: 0.78rem 1.1rem;
    line-height: 1;
    margin-left: 0.3rem;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
    color: #1b2e4f;
    background: var(--eikra-secondary-soft);
    transform: translateY(-1px);
}

.nav-link.nav-cta::after {
    display: none;
}

.hero {
    min-height: 80vh;
    max-height: 980px;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 33, 71, 0.86) 0%, rgba(0, 33, 71, 0.62) 42%, rgba(0, 33, 71, 0.3) 100%);
}

.hero-content {
    margin: 0;
    max-width: 780px;
    text-align: left;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.42rem 0.82rem;
    border-radius: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.11);
    color: #edf4ff;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.76rem;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.7rem, 5.2vw, 4.5rem);
}

.hero-subtitle,
.hero-description {
    color: #eaf2ff;
}

.hero-actions {
    justify-content: flex-start;
    margin-top: 1.3rem;
}

.hero-proof {
    justify-content: flex-start;
    margin-top: 1rem;
}

.hero-proof-item {
    border-radius: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.13);
}

.btn,
.btn-primary {
    border-radius: 0.2rem;
    background: var(--eikra-secondary);
    color: #1a2f51 !important;
    box-shadow: none;
    font-weight: 700;
}

.btn:hover,
.btn-primary:hover {
    background: var(--eikra-secondary-soft);
    color: #1a2f51 !important;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.95);
    color: #ffffff !important;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a2f51 !important;
}

.hero-nav {
    border-radius: 0.2rem;
    width: 50px;
    height: 50px;
}

.hero-dots {
    bottom: 1.8rem;
}

.hero-dot {
    border-radius: 0.15rem;
}

.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    color: var(--eikra-primary);
    font-size: clamp(2rem, 4vw, 2.85rem);
}

.trust-strip {
    position: relative;
    margin-top: -2.8rem;
    z-index: 11;
    background: transparent;
    padding-top: 0;
}

.trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.trust-card {
    background: #ffffff;
    border: 1px solid var(--eikra-border);
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.2rem 1.2rem;
}

.trust-card strong {
    display: block;
    color: var(--eikra-primary);
    font-size: 1.05rem;
    margin-bottom: 0.42rem;
}

.quick-offers {
    background: #ffffff;
    padding-bottom: 2.2rem;
}

.quick-offers + .section {
    padding-top: 2rem;
}

.section.services-overview + .section.why-choose {
    padding-top: 2rem;
}

.section.services-overview {
    padding-bottom: 1.4rem;
}

.section.services-overview .section-intro {
    margin-bottom: 0;
}

.offers-grid {
    margin-top: 1.5rem;
    gap: 1.2rem;
}

.offer-card {
    border-radius: 0.35rem;
    border: 1px solid var(--eikra-border);
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
}

.offer-card.featured {
    border-color: #f3d16b;
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.offer-tag {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--eikra-primary-soft);
}

.offer-price {
    color: var(--eikra-primary);
    font-weight: 700;
}

.offer-points {
    list-style: none;
    margin: 0.9rem 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.offer-points li {
    position: relative;
    padding-left: 1.35rem;
    margin: 0;
    color: #415374;
    line-height: 1.45;
}

.offer-points li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: #138a52;
    font-weight: 700;
}

.eikra-stats {
    background: linear-gradient(120deg, #022957 0%, #103e77 100%);
}

.eikra-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.eikra-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.35rem;
    padding: 1.1rem;
    text-align: center;
}

.eikra-stat-card h3 {
    margin: 0 0 0.3rem 0;
    color: #ffffff;
    font-size: 2rem;
}

.eikra-stat-card p {
    margin: 0;
    color: #dbe8ff;
}

.services-grid,
.features-list,
.values-grid {
    margin-top: 1.5rem;
}

.service-card,
.product-card,
.portfolio-card,
.legal-section,
.contact-form-wrapper,
.contact-info {
    border-radius: 0.35rem;
    border: 1px solid var(--eikra-border);
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
}

.services-grid .service-card,
.services-overview .service-card,
.section .services-grid .service-card {
    border-radius: 0.35rem;
    border: 1px solid var(--eikra-border);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.services-grid .service-card::before,
.services-overview .service-card::before,
.section .services-grid .service-card::before {
    display: none;
}

.services-grid .service-card .service-icon,
.services-overview .service-card .service-icon {
    width: 100%;
    height: 210px;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #f5f9ff 0%, #e8f0fd 100%);
    border-bottom: 1px solid var(--eikra-border);
    color: var(--eikra-primary);
    font-size: 2.6rem;
}

.services-grid .service-card h3,
.services-overview .service-card h3 {
    color: var(--eikra-primary);
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 1.25rem 1.25rem 0.75rem 1.25rem;
}

.services-grid .service-card p,
.services-overview .service-card p {
    color: #5a6d8f;
    padding: 0 1.25rem 1.35rem 1.25rem;
    margin: 0;
    line-height: 1.75;
    flex: 1;
}

.services-grid .service-card:hover,
.services-overview .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(5, 24, 61, 0.14);
}

.service-card:hover,
.product-card:hover,
.portfolio-card:hover,
.legal-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(5, 24, 61, 0.14);
}

.service-card::before,
.product-card::before,
.portfolio-card::before,
.legal-section::before {
    display: none !important;
}

.service-detail-content::before {
    display: none !important;
}

.contact-section .contact-form-wrapper::before,
.contact-section .contact-info::before {
    display: none !important;
}

.service-icon {
    border-radius: 0.3rem;
}

.features-list li {
    border-left: 0;
    border: 1px solid var(--eikra-border);
    border-radius: 0.25rem;
}

.features-list li::before {
    background: rgba(249, 183, 7, 0.18);
    color: var(--eikra-primary);
    content: '\2713';
}

.about-preview .about-content {
    border-radius: 0.35rem;
    border: 1px solid var(--eikra-border);
    background: linear-gradient(180deg, #ffffff 0%, var(--eikra-light) 100%);
}

.cta {
    background: linear-gradient(120deg, #022957 0%, #0f3b76 56%, #1a4e95 100%);
}

.page-header {
    position: relative;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border-bottom: 1px solid #dbe5f4;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 183, 7, 0.15) 0%, rgba(249, 183, 7, 0) 65%);
}

.page-title {
    color: var(--eikra-primary);
}

.page-subtitle {
    color: #5a6d8f;
}

.page-intro {
    max-width: 860px;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.product-image {
    height: 240px;
}

.product-target {
    border-left: 0;
    border: 1px solid var(--eikra-border);
    background: #f8fbff;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.portfolio-header {
    background: linear-gradient(120deg, #f8fbff 0%, #eef5ff 100%);
}

.portfolio-date {
    border: 1px solid var(--eikra-border);
}

.date-icon {
    color: var(--eikra-primary);
}

.portfolio-client {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6d7f9f;
    margin-bottom: 0.42rem;
}

.tag {
    border-radius: 0.2rem;
    background: rgba(2, 33, 71, 0.05);
    border: 1px solid #cfdcf0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2.4rem;
}

.pagination-link {
    display: inline-block;
    padding: 0.68rem 1.15rem;
    border-radius: 0.2rem;
    background: var(--eikra-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.pagination-link:hover {
    background: var(--eikra-primary-soft);
    transform: translateY(-2px);
}

.pagination-info {
    color: #5b6d8d;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 3.6rem 1.2rem;
    border: 1px dashed #bfd0ea;
    border-radius: 0.35rem;
    background: #f8fbff;
}

.contact-section {
    background: #ffffff;
}

.contact-wrapper {
    gap: 1.2rem;
}

.contact-form-wrapper h2,
.contact-info h2 {
    color: var(--eikra-primary);
}

.contact-subtitle {
    color: var(--eikra-primary-soft);
    font-size: 1.05rem;
    margin: 1.25rem 0 0.7rem;
}

.form-group label {
    color: var(--eikra-primary-soft);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    border-radius: 0.2rem;
    border: 1px solid #cfdcef;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--eikra-primary);
    box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.08);
}

.contact-detail-item {
    border-radius: 0.2rem;
    border: 1px solid #d5e1f3;
    background: #f9fbff;
}

.contact-info .contact-detail-item,
.page-contact .contact-detail-item,
.contact-section .contact-detail-item {
    border-radius: 0.25rem;
    border: 1px solid #cfdcf0;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(5, 24, 61, 0.07);
}

.contact-info .contact-detail-item strong {
    color: var(--eikra-primary);
}

.contact-info .contact-detail-item p {
    color: #5a6d8f;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.2rem;
    background: #e7effc;
    color: var(--eikra-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info .contact-icon,
.page-contact .contact-icon,
.contact-section .contact-icon {
    background: #e8f0fd;
    border: 1px solid #d3dff3;
    color: var(--eikra-primary);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.9rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #415374;
    font-weight: 500;
    margin: 0;
}

.option-item input {
    width: auto;
    margin: 0;
}

.footer {
    padding-top: 0;
    background: #061b3c;
}

.footer-newsletter {
    background: linear-gradient(90deg, #0a2a55 0%, #15427f 100%);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-newsletter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-newsletter h3 {
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.footer-newsletter p {
    margin: 0;
    color: rgba(235, 243, 255, 0.88);
}

.footer-newsletter-form {
    display: flex;
    gap: 0.6rem;
    width: min(520px, 100%);
}

.footer-newsletter-form input {
    flex: 1;
    border: 0;
    border-radius: 0.2rem;
    padding: 0.72rem 0.85rem;
    font: inherit;
}

.footer-newsletter-form button {
    border: 0;
    border-radius: 0.2rem;
    padding: 0.72rem 1rem;
    background: var(--eikra-secondary);
    color: #1a2f51;
    font-weight: 700;
    cursor: pointer;
}

.footer-content.footer-content-eikra {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.2rem;
    padding-top: 3.2rem;
    padding-bottom: 2.4rem;
}

.footer h3,
.footer h4 {
    color: #ffffff;
}

.footer p,
.footer-links a,
.footer-bottom {
    color: rgba(233, 241, 255, 0.86);
}

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

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
}

.social-link {
    border-radius: 0.2rem;
}

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

.about-expert-header .page-title {
    margin-bottom: 1.2rem;
}

.about-expert-header .page-intro {
    max-width: 980px;
    margin-bottom: 0.8rem;
}

.about-expert-content {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.about-expert-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-expert-card {
    background: #ffffff;
    border: 1px solid #d9e3f4;
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.4rem;
}

.about-expert-card h2 {
    color: var(--eikra-primary);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.about-expert-card p {
    margin: 0 0 0.75rem;
    color: #475a7b;
    line-height: 1.75;
}

.about-expert-card p:last-child {
    margin-bottom: 0;
}

.about-expert-list {
    list-style: none;
    margin: 0.65rem 0 0.95rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.about-expert-list li {
    position: relative;
    padding-left: 1.3rem;
    color: #415374;
}

.about-expert-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--eikra-secondary);
    font-weight: 700;
}

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

.expertise-header .page-title {
    margin-bottom: 1.1rem;
}

.expertise-header .page-intro {
    max-width: 980px;
    margin-bottom: 0.8rem;
}

.expertise-content {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.expertise-card {
    background: #ffffff;
    border: 1px solid #d9e3f4;
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.4rem;
}

.expertise-card h2 {
    color: var(--eikra-primary);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.expertise-card p {
    margin: 0 0 0.75rem;
    color: #475a7b;
    line-height: 1.75;
}

.expertise-card p:last-child {
    margin-bottom: 0;
}

.expertise-list {
    list-style: none;
    margin: 0.65rem 0 0.95rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.expertise-list li {
    position: relative;
    padding-left: 1.3rem;
    color: #415374;
}

.expertise-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--eikra-secondary);
    font-weight: 700;
}

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

.methodology-header .page-title {
    margin-bottom: 1.1rem;
}

.methodology-header .page-intro {
    max-width: 980px;
    margin-bottom: 0.8rem;
}

.methodology-content {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.methodology-card {
    background: #ffffff;
    border: 1px solid #d9e3f4;
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.4rem;
}

.methodology-card h2 {
    color: var(--eikra-primary);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.methodology-card p {
    margin: 0 0 0.75rem;
    color: #475a7b;
    line-height: 1.75;
}

.methodology-card p:last-child {
    margin-bottom: 0;
}

.methodology-list {
    list-style: none;
    margin: 0.65rem 0 0.95rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.methodology-list li {
    position: relative;
    padding-left: 1.3rem;
    color: #415374;
}

.methodology-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--eikra-secondary);
    font-weight: 700;
}

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

.pricing-header .page-title {
    margin-bottom: 1.1rem;
}

.pricing-header .page-intro {
    max-width: 980px;
    margin-bottom: 0.8rem;
}

.pricing-content {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #d9e3f4;
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.3rem;
}

.pricing-card h2 {
    color: var(--eikra-primary);
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
}

.pricing-card h3 {
    color: var(--eikra-primary-soft);
    font-size: 1rem;
    margin: 0.9rem 0 0.45rem;
}

.pricing-card p {
    margin: 0 0 0.7rem;
    color: #475a7b;
    line-height: 1.7;
}

.pricing-tag {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    color: var(--eikra-primary-soft);
    margin-bottom: 0.45rem;
}

.pricing-price {
    color: var(--eikra-primary);
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.pricing-card-featured {
    border-color: #f3d16b;
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.pricing-list {
    list-style: none;
    margin: 0.45rem 0 0.65rem;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.pricing-list li {
    position: relative;
    padding-left: 1.3rem;
    color: #415374;
}

.pricing-list li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 0;
    color: #138a52;
    font-weight: 700;
}

.pricing-list-soft li::before {
    content: '\2022';
    color: var(--eikra-secondary);
}

.pricing-maintenance {
    margin-top: 1.2rem;
    background: #ffffff;
    border: 1px solid #d9e3f4;
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.3rem;
}

.pricing-maintenance h2 {
    color: var(--eikra-primary);
    margin-bottom: 0.5rem;
}

.pricing-maintenance p {
    color: #475a7b;
}

.projects-header .page-title {
    margin-bottom: 1.1rem;
}

.projects-highlight {
    display: inline-block;
    margin: 0 0 0.9rem;
    padding: 0.38rem 0.78rem;
    border-radius: 0.25rem;
    background: #e9f2ff;
    border: 1px solid #cfdff7;
    color: var(--eikra-primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.projects-header .page-intro {
    max-width: 980px;
    margin-bottom: 0.8rem;
}

.projects-content {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.projects-card {
    background: #ffffff;
    border: 1px solid #d9e3f4;
    border-radius: 0.35rem;
    box-shadow: 0 10px 24px rgba(5, 24, 61, 0.08);
    padding: 1.3rem;
}

.projects-card h2 {
    color: var(--eikra-primary);
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
}

.projects-card h3 {
    color: var(--eikra-primary-soft);
    font-size: 1rem;
    margin: 0.9rem 0 0.45rem;
}

.projects-card p {
    margin: 0 0 0.7rem;
    color: #475a7b;
    line-height: 1.7;
}

.projects-list {
    list-style: none;
    margin: 0.45rem 0 0.65rem;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.projects-list li {
    position: relative;
    padding-left: 1.3rem;
    color: #415374;
}

.projects-list li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 0;
    color: #138a52;
    font-weight: 700;
}

.projects-list-soft li::before {
    content: '\2022';
    color: var(--eikra-secondary);
}

@media (max-width: 1200px) {
    .footer-content.footer-content-eikra {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .topbar .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .trust-strip {
        margin-top: 0;
        padding-top: 2rem;
    }

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

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

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

@media (max-width: 768px) {
    .topbar-left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-left li {
        border-right: 0;
        padding: 0.2rem 0;
    }

    .topbar-right {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-menu {
        top: 76px;
        gap: 0.2rem;
    }

    .nav-link {
        padding: 0.95rem 0.6rem;
    }

    .nav-link::after {
        bottom: 0.35rem;
    }

    .hero {
        min-height: 700px;
    }

    .hero-kicker {
        margin-bottom: 0.7rem;
    }

    .hero-actions {
        width: 100%;
    }

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

    .footer-content.footer-content-eikra {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .eikra-stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

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

    .about-expert-grid {
        grid-template-columns: 1fr;
    }

    .about-expert-card-wide {
        grid-column: auto;
    }

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

    .expertise-card-wide {
        grid-column: auto;
    }

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

    .methodology-card-wide {
        grid-column: auto;
    }

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

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