:root {
    --ergar-primary: #263f78;
    --ergar-primary-dark: #16294f;
    --ergar-secondary: #ef7d00;
    --ergar-secondary-dark: #c95f00;
    --ergar-light: #f5f7fb;
    --ergar-border: #e4e8f0;
    --ergar-text: #1e293b;
    --ergar-muted: #64748b;
    --ergar-white: #ffffff;
    --ergar-radius: 22px;
    --ergar-shadow: 0 20px 50px rgba(26, 48, 91, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ergar-text);
    background: var(--ergar-white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.topbar {
    color: #fff;
    background: var(--ergar-primary-dark);
    font-size: .92rem;
}

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

.site-navbar {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(38, 63, 120, .08);
    box-shadow: 0 7px 25px rgba(22, 41, 79, .06);
}

.navbar-brand img {
    width: 190px;
    max-height: 72px;
    object-fit: contain;
}

.nav-link {
    color: var(--ergar-primary-dark);
    font-weight: 650;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--ergar-secondary);
}

.btn-ergar {
    color: #fff;
    background: var(--ergar-secondary);
    border: 1px solid var(--ergar-secondary);
    font-weight: 700;
    border-radius: 12px;
    padding: .78rem 1.25rem;
}

.btn-ergar:hover {
    color: #fff;
    background: var(--ergar-secondary-dark);
    border-color: var(--ergar-secondary-dark);
    transform: translateY(-1px);
}

.btn-outline-ergar {
    color: var(--ergar-primary);
    background: #fff;
    border: 1px solid rgba(38, 63, 120, .35);
    font-weight: 700;
    border-radius: 12px;
    padding: .78rem 1.25rem;
}

.btn-outline-ergar:hover {
    color: #fff;
    background: var(--ergar-primary);
    border-color: var(--ergar-primary);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(18, 36, 72, .98), rgba(38, 63, 120, .91)),
        radial-gradient(circle at 80% 20%, rgba(239, 125, 0, .45), transparent 36%);
    padding: 94px 0 88px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    left: 4%;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 60px;
    background: rgba(239, 125, 0, .11);
    transform: rotate(34deg);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .85rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-weight: 700;
    font-size: .92rem;
}

.hero h1 {
    max-width: 760px;
    margin: 1.25rem 0;
    font-size: clamp(2.3rem, 5vw, 4.45rem);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -.045em;
}

.hero p {
    max-width: 690px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.14rem;
}

.hero-panel {
    padding: 30px;
    color: var(--ergar-text);
    background: #fff;
    border-radius: var(--ergar-radius);
    box-shadow: 0 30px 80px rgba(4, 13, 34, .28);
}

.hero-panel-label {
    color: var(--ergar-secondary);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.stat-strip {
    position: relative;
    z-index: 3;
    margin-top: -36px;
}

.stat-card {
    height: 100%;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--ergar-border);
    border-radius: 18px;
    box-shadow: var(--ergar-shadow);
}

.stat-number {
    color: var(--ergar-primary);
    font-weight: 850;
    font-size: 1.6rem;
}

.section {
    padding: 88px 0;
}

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

.section-label {
    display: inline-block;
    margin-bottom: .7rem;
    color: var(--ergar-secondary);
    font-size: .82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--ergar-primary-dark);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 850;
    letter-spacing: -.035em;
}

.section-text {
    color: var(--ergar-muted);
    font-size: 1.06rem;
}

.service-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--ergar-border);
    border-radius: var(--ergar-radius);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 125, 0, .45);
    box-shadow: var(--ergar-shadow);
}

.service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--ergar-secondary), #ff9a35);
    border-radius: 17px;
    font-size: 1.45rem;
    font-weight: 850;
}

.service-card h3 {
    color: var(--ergar-primary-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.service-card p {
    color: var(--ergar-muted);
}

.feature-panel {
    padding: 42px;
    color: #fff;
    background: linear-gradient(135deg, var(--ergar-primary-dark), var(--ergar-primary));
    border-radius: 30px;
    box-shadow: var(--ergar-shadow);
}

.feature-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.feature-check {
    flex: 0 0 34px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: var(--ergar-secondary);
    border-radius: 50%;
    font-weight: 900;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--ergar-border);
    border-radius: var(--ergar-radius);
}

.process-number {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    place-items: center;
    color: #fff;
    background: var(--ergar-primary);
    border-radius: 13px;
    font-weight: 850;
}

.page-hero {
    color: #fff;
    background:
        linear-gradient(120deg, rgba(18, 36, 72, .98), rgba(38, 63, 120, .92)),
        radial-gradient(circle at 80% 10%, rgba(239, 125, 0, .44), transparent 35%);
    padding: 76px 0;
}

.page-hero h1 {
    margin: 0;
    font-weight: 850;
    letter-spacing: -.035em;
}

.content-card,
.contact-card,
.form-card {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--ergar-border);
    border-radius: var(--ergar-radius);
    box-shadow: 0 16px 45px rgba(22, 41, 79, .08);
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: #d9dfeb;
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ergar-secondary);
    box-shadow: 0 0 0 .25rem rgba(239, 125, 0, .12);
}

.cta-box {
    padding: 48px;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(239, 125, 0, .97), rgba(203, 92, 0, .97));
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(239, 125, 0, .22);
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: #111f3d;
    padding: 64px 0 24px;
}

.site-footer h5 {
    color: #fff;
    font-weight: 800;
}

.site-footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

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

.footer-logo {
    width: 190px;
    padding: 10px;
    background: #fff;
    border-radius: 14px;
}

.preview-warning {
    padding: 10px 16px;
    color: #fff;
    background: #a93d00;
    text-align: center;
    font-size: .9rem;
    font-weight: 750;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 10000;
    padding: 10px 14px;
    color: #fff;
    background: #000;
}

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

@media (max-width: 991.98px) {
    .hero {
        padding: 70px 0;
    }

    .hero-panel {
        margin-top: 30px;
    }

    .stat-strip {
        margin-top: 24px;
    }

    .section {
        padding: 64px 0;
    }

    .feature-panel,
    .cta-box {
        padding: 30px;
    }
}

/* ==========================================================
   ERGAR FLOATING WHATSAPP
   ========================================================== */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1080;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 18px 8px 12px;
    color: #fff;
    background: #25d366;
    border: 2px solid rgba(255, 255, 255, .78);
    border-radius: 999px;
    box-shadow:
        0 14px 35px rgba(10, 31, 68, .25),
        0 5px 15px rgba(37, 211, 102, .28);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    color: #fff;
    background: #1fbd59;
    box-shadow:
        0 18px 42px rgba(10, 31, 68, .28),
        0 7px 18px rgba(37, 211, 102, .34);
    transform: translateY(-3px);
}

.floating-whatsapp-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: 0 0 40px;
    color: #25d366;
    background: #fff;
    border-radius: 50%;
}

.floating-whatsapp-icon svg {
    display: block;
}

.floating-whatsapp-label {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 7px;
        justify-content: center;
    }

    .floating-whatsapp-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .floating-whatsapp-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

/* ==========================================================
   ERGAR HOMEPAGE SLIDER
   ========================================================== */

.home-slider {
    position: relative;
    overflow: hidden;
    background: #122b5c;
}

.home-slider .carousel,
.home-slider .carousel-inner,
.home-slider .carousel-item {
    min-height: 620px;
}

.home-slider .carousel-item {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.ergar-slider-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ergar-slider-placeholder {
    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(48, 107, 196, .44),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #162b59 0%,
            #263f78 55%,
            #0d2249 100%
        );
}

.ergar-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(6, 20, 48, var(--ergar-slide-overlay, .55)) 0%,
            rgba(6, 20, 48, calc(var(--ergar-slide-overlay, .55) * .78)) 55%,
            rgba(6, 20, 48, calc(var(--ergar-slide-overlay, .55) * .48)) 100%
        );
}

.ergar-slider-caption {
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
}

.ergar-slider-caption .container {
    width: 100%;
}

.ergar-slider-content {
    max-width: 780px;
    padding: 70px 70px 70px 0;
    color: #fff;
}

.ergar-slider-content h2 {
    max-width: 760px;
    margin: 18px 0;
    color: #fff;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.045em;
}

.ergar-slider-content p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .83);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.75;
}

.ergar-slider-content-center {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    text-align: center;
}

.ergar-slider-content-center h2,
.ergar-slider-content-center p {
    margin-right: auto;
    margin-left: auto;
}

.ergar-slider-content-center .ergar-slider-actions {
    justify-content: center;
}

.ergar-slider-content-right {
    margin-left: auto;
    padding-right: 0;
    text-align: right;
}

.ergar-slider-content-right h2,
.ergar-slider-content-right p {
    margin-left: auto;
}

.ergar-slider-content-right .ergar-slider-actions {
    justify-content: flex-end;
}

.home-slider .carousel-indicators {
    z-index: 4;
    gap: 7px;
    margin-bottom: 25px;
}

.home-slider .carousel-indicators button {
    width: 32px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 999px;
}

.home-slider .carousel-control-prev,
.home-slider .carousel-control-next {
    z-index: 4;
    width: 70px;
}

.home-slider .carousel-control-prev-icon,
.home-slider .carousel-control-next-icon {
    width: 46px;
    height: 46px;
    padding: 11px;
    background-color: rgba(7, 24, 55, .58);
    background-size: 46%;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

@media (max-width: 991.98px) {
    .home-slider .carousel,
    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        min-height: 590px;
    }

    .home-slider .carousel-item {
        height: 590px;
    }

    .ergar-slider-content {
        max-width: 690px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .home-slider .carousel-control-prev,
    .home-slider .carousel-control-next {
        width: 52px;
    }
}

@media (max-width: 767.98px) {
    .home-slider .carousel,
    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        min-height: 650px;
    }

    .home-slider .carousel-item {
        height: 650px;
    }

    .ergar-slider-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 20, 48, calc(var(--ergar-slide-overlay, .55) * .55)) 0%,
                rgba(6, 20, 48, calc(var(--ergar-slide-overlay, .55) * .82)) 48%,
                rgba(6, 20, 48, var(--ergar-slide-overlay, .55)) 100%
            );
    }

    .ergar-slider-caption {
        align-items: flex-end;
    }

    .ergar-slider-content,
    .ergar-slider-content-center,
    .ergar-slider-content-right {
        max-width: none;
        padding: 55px 22px 85px;
        text-align: left;
    }

    .ergar-slider-content h2,
    .ergar-slider-content p {
        margin-right: 0;
        margin-left: 0;
    }

    .ergar-slider-content-center .ergar-slider-actions,
    .ergar-slider-content-right .ergar-slider-actions {
        justify-content: flex-start;
    }

    .ergar-slider-content h2 {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .home-slider .carousel-control-prev,
    .home-slider .carousel-control-next {
        display: none;
    }
}

/* ==========================================================
   ERGAR BLOG FRONTEND
   ========================================================== */

.blog-list-section {
    background: #f5f7fb;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(20, 45, 88, .1);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(18, 42, 84, .08);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eaf0f8;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 24px;
}

.blog-category {
    display: inline-flex;
    padding: 6px 10px;
    color: #17458e;
    background: #eaf1ff;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.blog-card-title {
    margin: 15px 0 11px;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.3;
}

.blog-card-title a {
    color: #122b57;
    text-decoration: none;
}

.blog-card-body p {
    color: #68758a;
    line-height: 1.7;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    font-size: .82rem;
}

.blog-card-meta span {
    color: #7b8799;
}

.blog-card-meta a {
    color: #17458e;
    font-weight: 800;
    text-decoration: none;
}

.blog-post-hero {
    padding: clamp(70px, 9vw, 125px) 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(73, 119, 204, .38),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #112a58 0%,
            #263f78 58%,
            #10234a 100%
        );
}

.blog-post-hero h1 {
    max-width: 960px;
    margin: 18px 0;
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.blog-post-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.blog-post-cover {
    overflow: hidden;
    margin-top: -46px;
    margin-bottom: 0;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(16, 39, 79, .18);
}

.blog-post-cover img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.blog-post-section {
    background: #f5f7fb;
}

.blog-post-content {
    font-size: 1.06rem;
    line-height: 1.9;
}

.blog-post-content p:last-child {
    margin-bottom: 0;
}

.blog-author-card {
    border-left: 4px solid #17458e;
}

/* ERGAR SAFE RICH BLOG CONTENT */

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: 2rem;
    margin-bottom: .9rem;
    color: #122b57;
    font-weight: 900;
    line-height: 1.25;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: .45rem;
}

.blog-post-content blockquote {
    margin: 1.8rem 0;
    padding: 1.2rem 1.4rem;
    color: #344760;
    background: #eef3fb;
    border-left: 4px solid #17458e;
    border-radius: 0 12px 12px 0;
}

.blog-post-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1.8rem auto;
    border-radius: 14px;
}

.blog-post-content pre {
    overflow-x: auto;
    padding: 1.2rem;
    color: #eef3ff;
    background: #10234a;
    border-radius: 12px;
}

.blog-post-content code {
    font-size: .9em;
}

.blog-post-content a {
    color: #17458e;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* ==========================================================
   ERGAR BLOG TOC, FAQ AND RELATED CONTENT
   ========================================================== */

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .64);
    font-size: .82rem;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.blog-toc-card {
    position: sticky;
    top: 105px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(20, 45, 88, .1);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(18, 42, 84, .07);
}

.blog-toc-card strong {
    display: block;
    margin-bottom: 13px;
    color: #122b57;
}

.blog-toc-card nav {
    display: grid;
    gap: 9px;
}

.blog-toc-card a {
    color: #536176;
    font-size: .84rem;
    line-height: 1.45;
    text-decoration: none;
}

.blog-toc-card a:hover {
    color: #17458e;
}

.blog-toc-card .toc-level-3 {
    padding-left: 14px;
    font-size: .79rem;
}

.blog-faq-section {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(20, 45, 88, .1);
    border-radius: 18px;
}

.blog-faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid rgba(20, 45, 88, .08);
    border-radius: 12px;
}

.blog-faq-item summary {
    padding: 17px 18px;
    color: #122b57;
    cursor: pointer;
    font-weight: 850;
}

.blog-faq-item div {
    padding: 0 18px 18px;
    color: #647187;
    line-height: 1.75;
}

.blog-related-section {
    background: #fff;
}

.blog-related-posts-section {
    background: #f5f7fb;
}

.blog-post-content h2,
.blog-post-content h3 {
    scroll-margin-top: 110px;
}

@media (max-width: 991.98px) {
    .blog-toc-card {
        position: static;
    }
}

/* ==========================================================
   ERGAR DYNAMIC HEADER, FOOTER AND SOCIAL
   ========================================================== */

.site-header {
    position: relative;
    z-index: 1040;
}

.site-header .site-navbar:not(.sticky-top) {
    position: relative;
}

.navbar-brand img {
    width: auto;
    max-width: min(190px, 48vw);
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

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

.footer-link-list a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-link-list a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 11px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-social-links a:hover {
    color: #122b57;
    background: #ffc447;
    border-color: #ffc447;
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .site-navbar .navbar-nav {
        align-items: stretch !important;
        padding: 16px 0;
    }

    .site-navbar .nav-link {
        padding: 10px 12px;
        border-radius: 8px;
    }
}


/* ==========================================================
   ERGAR BLOG YOUTUBE RESPONSIVE EMBED
   ========================================================== */

.blog-post-content .ergar-youtube-embed,
.blog-post-content iframe[src^="https://www.youtube-nocookie.com/embed/"] {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 1.75rem 0;
    border: 0;
    border-radius: 16px;
    background: #0b1220;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

@media (max-width: 767.98px) {
    .blog-post-content .ergar-youtube-embed,
    .blog-post-content iframe[src^="https://www.youtube-nocookie.com/embed/"] {
        margin: 1.25rem 0;
        border-radius: 12px;
    }
}


/* ERGAR SALES READY HOME V1 */
.stat-strip-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.home-services-section .service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

.home-services-section .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(16, 32, 51, .14);
}

.service-card-media {
    margin: -1.5rem -1.5rem 1.5rem;
    overflow: hidden;
    background: #e9eef3;
}

.service-card-media img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.045);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    color: var(--ergar-primary, #ef7f1a);
    font-weight: 700;
    text-decoration: none;
}

.service-card-link:hover {
    gap: .7rem;
}

.home-advantage-grid {
    display: grid;
    gap: 1rem;
}

.home-advantages-section .feature-item {
    margin: 0;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 38, 58, .08);
    border-radius: 1.25rem;
    box-shadow: 0 14px 38px rgba(16, 32, 51, .08);
    transition:
        transform .24s ease,
        box-shadow .24s ease;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(16, 32, 51, .14);
}

.home-blog-card-media {
    display: block;
    overflow: hidden;
    background: #e9eef3;
}

.home-blog-card-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    transition: transform .45s ease;
}

.home-blog-card:hover .home-blog-card-media img {
    transform: scale(1.045);
}

.home-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.home-blog-card-meta {
    margin-bottom: .7rem;
    color: #718096;
    font-size: .88rem;
    font-weight: 600;
}

.home-blog-card h3 {
    margin-bottom: .85rem;
    font-size: 1.25rem;
    line-height: 1.35;
}

.home-blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.home-blog-card p {
    margin-bottom: 1.25rem;
    color: #64748b;
}

.home-final-cta {
    padding: 0 0 5rem;
}

.home-cta-eyebrow {
    display: inline-block;
    margin-bottom: .65rem;
    color: #ffc078;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .75rem;
}

@media (max-width: 991.98px) {
    .home-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .stat-card {
        padding: 1.15rem .75rem;
    }

    .stat-number {
        font-size: 1.05rem;
    }

    .home-services-section .service-card {
        padding: 1.25rem;
    }

    .service-card-media {
        margin: -1.25rem -1.25rem 1.25rem;
    }

    .home-blog-card-body {
        padding: 1.25rem;
    }

    .home-cta-actions {
        display: grid;
    }

    .home-cta-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-services-section .service-card,
    .service-card-media img,
    .home-blog-card,
    .home-blog-card-media img {
        transition: none;
    }
}


/* ERGAR SALES PROCESS TRUST CSS V1 */
.home-section-heading {
    max-width: 820px;
    margin: 0 auto 3rem;
}

.home-section-heading .section-text {
    max-width: 720px;
}

.home-process-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(239, 127, 26, .09),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6f8fa 100%
        );
}

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

.home-process-card {
    position: relative;
    min-height: 245px;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid rgba(19, 42, 64, .09);
    border-radius: 1.35rem;
    box-shadow: 0 16px 45px rgba(15, 35, 55, .08);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

.home-process-card:hover {
    z-index: 2;
    transform: translateY(-7px);
    border-color: rgba(239, 127, 26, .34);
    box-shadow: 0 27px 65px rgba(15, 35, 55, .14);
}

.home-process-number {
    display: inline-flex;
    width: 3.4rem;
    height: 3.4rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    background:
        linear-gradient(
            135deg,
            #ef7f1a,
            #ff9d44
        );
    border-radius: 1rem;
    box-shadow: 0 12px 25px rgba(239, 127, 26, .28);
}

.home-process-content h3 {
    margin-bottom: .8rem;
    color: #10263a;
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.35;
}

.home-process-content p {
    margin: 0;
    color: #66788a;
    line-height: 1.75;
}

.home-process-connector {
    position: absolute;
    top: 50%;
    right: -.95rem;
    z-index: 3;
    display: flex;
    width: 1.7rem;
    height: 1.7rem;
    align-items: center;
    justify-content: center;
    color: #ef7f1a;
    font-size: 1.3rem;
    font-weight: 900;
    background: #fff;
    border: 1px solid rgba(239, 127, 26, .18);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(15, 35, 55, .1);
    transform: translateY(-50%);
}

.home-trust-strip {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(239, 127, 26, .24),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0c2033 0%,
            #143b5d 55%,
            #0f2d47 100%
        );
}

.home-trust-strip::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .1) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.home-trust-strip .container {
    position: relative;
    z-index: 1;
}

.home-trust-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.home-trust-item {
    display: flex;
    min-height: 115px;
    align-items: flex-start;
    gap: .9rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    backdrop-filter: blur(9px);
}

.home-trust-check {
    display: inline-flex;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    color: #10263a;
    font-weight: 900;
    background: #ffad5c;
    border-radius: 50%;
}

.home-trust-item h3 {
    margin: 0 0 .35rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.home-trust-item p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .9rem;
    line-height: 1.55;
}

.home-trust-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.home-trust-copy {
    max-width: 760px;
}

.home-trust-eyebrow {
    display: inline-block;
    margin-bottom: .65rem;
    color: #ffb46d;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-trust-copy h2 {
    margin-bottom: .75rem;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 850;
    line-height: 1.14;
}

.home-trust-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.home-trust-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .75rem;
}

.home-services-section .service-card,
.home-blog-card,
.home-process-card {
    height: 100%;
}

.home-services-section .service-card h3 {
    min-height: 3.05rem;
}

.home-services-section .service-card p {
    flex-grow: 1;
}

@media (max-width: 1199.98px) {
    .home-process-grid,
    .home-trust-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-process-connector {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .home-trust-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-trust-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-section-heading {
        margin-bottom: 2rem;
        text-align: left !important;
    }

    .home-process-grid,
    .home-trust-items {
        grid-template-columns: 1fr;
    }

    .home-process-card {
        min-height: auto;
        padding: 1.4rem;
    }

    .home-trust-strip {
        padding: 3.5rem 0;
    }

    .home-trust-items {
        margin-bottom: 2rem;
    }

    .home-trust-cta {
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .home-trust-actions {
        display: grid;
        width: 100%;
    }

    .home-trust-actions .btn {
        width: 100%;
    }

    .home-services-section .service-card h3 {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-process-card {
        transition: none;
    }
}


/* ERGAR MOBILE SALES FINAL V1 */

/*
 * Genel taşma ve medya güvenliği
 */
html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    overflow-x: clip;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

picture {
    display: block;
}

iframe {
    border: 0;
}

/*
 * Genel bölüm ve başlık dengesi
 */
.section {
    padding-top: clamp(4rem, 7vw, 6.75rem);
    padding-bottom: clamp(4rem, 7vw, 6.75rem);
}

.section-title,
.home-trust-copy h2,
.cta-box h2 {
    text-wrap: balance;
}

.section-text,
.home-trust-copy p,
.cta-box p {
    text-wrap: pretty;
}

.section-label {
    line-height: 1.4;
}

.container,
.container-fluid {
    min-width: 0;
}

.row > * {
    min-width: 0;
}

/*
 * Erişilebilir dokunma alanları
 */
.btn,
.nav-link,
.dropdown-item,
.service-card-link,
.home-blog-card a,
a[href^="tel:"],
a[href*="wa.me"] {
    min-height: 44px;
}

.btn,
.service-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

a,
button,
input,
textarea,
select {
    touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(239, 127, 26, .55);
    outline-offset: 3px;
}

/*
 * Header ve navigasyon
 */
.site-header,
.main-header,
.navbar {
    max-width: 100%;
}

.navbar-brand {
    min-width: 0;
}

.navbar-brand img,
.site-logo img,
.header-logo img {
    width: auto;
    max-width: min(220px, 58vw);
    max-height: 68px;
    object-fit: contain;
}

.navbar-toggler {
    min-width: 44px;
    min-height: 44px;
}

.navbar-collapse {
    min-width: 0;
}

.navbar-nav {
    min-width: 0;
}

.navbar .nav-link {
    display: flex;
    align-items: center;
}

/*
 * Hero genel güvenliği
 */
.hero,
.home-hero,
.hero-section,
.hero-shell {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.hero .container,
.home-hero .container,
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero h1,
.home-hero h1,
.hero-section h1 {
    max-width: 980px;
    font-size: clamp(2.15rem, 5.2vw, 4.75rem);
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.hero p,
.home-hero p,
.hero-section p {
    max-width: 760px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    text-wrap: pretty;
}

.hero-actions,
.home-hero-actions,
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero img,
.home-hero img,
.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
 * İstatistikler
 */
.stat-strip .row {
    align-items: stretch;
}

.stat-card {
    height: 100%;
    min-height: 122px;
}

.stat-number {
    overflow-wrap: anywhere;
    text-wrap: balance;
}

/*
 * Hizmet kartları
 */
.home-services-section .row {
    align-items: stretch;
}

.home-services-section [class*="col-"] {
    display: flex;
}

.home-services-section .service-card {
    width: 100%;
    min-width: 0;
}

.service-card-media {
    aspect-ratio: 3 / 2;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-services-section .service-card h3,
.home-services-section .service-card p {
    overflow-wrap: anywhere;
}

.service-card-link {
    width: fit-content;
    max-width: 100%;
}

/*
 * Avantajlar
 */
.feature-panel {
    overflow: hidden;
}

.home-advantage-grid {
    align-items: stretch;
}

.home-advantages-section .feature-item {
    height: 100%;
}

/*
 * Süreç
 */
.home-process-grid {
    align-items: stretch;
}

.home-process-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.home-process-content {
    min-width: 0;
}

.home-process-content h3,
.home-process-content p {
    overflow-wrap: anywhere;
}

/*
 * Blog kartları
 */
.home-blog-section .row {
    align-items: stretch;
}

.home-blog-section [class*="col-"] {
    display: flex;
}

.home-blog-card {
    width: 100%;
    min-width: 0;
}

.home-blog-card-media {
    aspect-ratio: 1200 / 630;
}

.home-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog-card-body h3,
.home-blog-card-body p {
    overflow-wrap: anywhere;
}

/*
 * CTA
 */
.cta-box {
    overflow: hidden;
}

.home-cta-actions,
.home-trust-actions {
    min-width: 0;
}

.home-cta-actions .btn,
.home-trust-actions .btn {
    white-space: normal;
    text-align: center;
}

/*
 * Güven şeridi
 */
.home-trust-items {
    align-items: stretch;
}

.home-trust-item {
    height: 100%;
    min-width: 0;
}

.home-trust-item div {
    min-width: 0;
}

.home-trust-item h3,
.home-trust-item p,
.home-trust-copy h2,
.home-trust-copy p {
    overflow-wrap: anywhere;
}

/*
 * Footer
 */
.site-footer,
.main-footer,
footer {
    max-width: 100%;
    overflow: hidden;
}

.site-footer .row,
.main-footer .row,
footer .row {
    row-gap: 2rem;
}

.site-footer a,
.main-footer a,
footer a {
    overflow-wrap: anywhere;
}

.site-footer img,
.main-footer img,
footer img {
    width: auto;
    max-width: min(220px, 72vw);
    height: auto;
}

/*
 * Büyük tablet
 */
@media (max-width: 1199.98px) {
    .section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: auto !important;
    }

    .home-process-card {
        min-height: 220px;
    }

    .home-trust-cta {
        align-items: flex-start;
    }
}

/*
 * Tablet ve mobil menü
 */
@media (max-width: 991.98px) {
    .section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .navbar-collapse {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .navbar-nav {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .navbar .nav-link {
        min-height: 48px;
        padding: .75rem .85rem;
    }

    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: 620px !important;
        padding-top: 5rem;
        padding-bottom: 5rem;
        background-position: center center;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        max-width: 760px;
    }

    .hero p,
    .home-hero p,
    .hero-section p {
        max-width: 650px;
    }

    .home-services-section .service-card h3 {
        min-height: 0;
    }

    .home-trust-cta,
    .cta-box .row {
        align-items: flex-start !important;
    }

    .home-cta-actions,
    .home-trust-actions {
        justify-content: flex-start;
    }
}

/*
 * Telefon
 */
@media (max-width: 767.98px) {
    html {
        scroll-behavior: auto;
    }

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

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        line-height: 1.15;
    }

    .section-text {
        font-size: .98rem;
        line-height: 1.72;
    }

    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        display: flex;
        min-height: 570px !important;
        align-items: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
        background-position: 62% center;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.06;
    }

    .hero p,
    .home-hero p,
    .hero-section p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions,
    .home-hero-actions,
    .hero-buttons {
        display: grid;
        width: 100%;
        max-width: 430px;
    }

    .hero-actions .btn,
    .home-hero-actions .btn,
    .hero-buttons .btn {
        width: 100%;
        min-height: 50px;
        white-space: normal;
    }

    .stat-strip .row {
        --bs-gutter-x: .75rem;
        --bs-gutter-y: .75rem;
    }

    .stat-card {
        min-height: 112px;
        padding: 1rem .65rem;
    }

    .stat-number {
        font-size: 1rem;
        line-height: 1.25;
    }

    .stat-card .text-secondary {
        font-size: .82rem;
        line-height: 1.4;
    }

    .home-services-section .service-card,
    .home-blog-card,
    .home-process-card {
        border-radius: 1.1rem;
    }

    .home-services-section .service-card {
        padding: 1.25rem;
    }

    .service-card-media {
        margin: -1.25rem -1.25rem 1.25rem;
    }

    .home-process-card {
        min-height: 0;
    }

    .home-process-number {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.1rem;
    }

    .home-blog-card-body {
        padding: 1.25rem;
    }

    .feature-panel,
    .cta-box {
        border-radius: 1.15rem;
    }

    .feature-panel {
        padding: 1.5rem !important;
    }

    .home-final-cta {
        padding-bottom: 3.75rem;
    }

    .home-final-cta .cta-box {
        padding: 1.5rem !important;
    }

    .home-cta-actions,
    .home-trust-actions {
        display: grid;
        width: 100%;
    }

    .home-cta-actions .btn,
    .home-trust-actions .btn {
        width: 100%;
        min-height: 50px;
    }

    .home-trust-strip {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .home-trust-item {
        min-height: 0;
    }

    .home-trust-copy h2 {
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }

    .site-footer,
    .main-footer,
    footer {
        text-align: left;
    }

    .site-footer ul,
    .main-footer ul,
    footer ul {
        padding-left: 0;
    }
}

/*
 * Küçük telefon
 */
@media (max-width: 575.98px) {
    .container {
        --bs-gutter-x: 1.5rem;
    }

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

    .section-label {
        font-size: .72rem;
        letter-spacing: .09em;
    }

    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: 540px !important;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        font-size: clamp(1.85rem, 10.5vw, 2.65rem);
    }

    .navbar-brand img,
    .site-logo img,
    .header-logo img {
        max-width: 175px;
        max-height: 58px;
    }

    .home-process-card,
    .home-trust-item,
    .home-blog-card-body,
    .home-services-section .service-card {
        padding: 1.15rem;
    }

    .service-card-media {
        margin: -1.15rem -1.15rem 1.15rem;
    }

    .home-blog-card h3,
    .home-process-content h3 {
        font-size: 1.12rem;
    }

    .home-trust-check {
        width: 1.85rem;
        height: 1.85rem;
    }

    .btn-lg {
        padding: .8rem 1rem;
        font-size: 1rem;
    }
}

/*
 * Çok dar ekran
 */
@media (max-width: 374.98px) {
    .container {
        --bs-gutter-x: 1.1rem;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .stat-strip .col-6 {
        width: 100%;
    }

    .stat-card {
        min-height: 96px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}


/* ==============================================================
   ERGAR MOBILE VISUAL FINAL POLISH V1
   ============================================================== */

/*
 * Masaüstü genel denge
 */
.home-services-section,
.home-blog-section,
.home-process-section {
    scroll-margin-top: 90px;
}

.home-services-section .section-title,
.home-blog-section .section-title {
    max-width: 760px;
}

.home-services-section .section-text,
.home-blog-section .section-text {
    max-width: 720px;
}

.home-services-section .service-card {
    overflow: hidden;
}

.home-services-section .service-card,
.home-blog-card {
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.home-services-section .service-card:hover,
.home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 35, 55, .12);
}

/*
 * Hizmet görselleri
 */
.service-card-media {
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.service-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.035);
}

/*
 * Blog görselleri
 */
.home-blog-card-media {
    overflow: hidden;
}

.home-blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.home-blog-card:hover .home-blog-card-media img {
    transform: scale(1.035);
}

/*
 * Neden ERGAR paneli
 */
.home-advantages-section .feature-panel {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

.home-advantages-section .feature-item {
    padding-top: .8rem;
    padding-bottom: .8rem;
}

/*
 * Süreç
 */
.home-process-card {
    min-height: 220px;
}

.home-process-content p {
    line-height: 1.65;
}

/*
 * CTA
 */
.home-final-cta {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.home-final-cta .cta-box {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

/*
 * Footer masaüstü sıkılaştırma
 */
.site-footer,
.main-footer,
footer {
    padding-top: 3.75rem;
}

.site-footer .footer-bottom,
.main-footer .footer-bottom,
footer .footer-bottom {
    margin-top: 2.25rem;
}

/*
 * TABLET
 */
@media (max-width: 991.98px) {

    /*
     * Hero tablet
     */
    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: 560px !important;
        padding-top: 4.25rem;
        padding-bottom: 4.25rem;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        max-width: 650px;
        font-size: clamp(2.25rem, 7vw, 3.5rem);
        line-height: 1.04;
    }

    /*
     * İstatistikler 2x2
     */
    .stat-strip .row > [class*="col-"],
    .home-stats-section .row > [class*="col-"] {
        width: 50%;
        flex: 0 0 auto;
    }

    .stat-card {
        min-height: 105px;
    }

    /*
     * Kart aralıkları
     */
    .home-services-section .row,
    .home-blog-section .row {
        --bs-gutter-y: 1.25rem;
    }

    /*
     * Neden ERGAR
     */
    .home-advantages-section .feature-panel {
        padding: 2rem !important;
    }

    /*
     * Süreç
     */
    .home-process-card {
        min-height: 190px;
    }
}

/*
 * MOBIL
 */
@media (max-width: 767.98px) {

    /*
     * Genel bölüm ritmi
     */
    .section {
        padding-top: 3.35rem;
        padding-bottom: 3.35rem;
    }

    .home-section-heading {
        margin-bottom: 1.8rem;
    }

    /*
     * Hero mobil:
     * daha kompakt ve okunaklı
     */
    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: 490px !important;
        padding-top: 2.9rem;
        padding-bottom: 3rem;
        align-items: flex-start;
        background-position: center center;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        max-width: 94%;
        margin-bottom: 1rem;
        font-size: clamp(1.85rem, 9.2vw, 2.55rem);
        line-height: 1.02;
        letter-spacing: -.035em;
    }

    .hero p,
    .home-hero p,
    .hero-section p {
        max-width: 94%;
        margin-bottom: 1.25rem;
        font-size: .94rem;
        line-height: 1.55;
    }

    .hero-actions,
    .home-hero-actions,
    .hero-buttons {
        display: flex;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: .6rem;
    }

    .hero-actions .btn,
    .home-hero-actions .btn,
    .hero-buttons .btn {
        width: auto;
        min-height: 44px;
        padding: .7rem .85rem;
        font-size: .86rem;
    }

    /*
     * Hero hızlı iletişim kutusu
     * Mobilde daha kompakt
     */
    .hero .quick-contact,
    .hero .hero-contact,
    .hero .quick-contact-card,
    .home-hero .quick-contact,
    .home-hero .hero-contact,
    .home-hero .quick-contact-card,
    .hero-section .quick-contact,
    .hero-section .hero-contact,
    .hero-section .quick-contact-card {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 1.4rem;
        padding: 1rem !important;
        transform: none !important;
    }

    /*
     * Statistik 2x2
     */
    .stat-strip .row,
    .home-stats-section .row {
        --bs-gutter-x: .7rem;
        --bs-gutter-y: .7rem;
    }

    .stat-strip .row > [class*="col-"],
    .home-stats-section .row > [class*="col-"] {
        width: 50%;
        flex: 0 0 auto;
    }

    .stat-card {
        min-height: 92px;
        padding: .85rem .6rem;
    }

    .stat-number {
        font-size: .95rem;
        line-height: 1.2;
    }

    .stat-card .text-secondary,
    .stat-card p {
        margin-bottom: 0;
        font-size: .76rem;
        line-height: 1.35;
    }

    /*
     * Hizmet başlık alanı
     */
    .home-services-section .section-title,
    .home-blog-section .section-title {
        font-size: 1.85rem;
        line-height: 1.08;
    }

    .home-services-section .section-text,
    .home-blog-section .section-text {
        font-size: .92rem;
        line-height: 1.55;
    }

    /*
     * Hizmet kartları daha kompakt
     */
    .home-services-section .row {
        --bs-gutter-y: .95rem;
    }

    .home-services-section .service-card {
        padding: 1rem;
    }

    .service-card-media {
        margin: -1rem -1rem .95rem;
        aspect-ratio: 16 / 9;
    }

    .home-services-section .service-card h3 {
        margin-bottom: .5rem;
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .home-services-section .service-card p {
        margin-bottom: .7rem;
        font-size: .86rem;
        line-height: 1.5;
    }

    .service-card-link {
        min-height: 38px;
        font-size: .82rem;
    }

    /*
     * Neden ERGAR daha kompakt
     */
    .home-advantages-section .feature-panel {
        padding: 1.3rem !important;
        border-radius: 1rem;
    }

    .home-advantages-section .feature-item {
        padding-top: .55rem;
        padding-bottom: .55rem;
    }

    .home-advantages-section .feature-item h3 {
        margin-bottom: .2rem;
        font-size: .98rem;
    }

    .home-advantages-section .feature-item p {
        margin-bottom: 0;
        font-size: .82rem;
        line-height: 1.45;
    }

    /*
     * Süreç
     */
    .home-process-grid {
        gap: .8rem;
    }

    .home-process-card {
        min-height: 0;
        padding: 1rem;
    }

    .home-process-number {
        width: 2.7rem;
        height: 2.7rem;
        margin-bottom: .8rem;
        border-radius: .8rem;
    }

    .home-process-content h3 {
        margin-bottom: .4rem;
        font-size: 1rem;
    }

    .home-process-content p {
        font-size: .83rem;
        line-height: 1.48;
    }

    /*
     * Blog kartları kompakt
     */
    .home-blog-section .row {
        --bs-gutter-y: .95rem;
    }

    .home-blog-card-media {
        aspect-ratio: 16 / 9;
    }

    .home-blog-card-body {
        padding: 1rem;
    }

    .home-blog-card h3,
    .home-blog-card-body h3 {
        margin-bottom: .5rem;
        font-size: 1.04rem;
        line-height: 1.3;
    }

    .home-blog-card-body p {
        margin-bottom: .65rem;
        font-size: .84rem;
        line-height: 1.5;
    }

    /*
     * Ana CTA
     */
    .home-final-cta {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .home-final-cta .cta-box {
        padding: 1.25rem !important;
        border-radius: 1rem;
    }

    .home-final-cta .cta-box h2 {
        font-size: 1.55rem;
        line-height: 1.12;
    }

    .home-final-cta .cta-box p {
        font-size: .88rem;
        line-height: 1.5;
    }

    /*
     * Güven şeridi
     */
    .home-trust-strip {
        padding-top: 2.8rem;
        padding-bottom: 2.8rem;
    }

    .home-trust-items {
        gap: .7rem;
        margin-bottom: 1.75rem;
    }

    .home-trust-item {
        min-height: 0;
        padding: .9rem;
    }

    .home-trust-check {
        width: 1.7rem;
        height: 1.7rem;
        font-size: .75rem;
    }

    .home-trust-item h3 {
        font-size: .9rem;
    }

    .home-trust-item p {
        font-size: .78rem;
        line-height: 1.4;
    }

    .home-trust-cta {
        gap: 1.15rem;
        padding-top: 1.6rem;
    }

    .home-trust-copy h2 {
        font-size: 1.65rem;
        line-height: 1.1;
    }

    .home-trust-copy p {
        font-size: .85rem;
        line-height: 1.5;
    }

    /*
     * Footer mobil kısaltma
     */
    .site-footer,
    .main-footer,
    footer {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .site-footer .row,
    .main-footer .row,
    footer .row {
        row-gap: 1.25rem;
    }

    .site-footer img,
    .main-footer img,
    footer img {
        max-width: 125px;
    }

    .site-footer h3,
    .site-footer h4,
    .main-footer h3,
    .main-footer h4,
    footer h3,
    footer h4 {
        margin-bottom: .5rem;
        font-size: .95rem;
    }

    .site-footer p,
    .site-footer a,
    .main-footer p,
    .main-footer a,
    footer p,
    footer a {
        font-size: .82rem;
        line-height: 1.45;
    }

    .site-footer ul li,
    .main-footer ul li,
    footer ul li {
        margin-bottom: .3rem;
    }

    .site-footer .footer-bottom,
    .main-footer .footer-bottom,
    footer .footer-bottom {
        margin-top: 1.4rem;
        padding-top: 1rem;
    }
}

/*
 * KÜÇÜK TELEFON
 */
@media (max-width: 575.98px) {

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

    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: 455px !important;
        padding-top: 2.5rem;
        padding-bottom: 2.6rem;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        max-width: 100%;
        font-size: clamp(1.72rem, 9vw, 2.2rem);
    }

    .hero p,
    .home-hero p,
    .hero-section p {
        max-width: 100%;
        font-size: .88rem;
    }

    .hero-actions .btn,
    .home-hero-actions .btn,
    .hero-buttons .btn {
        padding-right: .7rem;
        padding-left: .7rem;
        font-size: .8rem;
    }

    .stat-card {
        min-height: 84px;
    }

    .home-services-section .service-card,
    .home-blog-card,
    .home-process-card {
        border-radius: .9rem;
    }

    .home-services-section .section-title,
    .home-blog-section .section-title,
    .home-trust-copy h2 {
        font-size: 1.6rem;
    }

    .home-final-cta .cta-box h2 {
        font-size: 1.42rem;
    }
}

/*
 * Çok dar ekran
 */
@media (max-width: 374.98px) {

    .hero,
    .home-hero,
    .hero-section,
    .hero-shell {
        min-height: 430px !important;
    }

    .hero h1,
    .home-hero h1,
    .hero-section h1 {
        font-size: 1.6rem;
    }

    .stat-strip .row > [class*="col-"],
    .home-stats-section .row > [class*="col-"] {
        width: 50%;
    }
}

/*
 * Hareket hassasiyeti
 */
@media (prefers-reduced-motion: reduce) {

    .service-card-media img,
    .home-blog-card-media img,
    .home-services-section .service-card,
    .home-blog-card {
        transition: none;
    }

    .service-card:hover .service-card-media img,
    .home-blog-card:hover .home-blog-card-media img {
        transform: none;
    }
}


/* ==============================================================
   ERGAR SERVICE DETAIL FINAL POLISH V1
   ============================================================== */

/*
 * Hizmet detay sayfası:
 * mevcut sınıflar + genel yapısal selector'lar.
 */

.service-detail-main,
.service-main,
.service-content-section,
.service-detail-section {
    padding-top: 3.25rem;
    padding-bottom: 4.5rem;
}

.service-detail-grid,
.service-main-grid,
.service-content-grid,
.service-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(300px, .78fr);
    gap: 2rem;
    align-items: start;
}

.service-detail-image,
.service-main-image,
.service-featured-image,
.service-image {
    overflow: hidden;
    border-radius: 1.1rem;
    background: #eef3f7;
    box-shadow:
        0 18px 48px
        rgba(15, 35, 55, .11);
}

.service-detail-image img,
.service-main-image img,
.service-featured-image img,
.service-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 575px;
    object-fit: cover;
}

.service-sidebar,
.service-contact-card,
.service-quick-contact,
.service-quick-quote,
.quick-service-contact,
.service-quote-card {
    position: sticky;
    top: 105px;
    padding: 1.45rem;
    background: #ffffff;
    border: 1px solid rgba(16, 39, 68, .10);
    border-radius: 1.05rem;
    box-shadow:
        0 16px 42px
        rgba(15, 35, 55, .09);
}

.service-sidebar .btn,
.service-contact-card .btn,
.service-quick-contact .btn,
.service-quick-quote .btn,
.quick-service-contact .btn,
.service-quote-card .btn {
    width: 100%;
    min-height: 46px;
}

.service-detail-content,
.service-content,
.service-body {
    max-width: 920px;
    margin-top: 2rem;
}

.service-detail-content h2,
.service-content h2,
.service-body h2 {
    margin-top: 2rem;
    margin-bottom: .8rem;
    color: #112a4b;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.service-detail-content h3,
.service-content h3,
.service-body h3 {
    margin-top: 1.55rem;
    margin-bottom: .6rem;
    color: #112a4b;
}

.service-detail-content p,
.service-content p,
.service-body p {
    color: #53687d;
    font-size: 1rem;
    line-height: 1.75;
}

.service-detail-content ul,
.service-content ul,
.service-body ul {
    padding-left: 1.2rem;
}

.service-detail-content li,
.service-content li,
.service-body li {
    margin-bottom: .55rem;
    color: #53687d;
    line-height: 1.65;
}

/*
 * Hizmet görseli ve teklif alanından sonra
 * gereksiz boş min-height oluşmasını engelle.
 */
.service-page section,
.service-detail-page section,
.service-detail section,
main section {
    min-height: 0;
}

/*
 * Tablet
 */
@media (max-width: 991.98px) {

    .service-detail-grid,
    .service-main-grid,
    .service-content-grid,
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-sidebar,
    .service-contact-card,
    .service-quick-contact,
    .service-quick-quote,
    .quick-service-contact,
    .service-quote-card {
        position: relative;
        top: auto;
    }

    .service-detail-image img,
    .service-main-image img,
    .service-featured-image img,
    .service-image img {
        max-height: none;
    }
}

/*
 * Mobil
 */
@media (max-width: 767.98px) {

    .service-detail-main,
    .service-main,
    .service-content-section,
    .service-detail-section {
        padding-top: 2rem;
        padding-bottom: 2.75rem;
    }

    .service-detail-grid,
    .service-main-grid,
    .service-content-grid,
    .service-detail-layout {
        gap: 1rem;
    }

    .service-detail-image,
    .service-main-image,
    .service-featured-image,
    .service-image {
        border-radius: .85rem;
    }

    .service-sidebar,
    .service-contact-card,
    .service-quick-contact,
    .service-quick-quote,
    .quick-service-contact,
    .service-quote-card {
        padding: 1rem;
        border-radius: .85rem;
    }

    .service-detail-content,
    .service-content,
    .service-body {
        margin-top: 1.35rem;
    }
}

/* ==============================================================
   ERGAR SERVICE PREMIUM VISUAL V2
   ============================================================== */

/* ---------- SERVICE HERO ---------- */

.ergar-service-hero {
    min-height: 0 !important;
    padding-top: 22px !important;
    padding-bottom: 24px !important;
    background:
        linear-gradient(
            110deg,
            #132b50 0%,
            #213f72 100%
        ) !important;
}

.ergar-service-hero .container {
    max-width: 1140px !important;
}

.ergar-service-hero h1 {
    max-width: 700px !important;
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(32px, 3vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
}

.ergar-service-hero p {
    max-width: 700px !important;
    margin: 0 !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}


/* ---------- MEVCUT GORSEL + TEKLIF ALANI ---------- */

.service-detail-main,
.service-main,
.service-content-section,
.service-detail-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.service-detail-grid,
.service-main-grid,
.service-content-grid,
.service-detail-layout {
    gap: 30px !important;
    align-items: start !important;
}

.service-detail-image,
.service-main-image,
.service-featured-image,
.service-image {
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #eef3f7 !important;
    box-shadow: 0 14px 34px rgba(16,42,82,.09) !important;
}

.service-detail-image img,
.service-main-image img,
.service-featured-image img,
.service-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

.service-sidebar,
.service-contact-card,
.service-quick-contact,
.service-quick-quote,
.quick-service-contact,
.service-quote-card {
    padding: 22px !important;
    border: 1px solid #e3e9f0 !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(16,42,82,.07) !important;
}


/* ---------- RICH SAYFA ---------- */

.ergar-service-rich {
    padding: 18px 0 58px !important;
    background: #fff !important;
}

.ergar-service-rich > .container {
    width: 100% !important;
    max-width: 1140px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.ergar-service-eyebrow {
    margin-bottom: 7px !important;
    color: #f47a00 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.ergar-service-section-heading {
    margin-bottom: 22px !important;
}

.ergar-service-section-heading h2 {
    margin: 0 !important;
    color: #102a52 !important;
    font-size: 27px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -.025em !important;
}


/* ---------- HIZMET KAPSAMI ---------- */

.ergar-service-scope-panel {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.06fr)
        minmax(0, .94fr) !important;
    gap: 28px !important;
    padding: 30px !important;
    border: 1px solid #e2e8ef !important;
    border-radius: 16px !important;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfcfe 100%
        ) !important;
    box-shadow:
        0 15px 38px
        rgba(16,42,82,.065) !important;
}

.ergar-service-scope-copy {
    min-width: 0 !important;
}

.ergar-service-scope-copy h2 {
    max-width: 600px !important;
    margin: 0 0 14px !important;
    color: #102a52 !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -.03em !important;
}

.ergar-service-scope-copy p {
    max-width: 650px !important;
    margin: 0 0 11px !important;
    color: #586a7f !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.ergar-service-scope-list {
    display: grid !important;
    gap: 8px !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.ergar-service-scope-list li {
    display: flex !important;
    gap: 9px !important;
    align-items: flex-start !important;
    margin: 0 !important;
    color: #334a64 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.ergar-service-scope-list li > span {
    display: inline-flex !important;
    flex: 0 0 19px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 19px !important;
    height: 19px !important;
    margin-top: 1px !important;
    border: 1px solid #35a969 !important;
    border-radius: 50% !important;
    color: #209557 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}


/* ---------- 4 OZELLIK KARTI ---------- */

.ergar-service-highlight-grid {
    display: grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-content: center !important;
}

.ergar-service-highlight-card {
    min-height: 142px !important;
    padding: 19px !important;
    border: 1px solid #e1e7ee !important;
    border-radius: 13px !important;
    background: #fff !important;
    box-shadow:
        0 8px 22px
        rgba(16,42,82,.055) !important;
}

.ergar-service-highlight-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 34px !important;
    height: 34px !important;
    margin-bottom: 12px !important;
    padding: 0 8px !important;
    border-radius: 9px !important;
    background: #fff2e3 !important;
    color: #f47a00 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.ergar-service-highlight-card h3 {
    margin: 0 0 6px !important;
    color: #102a52 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.ergar-service-highlight-card p {
    margin: 0 !important;
    color: #657589 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}


/* ---------- BOLUM ARALIKLARI ---------- */

.ergar-service-process,
.ergar-service-reasons,
.ergar-service-faq {
    padding-top: 48px !important;
}


/* ---------- SUREC ---------- */

.ergar-service-process-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns:
        repeat(5, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.ergar-service-process-grid::before {
    position: absolute !important;
    z-index: 0 !important;
    top: 25px !important;
    left: 6% !important;
    right: 6% !important;
    height: 1px !important;
    background:
        repeating-linear-gradient(
            90deg,
            #ccd7e4 0,
            #ccd7e4 6px,
            transparent 6px,
            transparent 11px
        ) !important;
    content: "" !important;
}

.ergar-service-process-step {
    position: relative !important;
    z-index: 1 !important;
    min-width: 0 !important;
}

.ergar-service-process-number {
    margin-bottom: 7px !important;
    color: #f47a00 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.ergar-service-process-dot {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 12px !important;
    border: 1px solid #ccd7e4 !important;
    border-radius: 50% !important;
    background:
        radial-gradient(
            circle,
            #102a52 0 5px,
            #ffffff 6px
        ) !important;
    box-shadow:
        0 5px 14px
        rgba(16,42,82,.07) !important;
}

.ergar-service-process-step h3 {
    margin: 0 0 5px !important;
    color: #102a52 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.ergar-service-process-step p {
    margin: 0 !important;
    color: #69798c !important;
    font-size: 11.5px !important;
    line-height: 1.5 !important;
}


/* ---------- NEDEN ERGAR ---------- */

.ergar-service-reason-grid {
    display: grid !important;
    grid-template-columns:
        repeat(5, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.ergar-service-reason {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-start !important;
    min-width: 0 !important;
    padding: 14px !important;
    border: 1px solid #edf1f5 !important;
    border-radius: 11px !important;
    background: #fff !important;
}

.ergar-service-reason-icon {
    display: flex !important;
    flex: 0 0 34px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: #102a52 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.ergar-service-reason h3 {
    margin: 1px 0 4px !important;
    color: #102a52 !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
}

.ergar-service-reason p {
    margin: 0 !important;
    color: #6d7b8d !important;
    font-size: 10.5px !important;
    line-height: 1.45 !important;
}


/* ---------- FAQ ---------- */

.ergar-service-faq-grid {
    display: grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.ergar-service-faq-item {
    overflow: hidden !important;
    border: 1px solid #dde5ed !important;
    border-radius: 10px !important;
    background: #fff !important;
}

.ergar-service-faq-item summary {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 52px !important;
    padding: 12px 15px !important;
    color: #18324f !important;
    font-size: 12.5px !important;
    font-weight: 750 !important;
    cursor: pointer !important;
    list-style: none !important;
}

.ergar-service-faq-item summary::-webkit-details-marker {
    display: none !important;
}

.ergar-service-faq-plus {
    color: #102a52 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.ergar-service-faq-answer {
    padding: 0 15px 15px !important;
    color: #657589 !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
}


/* ---------- CTA ---------- */

.ergar-service-final-cta {
    display: flex !important;
    gap: 24px !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 42px !important;
    padding: 22px 24px !important;
    border: 1px solid #f5dcc0 !important;
    border-radius: 14px !important;
    background:
        linear-gradient(
            90deg,
            #fff6ea 0%,
            #fffdf9 100%
        ) !important;
    box-shadow:
        0 10px 26px
        rgba(80,55,25,.06) !important;
}

.ergar-service-final-cta-copy {
    display: flex !important;
    gap: 14px !important;
    align-items: center !important;
}

.ergar-service-cta-icon {
    display: flex !important;
    flex: 0 0 48px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 10px !important;
    background: #f47a00 !important;
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 800 !important;
}

.ergar-service-final-cta h2 {
    margin: 0 0 4px !important;
    color: #102a52 !important;
    font-size: 21px !important;
    font-weight: 800 !important;
}

.ergar-service-final-cta p {
    margin: 0 !important;
    color: #667589 !important;
    font-size: 12.5px !important;
}

.ergar-service-final-cta-actions {
    display: flex !important;
    flex: 0 0 auto !important;
    gap: 8px !important;
}


/* ==============================================================
   ERGAR PREMIUM LIGHT FOOTER V2
   ============================================================== */

footer,
.site-footer,
.main-footer {
    padding: 30px 0 12px !important;
    border-top: 1px solid #dfe6ed !important;
    background: #ffffff !important;
    color: #536579 !important;
}

footer .container,
.site-footer .container,
.main-footer .container {
    max-width: 1140px !important;
}

footer .row,
.site-footer .row,
.main-footer .row {
    align-items: flex-start !important;
    row-gap: 18px !important;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
.site-footer h5,
.main-footer h5 {
    color: #102a52 !important;
}

footer h5,
.site-footer h5,
.main-footer h5 {
    margin-bottom: 9px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

footer p,
.site-footer p,
.main-footer p {
    margin-bottom: 7px !important;
    color: #68788a !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
}

footer a,
.site-footer a,
.main-footer a {
    color: #536579 !important;
    font-size: 11.5px !important;
    text-decoration: none !important;
}

footer a:hover,
.site-footer a:hover,
.main-footer a:hover {
    color: #f47a00 !important;
}

footer img,
.site-footer img,
.main-footer img {
    max-width: 108px !important;
    height: auto !important;
}

footer ul,
.site-footer ul,
.main-footer ul {
    margin: 0 !important;
    padding-left: 0 !important;
}

footer li,
.site-footer li,
.main-footer li {
    margin-bottom: 5px !important;
}

footer hr,
.site-footer hr,
.main-footer hr,
.ergar-footer-divider {
    margin: 18px 0 10px !important;
    border: 0 !important;
    border-top: 1px solid #e1e7ed !important;
    opacity: 1 !important;
}

footer .footer-social-links,
.site-footer .footer-social-links,
.main-footer .footer-social-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin-top: 8px !important;
}

footer .footer-social-links a,
.site-footer .footer-social-links a,
.main-footer .footer-social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 28px !important;
    padding: 4px 7px !important;
    border: 1px solid #dfe6ed !important;
    border-radius: 7px !important;
    background: #fff !important;
    font-size: 10px !important;
}


/* ---------- TABLET ---------- */

@media (max-width: 991.98px) {

    .ergar-service-scope-panel {
        grid-template-columns: 1fr !important;
    }

    .ergar-service-process-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;
    }

    .ergar-service-process-grid::before {
        display: none !important;
    }

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


/* ---------- MOBILE ---------- */

@media (max-width: 767.98px) {

    .ergar-service-hero {
        padding-top: 18px !important;
        padding-bottom: 20px !important;
    }

    .ergar-service-hero h1 {
        font-size: 27px !important;
    }

    .ergar-service-rich {
        padding-top: 10px !important;
        padding-bottom: 38px !important;
    }

    .ergar-service-scope-panel {
        gap: 18px !important;
        padding: 18px !important;
        border-radius: 13px !important;
    }

    .ergar-service-scope-copy h2 {
        font-size: 24px !important;
    }

    .ergar-service-highlight-grid {
        grid-template-columns: 1fr !important;
    }

    .ergar-service-highlight-card {
        min-height: 0 !important;
    }

    .ergar-service-process,
    .ergar-service-reasons,
    .ergar-service-faq {
        padding-top: 34px !important;
    }

    .ergar-service-process-grid {
        grid-template-columns: 1fr !important;
        gap: 9px !important;
    }

    .ergar-service-process-step {
        display: grid !important;
        grid-template-columns: 45px minmax(0, 1fr) !important;
        column-gap: 11px !important;
        padding: 13px !important;
        border: 1px solid #e3e9f0 !important;
        border-radius: 11px !important;
        background: #fff !important;
    }

    .ergar-service-process-number {
        grid-column: 1 !important;
    }

    .ergar-service-process-dot {
        grid-column: 1 !important;
        grid-row: 2 / 4 !important;
        width: 40px !important;
        height: 40px !important;
        margin: 0 !important;
    }

    .ergar-service-process-step h3,
    .ergar-service-process-step p {
        grid-column: 2 !important;
    }

    .ergar-service-reason-grid,
    .ergar-service-faq-grid {
        grid-template-columns: 1fr !important;
    }

    .ergar-service-final-cta {
        display: block !important;
        padding: 18px !important;
    }

    .ergar-service-final-cta-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        margin-top: 15px !important;
    }

    .ergar-service-final-cta-actions .btn {
        width: 100% !important;
    }

    footer,
    .site-footer,
    .main-footer {
        padding-top: 24px !important;
    }

    footer img,
    .site-footer img,
    .main-footer img {
        max-width: 92px !important;
    }
}



/* ==============================================================
   ERGAR SERVICE TOP TIGHTEN FINAL V1
   ============================================================== */

/*
 * Mavi hizmet başlık alanını belirgin biçimde incelt.
 */
.ergar-service-hero {
    min-height: 0 !important;
    padding-top: 14px !important;
    padding-bottom: 16px !important;
}

/*
 * Breadcrumb ve üst metin aralıklarını sıkılaştır.
 */
.ergar-service-hero .breadcrumb,
.ergar-service-hero nav[aria-label="breadcrumb"] {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
}

.ergar-service-hero .ergar-service-eyebrow,
.ergar-service-hero .page-eyebrow,
.ergar-service-hero .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
}

/*
 * Başlığı daha zarif ve kompakt yap.
 */
.ergar-service-hero h1 {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    font-size: clamp(29px, 2.3vw, 34px) !important;
    line-height: 1.08 !important;
}

/*
 * Açıklamayı tek ve sıkı blokta tut.
 */
.ergar-service-hero p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    max-width: 680px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

/*
 * Hero bittikten sonra görsel + teklif alanını yukarı yaklaştır.
 */
.service-detail-main,
.service-main,
.service-content-section,
.service-detail-section {
    padding-top: 16px !important;
}

/*
 * Eğer üst kapsayıcıda ekstra margin varsa bastır.
 */
.service-detail-grid,
.service-main-grid,
.service-content-grid,
.service-detail-layout {
    margin-top: 0 !important;
}

/*
 * Mobilde de mavi bant ince kalsın.
 */
@media (max-width: 767.98px) {

    .ergar-service-hero {
        padding-top: 12px !important;
        padding-bottom: 14px !important;
    }

    .ergar-service-hero h1 {
        font-size: 25px !important;
        margin-bottom: 4px !important;
    }

    .ergar-service-hero p {
        font-size: 13px !important;
        line-height: 1.38 !important;
    }

    .service-detail-main,
    .service-main,
    .service-content-section,
    .service-detail-section {
        padding-top: 12px !important;
    }
}


/* ==============================================================
   ERGAR SERVICE BLUE BAND EXACT HEIGHT V1
   Sadece hizmet detayındaki lacivert başlık bandı
   ============================================================== */

.page-hero.ergar-service-hero,
.service-hero.ergar-service-hero,
section.ergar-service-hero,
.ergar-service-hero {
    box-sizing: border-box !important;

    width: 100% !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;

    padding-top: 18px !important;
    padding-bottom: 18px !important;

    display: block !important;
}

.page-hero.ergar-service-hero > .container,
.service-hero.ergar-service-hero > .container,
section.ergar-service-hero > .container,
.ergar-service-hero > .container {
    min-height: 0 !important;
    height: auto !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Breadcrumb */
.ergar-service-hero .breadcrumb,
.ergar-service-hero nav {
    margin-top: 0 !important;
    margin-bottom: 7px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Turuncu küçük başlık */
.ergar-service-hero .eyebrow,
.ergar-service-hero .page-eyebrow,
.ergar-service-hero .ergar-service-eyebrow {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

/* Ana başlık */
.ergar-service-hero h1 {
    margin-top: 0 !important;
    margin-bottom: 5px !important;

    padding: 0 !important;

    font-size: 31px !important;
    line-height: 1.06 !important;
}

/* Alt açıklama */
.ergar-service-hero p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px !important;
    line-height: 1.35 !important;
}

/*
 * Lacivert alan bittikten sonra görsel bölümü
 * hemen devam etsin.
 */
.service-detail-main,
.service-main,
.service-content-section,
.service-detail-section {
    margin-top: 0 !important;
    padding-top: 12px !important;
}

/* Mobil */
@media (max-width: 767.98px) {

    .page-hero.ergar-service-hero,
    .service-hero.ergar-service-hero,
    section.ergar-service-hero,
    .ergar-service-hero {
        height: auto !important;
        min-height: 0 !important;

        padding-top: 13px !important;
        padding-bottom: 14px !important;
    }

    .ergar-service-hero h1 {
        font-size: 25px !important;
    }

    .ergar-service-hero p {
        font-size: 12.5px !important;
    }
}


/* ==============================================================
   ERGAR SERVICE REFERENCE LAYOUT FINAL V1
   Referans görseldeki üst bölüm kompozisyonu
   ============================================================== */

/* LACIVERT BASLIK BANDI */
.ergar-service-hero {
    box-sizing: border-box !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 28px 0 30px !important;
    margin: 0 !important;
    background:
        linear-gradient(
            110deg,
            #142c51 0%,
            #294577 100%
        ) !important;
}

/* Hero içeriğini site kolonuna düzgün oturt */
.ergar-service-hero > .container,
.ergar-service-hero .container {
    width: 100% !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
}

/* Breadcrumb */
.ergar-service-hero .breadcrumb,
.ergar-service-hero nav[aria-label="breadcrumb"] {
    margin: 0 0 10px !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}

/* Küçük turuncu başlık */
.ergar-service-hero .eyebrow,
.ergar-service-hero .page-eyebrow,
.ergar-service-hero .ergar-service-eyebrow {
    margin: 0 0 7px !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
}

/* Ana başlık */
.ergar-service-hero h1 {
    margin: 0 0 10px !important;
    padding: 0 !important;
    max-width: 720px !important;
    color: #fff !important;
    font-size: clamp(34px, 3vw, 42px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    letter-spacing: -.035em !important;
}

/* Açıklama */
.ergar-service-hero p {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 760px !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}

/*
 * Hero ile fotoğraf arasına referans görseldeki
 * beyaz nefes alanını koy.
 */
.service-detail-main,
.service-main,
.service-content-section,
.service-detail-section {
    margin-top: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 30px !important;
}

/* Görsel + teklif alanını ortala */
.service-detail-grid,
.service-main-grid,
.service-content-grid,
.service-detail-layout {
    width: 100% !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    gap: 34px !important;
    align-items: start !important;
}

/* Fotoğraf kesinlikle banda yapışmasın */
.service-detail-image,
.service-main-image,
.service-featured-image,
.service-image {
    margin-top: 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
}

/* Teklif kutusu da görselle aynı hizada */
.service-sidebar,
.service-contact-card,
.service-quick-contact,
.service-quick-quote,
.quick-service-contact,
.service-quote-card {
    margin-top: 0 !important;
    position: relative !important;
    top: auto !important;
}

/* Mobil */
@media (max-width: 767.98px) {

    .ergar-service-hero {
        padding: 20px 0 22px !important;
    }

    .ergar-service-hero h1 {
        font-size: 28px !important;
        margin-bottom: 7px !important;
    }

    .ergar-service-hero p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .service-detail-main,
    .service-main,
    .service-content-section,
    .service-detail-section {
        padding-top: 18px !important;
        padding-bottom: 22px !important;
    }

    .service-detail-grid,
    .service-main-grid,
    .service-content-grid,
    .service-detail-layout {
        gap: 18px !important;
    }
}


/* ==============================================================
   ERGAR PREMIUM ABOUT PAGE V1
   ============================================================== */

.ergar-about-page {
    background: #fff;
    color: #10294e;
}

.ergar-about-page h1,
.ergar-about-page h2,
.ergar-about-page h3,
.ergar-about-page p {
    margin-top: 0;
}

.ergar-about-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(255,255,255,.13),
            transparent 34%
        ),
        linear-gradient(
            115deg,
            #10294e 0%,
            #203f73 100%
        );
}

.ergar-about-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, .65fr);
    gap: 70px;
    align-items: center;
}

.ergar-about-kicker,
.ergar-about-label {
    display: block;
    margin-bottom: 12px;
    color: #f58200;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ergar-about-hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.045em;
}

.ergar-about-lead {
    max-width: 720px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}

.ergar-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ergar-about-hero-panel {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 24px 70px rgba(5,20,45,.22);
    backdrop-filter: blur(8px);
}

.ergar-about-hero-panel span {
    display: block;
    margin-bottom: 14px;
    color: #ffb24c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ergar-about-hero-panel strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

.ergar-about-hero-panel p {
    margin: 0;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
}

.ergar-about-stats {
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.ergar-about-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ergar-about-stat {
    padding: 22px;
    border: 1px solid #e5ebf3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16,41,78,.08);
}

.ergar-about-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #10294e;
    font-size: 26px;
    line-height: 1;
}

.ergar-about-stat span {
    color: #6f7d90;
    font-size: 13px;
}

.ergar-about-section,
.ergar-about-soft,
.ergar-about-dark {
    padding: 76px 0;
}

.ergar-about-soft {
    background: #f5f7fb;
}

.ergar-about-story-grid,
.ergar-about-dark-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, .8fr)
        minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
}

.ergar-about-story-grid h2,
.ergar-about-heading h2,
.ergar-about-feature h2,
.ergar-about-dark h2,
.ergar-about-closing h2 {
    margin-bottom: 18px;
    color: #10294e;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.ergar-about-copy p,
.ergar-about-feature p,
.ergar-about-heading p,
.ergar-about-closing p {
    color: #647287;
    font-size: 16px;
    line-height: 1.8;
}

.ergar-about-copy p:last-child {
    margin-bottom: 0;
}

.ergar-about-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ergar-about-feature {
    padding: 34px;
    border: 1px solid #e3e9f1;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(16,41,78,.055);
}

.ergar-about-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #fff0df;
    color: #f58200;
    font-size: 12px;
    font-weight: 900;
}

.ergar-about-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.ergar-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ergar-about-value {
    min-height: 205px;
    padding: 26px;
    border: 1px solid #e4eaf2;
    border-radius: 18px;
    background: #fff;
}

.ergar-about-value > span,
.ergar-about-process > span {
    display: block;
    margin-bottom: 28px;
    color: #f58200;
    font-size: 12px;
    font-weight: 900;
}

.ergar-about-value h3,
.ergar-about-process h3 {
    margin-bottom: 10px;
    color: #10294e;
    font-size: 19px;
    font-weight: 800;
}

.ergar-about-value p,
.ergar-about-process p {
    margin-bottom: 0;
    color: #738095;
    font-size: 14px;
    line-height: 1.65;
}

.ergar-about-dark {
    background:
        linear-gradient(
            120deg,
            #0c2743 0%,
            #123c60 55%,
            #16324f 100%
        );
}

.ergar-about-dark h2 {
    color: #fff;
}

.ergar-about-dark p {
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}

.ergar-about-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ergar-about-check {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    color: #fff;
}

.ergar-about-check span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f58200;
    color: #fff;
    font-size: 12px;
}

.ergar-about-check strong {
    font-size: 13px;
}

.ergar-about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ergar-about-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 20px 22px;
    border: 1px solid #e1e8f1;
    border-radius: 15px;
    background: #fff;
    color: #10294e;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.ergar-about-service:hover {
    transform: translateY(-2px);
    border-color: #f4b46f;
    box-shadow: 0 14px 34px rgba(16,41,78,.08);
    color: #10294e;
}

.ergar-about-service strong {
    color: #f58200;
    font-size: 22px;
}

.ergar-about-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ergar-about-process {
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #fff;
}

.ergar-about-closing {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, .6fr);
    gap: 40px;
    align-items: center;
    padding: 38px 42px;
    border-radius: 22px;
    background:
        linear-gradient(
            110deg,
            #ed7600 0%,
            #f58b00 100%
        );
    box-shadow: 0 18px 46px rgba(229,112,0,.17);
}

.ergar-about-closing .ergar-about-label,
.ergar-about-closing h2,
.ergar-about-closing p {
    color: #fff;
}

.ergar-about-closing p {
    margin-bottom: 0;
    color: rgba(255,255,255,.84);
}

.ergar-about-closing-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 991.98px) {

    .ergar-about-hero {
        padding: 56px 0;
    }

    .ergar-about-hero-grid,
    .ergar-about-story-grid,
    .ergar-about-dark-grid,
    .ergar-about-closing {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ergar-about-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ergar-about-values-grid,
    .ergar-about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ergar-about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ergar-about-closing-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {

    .ergar-about-hero {
        padding: 40px 0;
    }

    .ergar-about-hero h1 {
        font-size: 38px;
    }

    .ergar-about-section,
    .ergar-about-soft,
    .ergar-about-dark {
        padding: 52px 0;
    }

    .ergar-about-stat-grid,
    .ergar-about-dual-grid,
    .ergar-about-values-grid,
    .ergar-about-services-grid,
    .ergar-about-process-grid,
    .ergar-about-check-grid {
        grid-template-columns: 1fr;
    }

    .ergar-about-stat {
        padding: 18px;
    }

    .ergar-about-feature,
    .ergar-about-closing {
        padding: 26px 22px;
    }

    .ergar-about-hero-panel {
        padding: 26px;
    }
}

/* ERGAR PREMIUM OFFER PAGE V2 */

.ergar-offer-v2 {
    background: #f5f7fa;
    color: #10294e;
}

.ergar-offer-v2-hero {
    padding: 56px 0 60px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(255,255,255,.12),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            #10294e 0%,
            #234574 100%
        );
}

.ergar-offer-v2-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0,1.35fr)
        minmax(280px,.65fr);
    gap: 64px;
    align-items: center;
}

.ergar-offer-v2-kicker,
.ergar-offer-v2-label,
.ergar-offer-v2-heading > span {
    display: block;
    margin-bottom: 10px;
    color: #f58200;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
}

.ergar-offer-v2-hero h1 {
    max-width: 780px;
    margin: 0 0 17px;
    color: #fff;
    font-size: clamp(38px,4vw,58px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.04em;
}

.ergar-offer-v2-hero-grid > div:first-child > p {
    max-width: 730px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.7;
}

.ergar-offer-v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 21px;
}

.ergar-offer-v2-tags span {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.84);
    font-size: 11px;
    font-weight: 650;
}

.ergar-offer-v2-hero-side {
    padding: 27px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 20px 55px rgba(5,20,45,.2);
}

.ergar-offer-v2-hero-side > span {
    display: block;
    margin-bottom: 12px;
    color: #ffad42;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
}

.ergar-offer-v2-hero-side strong {
    display: block;
    margin-bottom: 11px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
}

.ergar-offer-v2-hero-side p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.65;
}

.ergar-offer-v2-content {
    padding: 48px 0 55px;
}

.ergar-offer-v2-alert {
    margin-bottom: 22px;
    border-radius: 13px;
}

.ergar-offer-v2-layout {
    display: grid;
    grid-template-columns:
        minmax(0,1fr)
        330px;
    gap: 25px;
    align-items: start;
}

.ergar-offer-v2-form-card,
.ergar-offer-v2-side-card {
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    background: #fff;
    box-shadow:
        0 13px 38px
        rgba(16,41,78,.055);
}

.ergar-offer-v2-form-card {
    padding: 31px;
}

.ergar-offer-v2-heading {
    max-width: 720px;
    margin-bottom: 26px;
}

.ergar-offer-v2-heading h2,
.ergar-offer-v2-side-card h2 {
    margin: 0 0 10px;
    color: #10294e;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.ergar-offer-v2-heading h2 {
    font-size: 30px;
}

.ergar-offer-v2-heading p {
    margin: 0;
    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}

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

.ergar-offer-v2-group {
    padding: 25px 0;
    border-top: 1px solid #e9edf3;
}

.ergar-offer-v2-group > header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.ergar-offer-v2-group > header > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: #fff0df;
    color: #f58200;
    font-size: 11px;
    font-weight: 900;
}

.ergar-offer-v2-group header strong,
.ergar-offer-v2-group header small {
    display: block;
}

.ergar-offer-v2-group header strong {
    margin-bottom: 2px;
    color: #10294e;
    font-size: 14px;
}

.ergar-offer-v2-group header small {
    color: #8b97a8;
    font-size: 11px;
}

.ergar-offer-v2-form .form-label {
    margin-bottom: 6px;
    color: #314967;
    font-size: 12px;
    font-weight: 750;
}

.ergar-offer-v2-form .form-control,
.ergar-offer-v2-form .form-select {
    min-height: 47px;
    border: 1px solid #dce3ec;
    border-radius: 10px;
    background-color: #fff;
    color: #193757;
    font-size: 13px;
}

.ergar-offer-v2-form textarea.form-control {
    min-height: 128px;
    resize: vertical;
}

.ergar-offer-v2-form .form-control:focus,
.ergar-offer-v2-form .form-select:focus {
    border-color: #f2a254;
    box-shadow:
        0 0 0 3px
        rgba(245,130,0,.10);
}

.ergar-offer-v2-submit {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    padding-top: 23px;
    border-top: 1px solid #e9edf3;
}

.ergar-offer-v2-submit strong,
.ergar-offer-v2-submit small {
    display: block;
}

.ergar-offer-v2-submit strong {
    margin-bottom: 3px;
    color: #10294e;
    font-size: 12px;
}

.ergar-offer-v2-submit small {
    max-width: 430px;
    color: #8793a5;
    font-size: 10.5px;
    line-height: 1.5;
}

.ergar-offer-v2-sidebar {
    display: grid;
    gap: 17px;
}

.ergar-offer-v2-side-card {
    padding: 23px;
}

.ergar-offer-v2-side-card h2 {
    font-size: 22px;
}

.ergar-offer-v2-side-card ol {
    display: grid;
    gap: 17px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.ergar-offer-v2-side-card li {
    display: flex;
    gap: 11px;
}

.ergar-offer-v2-side-card li > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #10294e;
    color: #fff;
    font-size: 10px;
    font-weight: 850;
}

.ergar-offer-v2-side-card li strong {
    display: block;
    margin: 2px 0 3px;
    color: #193757;
    font-size: 12.5px;
}

.ergar-offer-v2-side-card li p {
    margin: 0;
    color: #7c899b;
    font-size: 11px;
    line-height: 1.55;
}

.ergar-offer-v2-contact {
    display: block;
    margin-top: 9px;
    padding: 12px 13px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #10294e;
    text-decoration: none;
}

.ergar-offer-v2-contact:hover {
    border-color: #f3b069;
    background: #fffaf5;
    color: #10294e;
}

.ergar-offer-v2-contact span,
.ergar-offer-v2-contact strong,
.ergar-offer-v2-static span,
.ergar-offer-v2-static strong {
    display: block;
}

.ergar-offer-v2-contact span,
.ergar-offer-v2-static span {
    margin-bottom: 2px;
    color: #8b97a8;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ergar-offer-v2-contact strong,
.ergar-offer-v2-static strong {
    color: #193757;
    font-size: 12.5px;
}

.ergar-offer-v2-static {
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #e8edf3;
}

.ergar-offer-v2-address {
    margin-top: 12px;
    color: #7c899b;
    font-size: 11px;
    line-height: 1.6;
}

.ergar-offer-v2-bottom {
    padding: 0 0 58px;
}

.ergar-offer-v2-info-grid {
    display: grid;
    grid-template-columns:
        repeat(4,1fr);
    gap: 13px;
}

.ergar-offer-v2-info-grid article {
    padding: 21px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.ergar-offer-v2-info-grid article > span {
    display: block;
    margin-bottom: 18px;
    color: #f58200;
    font-size: 10px;
    font-weight: 900;
}

.ergar-offer-v2-info-grid strong {
    display: block;
    margin-bottom: 6px;
    color: #10294e;
    font-size: 14px;
}

.ergar-offer-v2-info-grid p {
    margin: 0;
    color: #7b889a;
    font-size: 11.5px;
    line-height: 1.6;
}

@media (max-width: 991.98px) {

    .ergar-offer-v2-hero-grid,
    .ergar-offer-v2-layout {
        grid-template-columns: 1fr;
    }

    .ergar-offer-v2-hero-grid {
        gap: 27px;
    }

    .ergar-offer-v2-sidebar {
        grid-template-columns:
            repeat(2,1fr);
    }

    .ergar-offer-v2-info-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
}

@media (max-width: 767.98px) {

    .ergar-offer-v2-hero {
        padding: 40px 0 44px;
    }

    .ergar-offer-v2-hero h1 {
        font-size: 35px;
    }

    .ergar-offer-v2-content {
        padding: 30px 0 40px;
    }

    .ergar-offer-v2-form-card {
        padding: 22px 17px;
    }

    .ergar-offer-v2-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .ergar-offer-v2-submit .btn {
        width: 100%;
    }

    .ergar-offer-v2-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {

    .ergar-offer-v2-info-grid {
        grid-template-columns: 1fr;
    }

    .ergar-offer-v2-hero-side {
        padding: 21px;
    }
}

/* END ERGAR PREMIUM OFFER PAGE V2 */

/* ERGAR REFERENCES TEMPLATE V2 */

.ergar-ref-page{
    background:#fff;
    color:#183653
}

.ergar-ref-page .container{
    max-width:1140px
}

.ergar-ref-hero{
    padding:54px 0 60px;
    background:
        linear-gradient(
            112deg,
            #142f54 0%,
            #234774 100%
        );
    color:#fff
}

.ergar-ref-eyebrow{
    display:block;
    margin-bottom:12px;
    color:#f58200;
    font-size:11px;
    font-weight:800;
    letter-spacing:.1em
}

.ergar-ref-hero-grid{
    display:grid;
    grid-template-columns:
        minmax(0,1.35fr)
        minmax(280px,.65fr);
    gap:64px;
    align-items:center
}

.ergar-ref-hero h1{
    max-width:700px;
    margin:0 0 16px;
    font-size:clamp(36px,4.7vw,58px);
    font-weight:800;
    line-height:1.03;
    letter-spacing:-.04em
}

.ergar-ref-hero p{
    max-width:680px;
    margin:0;
    color:rgba(255,255,255,.76);
    font-size:16px;
    line-height:1.7
}

.ergar-ref-hero-note{
    padding:25px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:16px;
    background:rgba(255,255,255,.08)
}

.ergar-ref-hero-note span{
    display:block;
    color:#f6a13d;
    font-size:10px;
    font-weight:800
}

.ergar-ref-hero-note strong{
    display:block;
    margin:8px 0 10px;
    font-size:30px;
    line-height:1.1
}

.ergar-ref-hero-note p{
    font-size:13px;
    line-height:1.6
}

.ergar-ref-featured{
    padding:68px 0
}

.ergar-ref-featured-card{
    display:grid;
    grid-template-columns:1.18fr .82fr;
    gap:48px;
    padding:42px;
    border:1px solid #e2e8ef;
    border-radius:20px;
    background:#fff;
    box-shadow:
        0 18px 50px rgba(20,47,82,.07)
}

.ergar-ref-featured-copy h2,
.ergar-ref-section-head h2,
.ergar-ref-solutions h2,
.ergar-ref-cta h2{
    margin:0 0 15px;
    color:#17375d;
    font-size:clamp(27px,3vw,40px);
    font-weight:800;
    line-height:1.08;
    letter-spacing:-.03em
}

.ergar-ref-featured-copy p,
.ergar-ref-section-head p,
.ergar-ref-solutions p{
    color:#65768a;
    font-size:14px;
    line-height:1.75
}

.ergar-ref-featured-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px
}

.ergar-ref-featured-stats article{
    padding:20px;
    border:1px solid #e4e9ef;
    border-radius:14px;
    background:#f8fafc
}

.ergar-ref-featured-stats strong{
    display:block;
    margin-bottom:5px;
    color:#173966;
    font-size:16px
}

.ergar-ref-featured-stats span{
    color:#79889a;
    font-size:11px;
    line-height:1.5
}

.ergar-ref-process{
    padding:66px 0;
    background:#f5f8fb
}

.ergar-ref-section-head{
    max-width:720px;
    margin-bottom:32px
}

.ergar-ref-process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:11px
}

.ergar-ref-process-grid article{
    padding:21px;
    border:1px solid #e1e7ed;
    border-radius:14px;
    background:#fff
}

.ergar-ref-process-grid article>span{
    color:#f58200;
    font-size:10px;
    font-weight:800
}

.ergar-ref-process-grid h3{
    margin:14px 0 7px;
    color:#17375d;
    font-size:15px;
    font-weight:800
}

.ergar-ref-process-grid p{
    margin:0;
    color:#748397;
    font-size:11px;
    line-height:1.6
}

.ergar-ref-solutions{
    padding:70px 0
}

.ergar-ref-solutions-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:65px
}

.ergar-ref-solution-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px
}

.ergar-ref-solution-list a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 19px;
    border:1px solid #e0e6ed;
    border-radius:12px;
    color:#173966;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    transition:.18s ease
}

.ergar-ref-solution-list a:hover{
    border-color:#f58200;
    transform:translateY(-2px)
}

.ergar-ref-solution-list a span{
    color:#f58200
}

.ergar-ref-cta{
    padding:8px 0 72px
}

.ergar-ref-cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:38px;
    padding:36px 40px;
    border-radius:20px;
    background:
        linear-gradient(
            112deg,
            #f58200,
            #e96e00
        );
    color:#fff
}

.ergar-ref-cta-box>div:first-child{
    max-width:650px
}

.ergar-ref-cta-box>div:first-child>span{
    font-size:10px;
    font-weight:800;
    letter-spacing:.09em
}

.ergar-ref-cta h2{
    margin-top:8px;
    color:#fff
}

.ergar-ref-cta p{
    margin:0;
    color:rgba(255,255,255,.82);
    font-size:13px;
    line-height:1.65
}

.ergar-ref-cta-actions{
    display:flex;
    flex-direction:column;
    gap:8px;
    min-width:180px
}

@media(max-width:991px){

    .ergar-ref-hero-grid,
    .ergar-ref-featured-card,
    .ergar-ref-solutions-grid{
        grid-template-columns:1fr;
        gap:30px
    }

    .ergar-ref-process-grid{
        grid-template-columns:
            repeat(2,1fr)
    }

}

@media(max-width:767px){

    .ergar-ref-hero{
        padding:40px 0 44px
    }

    .ergar-ref-featured,
    .ergar-ref-process,
    .ergar-ref-solutions{
        padding:46px 0
    }

    .ergar-ref-featured-card{
        padding:24px
    }

    .ergar-ref-featured-stats,
    .ergar-ref-process-grid,
    .ergar-ref-solution-list{
        grid-template-columns:1fr
    }

    .ergar-ref-cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding:27px
    }

    .ergar-ref-cta-actions{
        width:100%
    }

}

/* END ERGAR REFERENCES TEMPLATE V2 */

/* ERGAR FINAL FRONTEND V1 */

.home-references-section{
    padding-top:72px;
    padding-bottom:72px;
    background:#f5f8fb
}

.home-references-shell{
    display:grid;
    grid-template-columns:
        minmax(0,.9fr)
        minmax(0,1.1fr);
    gap:54px;
    align-items:center
}

.home-references-copy{
    max-width:560px
}

.home-reference-feature{
    position:relative;
    overflow:hidden;
    padding:38px 40px;
    border-radius:22px;
    background:
        linear-gradient(
            120deg,
            #142e53 0%,
            #254c7e 100%
        );
    box-shadow:
        0 24px 55px
        rgba(22,51,88,.14);
    color:#fff
}

.home-reference-feature::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-90px;
    bottom:-110px;
    border-radius:50%;
    background:
        rgba(255,255,255,.06)
}

.home-reference-kicker{
    display:block;
    margin-bottom:12px;
    color:#f59a2d;
    font-size:11px;
    font-weight:800;
    letter-spacing:.1em
}

.home-reference-brand{
    display:block;
    margin-bottom:14px;
    font-size:clamp(32px,4vw,48px);
    font-weight:800;
    line-height:1;
    letter-spacing:-.035em
}

.home-reference-feature p{
    position:relative;
    z-index:1;
    max-width:620px;
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.7
}

.home-reference-points{
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:24px
}

.home-reference-points span{
    padding:8px 12px;
    border:1px solid
        rgba(255,255,255,.14);
    border-radius:999px;
    background:
        rgba(255,255,255,.08);
    color:rgba(255,255,255,.9);
    font-size:10px;
    font-weight:700
}

.contact-map-section{
    padding-top:20px;
    padding-bottom:72px
}

.contact-map-heading{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:26px
}

.contact-map-heading>div{
    max-width:700px
}

.contact-map-frame{
    overflow:hidden;
    width:100%;
    border:1px solid #dfe6ed;
    border-radius:20px;
    background:#f3f5f7;
    box-shadow:
        0 16px 45px
        rgba(25,52,87,.08)
}

.contact-map-frame iframe{
    display:block;
    width:100%;
    height:430px;
    border:0
}

@media(max-width:991px){

    .home-references-shell{
        grid-template-columns:1fr;
        gap:32px
    }

}

@media(max-width:767px){

    .home-references-section{
        padding-top:48px;
        padding-bottom:48px
    }

    .home-reference-feature{
        padding:27px 24px;
        border-radius:17px
    }

    .contact-map-heading{
        align-items:flex-start;
        flex-direction:column
    }

    .contact-map-frame iframe{
        height:340px
    }

}

/* END ERGAR FINAL FRONTEND V1 */
