:root {
    --bg: #ffffff;
    --bg-soft: #f4f8ff;
    --bg-deep: #0e1a33;
    --text: #101010;
    --text-soft: #5a5f6b;
    --brand: #0b70e1;
    --brand-strong: #1d68e5;
    --line: #dce6f8;
    --success: #0f8a3c;
    --error: #ba1f33;
    --radius: 14px;
    --shadow: 0 18px 40px rgba(11, 112, 225, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fbfdff 0%, #f1f6ff 30%, #ffffff 100%);
    line-height: 1.6;
    padding-top: 44px;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    background: #1259c7;
    color: #fff;
    font-size: 0.82rem;
    font-family: 'Livvic', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
}

.topbar .container {
    width: min(1540px, calc(100% - 2.5rem));
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
    padding-left: 0;
    flex-wrap: nowrap;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
}

.top-item + .top-item {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: 1.1rem;
}

.top-icon {
    font-size: 0.78rem;
    line-height: 1;
}

.topbar-social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-left: auto;
}

.topbar-social a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.84rem;
}

.nav-shell {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.nav-shell.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-shell .container {
    width: min(1540px, calc(100% - 2rem));
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 104px;
    transition: min-height 0.3s ease;
}

.brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.brand-name {
    margin-left: 0.8rem;
    padding-left: 0.9rem;
    border-left: 1px solid rgba(11, 112, 225, 0.25);
    white-space: nowrap;
    font-family: 'Livvic', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    color: var(--brand);
    line-height: 1;
    transition: font-size 0.3s ease;
}

.brand img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 0;
    transition: width 0.3s ease, height 0.3s ease;
}

@media (min-width: 761px) {
    body {
        padding-top: 44px;
    }

    .topbar-contact {
        flex-wrap: nowrap;
    }

    .nav-shell.scrolled {
        position: fixed;
        top: 44px;
        left: 0;
        right: 0;
        z-index: 120;
        width: 100%;
    }

    .nav-shell.scrolled .nav-wrap {
        min-height: 78px;
    }

    .nav-shell.scrolled .brand img {
        width: 56px;
        height: 56px;
    }

    .nav-shell.scrolled .brand-name {
        font-size: 1.4rem;
    }

    .nav-shell.scrolled .search-icon {
        opacity: 0;
        width: 0;
        margin-right: 0;
        pointer-events: none;
    }
}

.site-nav {
    margin-right: 1.5rem;
}

.site-nav > ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    font-family: 'Livvic', sans-serif;
    font-weight: 600;
    color: #131313;
    position: relative;
    font-size: 1rem;
    line-height: 1;
}

.site-nav li {
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--brand);
}

.plus-mark {
    font-weight: 600;
    margin-left: 0.15rem;
    font-size: 1rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 7px;
    min-width: 252px;
    padding: 0.75rem 0;
    border: 1px solid #eceef2;
    box-shadow: 0 12px 26px rgba(31, 45, 76, 0.16);
    display: none;
    z-index: 250;
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.05rem;
    font-weight: 500;
    color: #262626;
    font-size: 1.02rem;
    line-height: 1.2;
}

.dropdown-menu a:hover {
    background: #f5f8ff;
    color: var(--brand);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    display: block;
}

.search-icon {
    margin-right: 0.3rem;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 1.38rem;
    line-height: 1;
    padding: 0;
    width: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.25s ease, width 0.25s ease, margin-right 0.25s ease;
}

.mobile-menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    color: #111;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.db-status {
    text-align: center;
    padding: 0.55rem 1rem;
    background: #fff5d8;
    color: #7a5b0d;
    font-size: 0.85rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, rgba(17, 109, 226, 0.28), transparent 35%),
        linear-gradient(130deg, #081730 0%, #142f57 48%, #1a4d86 100%);
    padding: 4.5rem 0 3.5rem;
    color: #fff;
}

.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 78vh;
    padding: 7rem 0 9rem;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 70% 92%, 0 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 23, 48, 0.78) 0%, rgba(20, 47, 87, 0.62) 55%, rgba(26, 77, 134, 0.45) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.hero-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.hero-copy h1 {
    font-size: clamp(1.9rem, 2.6vw, 2.9rem);
    line-height: 1.25;
    margin: 0 0 1rem;
}

.hero-banner .hero-copy h1 {
    font-size: clamp(2.4rem, 4.4vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    max-width: 22ch;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 62ch;
    margin: 0 0 1.5rem;
}

.hero-banner .hero-copy p {
    font-size: 1.05rem;
    max-width: 68ch;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-pill {
    padding: 0.95rem 1.9rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    gap: 0.4rem;
}

.btn-pill span {
    transition: transform 0.2s ease;
    display: inline-block;
}

.btn-pill:hover span {
    transform: translateX(4px);
}

@media (max-width: 760px) {
    .hero-banner {
        min-height: 60vh;
        padding: 5rem 0 7rem;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 96%, 0 100%);
    }
}

.chat-bubble {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 12px 28px rgba(11, 112, 225, 0.45);
    z-index: 200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(11, 112, 225, 0.55);
}

.appointment-card {
    background: #fff;
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.appointment-card h2 {
    margin: 0;
    font-size: 1.35rem;
}

.appointment-card > p {
    color: var(--text-soft);
    margin-top: 0.5rem;
}

.appointment-card form {
    display: grid;
    gap: 0.8rem;
}

.appointment-card label span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.appointment-card input,
.appointment-card textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font: inherit;
}

.consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.6rem;
    align-items: start;
    font-size: 0.78rem;
    color: var(--text-soft);
}

.consent input {
    margin-top: 0.2rem;
}

.alert {
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.alert.success {
    background: #e8f8ef;
    color: var(--success);
    border: 1px solid #b8e7c8;
}

.alert.error {
    background: #fff0f3;
    color: var(--error);
    border: 1px solid #f3bcc7;
}

.field-error {
    color: var(--error);
    font-size: 0.78rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-strong));
    color: #fff;
}

.btn-outline {
    border-color: var(--brand);
    color: var(--brand);
    background: #fff;
}

.section-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.center {
    text-align: center;
}

.about-section,
.services-section,
.process-section,
.blog-section,
.cta-call-section,
.content-section,
.contact-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 520px;
}

.about-images img {
    position: absolute;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(8, 23, 48, 0.18);
}

.about-images img:nth-child(1) {
    top: 0;
    left: 0;
    width: 44%;
    height: 250px;
    z-index: 2;
}

.about-images img:nth-child(2) {
    top: 70px;
    right: 0;
    width: 58%;
    height: 330px;
    z-index: 3;
}

.about-images img:nth-child(3) {
    bottom: 0;
    left: 6%;
    width: 48%;
    height: 240px;
    z-index: 2;
}

@media (max-width: 900px) {
    .about-images {
        position: static;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .about-images img {
        position: static;
        width: 100%;
        height: 200px;
        box-shadow: none;
    }

    .about-images img:nth-child(1) {
        grid-column: span 2;
    }
}

.about-copy h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.about-copy p {
    color: var(--text-soft);
}

.services-section {
    background: var(--bg-soft);
}

.section-heading {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0.4rem auto 0;
    max-width: 22ch;
    color: var(--text);
}

.section-divider {
    display: block;
    width: 90px;
    height: 2px;
    background: var(--brand);
    margin: 1.4rem auto 0;
    position: relative;
}

.section-divider::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    top: 50%;
    left: 0;
    animation: divider-slide 2.8s ease-in-out infinite alternate;
}

@keyframes divider-slide {
    from { left: 0; transform: translate(0, -50%); }
    to { left: 100%; transform: translate(-100%, -50%); }
}

@media (prefers-reduced-motion: reduce) {
    .section-divider::after {
        animation: none;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.service-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

a.service-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 16px 30px rgba(11, 112, 225, 0.18);
}

.service-card-cta {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.9rem;
}

.section-divider-left {
    margin: 1.2rem 0 1.6rem;
}

.service-intro {
    padding: 6rem 0;
    background: #fff;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-copy h2.section-heading {
    margin: 0.4rem 0 0;
    max-width: none;
    text-align: left;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.service-intro-copy .section-kicker {
    text-align: left;
}

.service-lead {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.4rem;
}

.service-body {
    color: var(--text-soft);
    line-height: 1.75;
    margin: 0 0 2rem;
}

.service-cta {
    background: linear-gradient(135deg, #1259c7, #0b1452);
    border: none;
}

.service-intro-visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 520px;
    margin: 0 auto;
}

.service-circle {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(8, 23, 48, 0.18);
    z-index: 2;
}

.service-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-dot-pattern {
    position: absolute;
    width: 160px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(11, 112, 225, 0.45) 1.5px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.7;
    z-index: 1;
}

.service-dot-pattern-top {
    top: 0;
    right: 0;
}

.service-dot-pattern-bottom {
    bottom: 4%;
    left: 0;
    width: 120px;
    height: 80px;
    opacity: 0.55;
}

.service-accent-shape {
    position: absolute;
    bottom: 4%;
    left: 10%;
    width: 120px;
    height: 70px;
    background: linear-gradient(135deg, rgba(11, 112, 225, 0.55), rgba(11, 20, 82, 0.4));
    border-radius: 50% 50% 8px 50%;
    transform: rotate(-18deg);
    z-index: 1;
    opacity: 0.7;
}

/* Services page — Working Process */
.services-process {
    background: linear-gradient(135deg, #0b1452, #0b70e1);
    color: #fff;
    padding: 5rem 0 6rem;
}

.services-process-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
}

.services-process-intro .section-kicker {
    color: rgba(255, 255, 255, 0.8);
}

.services-process-intro h2 {
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 0.5rem 0 0;
}

.services-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 2.5rem;
}

.process-step-num {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.process-step h3 {
    margin: 0.4rem 0 0.5rem;
    font-size: 1.25rem;
    color: #fff;
}

.process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services page — Request a Free Quote */
.services-quote {
    padding: 5rem 0 6rem;
    background: #fff;
}

.services-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(8, 23, 48, 0.12);
}

.services-quote-media {
    position: relative;
    min-height: 420px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0, transparent 40%),
        linear-gradient(135deg, #153763, #1d68e5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-quote-badge {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.services-quote-panel {
    padding: 2.6rem;
    background: linear-gradient(135deg, #0b1452, #1d68e5);
    color: #fff;
}

.services-quote-panel h2 {
    color: #fff;
    margin: 0.3rem 0 1.5rem;
    font-size: 2rem;
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.85);
}

/* Optional background images for the gradient sections (set from the panel) */
.process-intro-card,
.services-process,
.services-quote-media {
    background-size: cover;
    background-position: center;
}

.services-quote-media.has-image .services-quote-badge {
    display: none;
}

@media (max-width: 900px) {
    .services-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-quote-grid {
        grid-template-columns: 1fr;
    }

    .services-quote-media {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .services-process-steps {
        grid-template-columns: 1fr;
    }
}

.service-offers {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.service-offers-heading {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 800;
    margin: 0 0 3rem;
    color: var(--text);
}

.service-offer-list {
    display: grid;
    gap: 2rem;
    max-width: 940px;
}

.service-offer h3 {
    margin: 0 0 0.6rem;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.45;
}

.service-offer p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1.02rem;
}

@media (max-width: 960px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-intro-visual {
        order: -1;
        max-width: 420px;
        height: 420px;
    }
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.service-card h3,
.service-card h2 {
    margin: 0.9rem 0 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-soft);
    margin: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.5rem;
    align-items: stretch;
}

.process-intro-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    color: #fff;
    background:
        radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.1) 0, transparent 45%),
        linear-gradient(150deg, #0b1452, #1d68e5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 22px 55px rgba(8, 23, 48, 0.22);
}

.process-intro-card .section-kicker {
    color: rgba(255, 255, 255, 0.8);
}

.process-intro-card h2 {
    color: #fff;
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    line-height: 1.2;
    margin: 0.5rem 0 1.75rem;
}

.process-intro-card .btn {
    align-self: flex-start;
    background: #fff;
    color: var(--brand-strong);
    border: 0;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
}

.process-intro-card .btn:hover {
    background: #eef3fb;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
    align-content: center;
}

.metric-card {
    padding: 0;
    background: transparent;
    border: 0;
}

.metric-card strong {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-strong);
}

.metric-card h3 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.25rem;
}

.metric-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.partners-strip {
    background: linear-gradient(120deg, #153763, #1d68e5);
    padding: 2.5rem 0;
    overflow: hidden;
}

.partner-marquee {
    --logos-visible: 5;
    --marquee-max: 1200px;
    --logo-gap: 0.9rem;
    width: 100%;
    max-width: var(--marquee-max);
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.partner-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    align-items: center;
    animation: partner-scroll 40s linear infinite;
    will-change: transform;
}

.partner-marquee:hover .partner-track {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 auto;
    width: calc((min(100vw, var(--marquee-max)) / var(--logos-visible)) - var(--logo-gap));
    height: 128px;
    margin-right: var(--logo-gap);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.5rem 0.7rem;
    box-shadow: 0 8px 20px rgba(10, 30, 70, 0.18);
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes partner-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
    .partner-marquee {
        --logos-visible: 4;
    }
}

@media (max-width: 992px) {
    .partner-marquee {
        --logos-visible: 3;
    }
}

@media (max-width: 640px) {
    .partner-marquee {
        --logos-visible: 2;
    }
}

.blog-page-section {
    padding: 5rem 0 6rem;
    background: #fff;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

.blog-feed {
    display: grid;
    gap: 2.5rem;
}

.blog-post-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(11, 112, 225, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(11, 112, 225, 0.14);
}

.blog-post-image {
    position: relative;
    background: var(--bg-soft);
}

.blog-post-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.blog-post-chip {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-family: 'Livvic', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(11, 112, 225, 0.4);
}

.blog-post-body {
    padding: 2rem 2rem 2.2rem;
}

.blog-post-title {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 0.8rem;
    color: var(--text);
}

.blog-post-author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand);
    font-size: 0.95rem;
    margin: 0 0 1rem;
    font-weight: 600;
}

.blog-post-excerpt {
    color: var(--text-soft);
    line-height: 1.75;
    margin: 0 0 1.4rem;
}

.blog-post-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand);
    font-weight: 700;
    font-size: 1rem;
    transition: gap 0.2s ease;
}

.blog-post-cta:hover {
    gap: 0.7rem;
}

.blog-sidebar {
    display: grid;
    gap: 2rem;
    position: sticky;
    top: 160px;
}

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(11, 112, 225, 0.06);
    padding: 1.6rem 1.5rem;
}

.sidebar-search {
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 0.35rem 0.35rem 0.35rem 1rem;
    gap: 0.5rem;
}

.sidebar-search input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.75rem 0;
    font: inherit;
    color: var(--text);
    outline: none;
}

.sidebar-search input::placeholder {
    color: #98a1b4;
}

.sidebar-search button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.sidebar-search button:hover {
    color: var(--brand);
}

.sidebar-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--brand);
    display: inline-block;
    color: var(--text);
}

.recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.recent-post-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.recent-post-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.recent-post-thumb {
    display: block;
    width: 80px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-soft);
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.recent-post-meta {
    display: grid;
    gap: 0.3rem;
}

.recent-post-title {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.recent-post-title:hover {
    color: var(--brand);
}

.recent-post-date {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.categories-list li {
    border-bottom: 1px solid var(--line);
}

.categories-list li:last-child {
    border-bottom: 0;
}

.categories-list a {
    display: block;
    padding: 0.85rem 0;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.categories-list a:hover {
    color: var(--brand);
    padding-left: 0.4rem;
}

@media (max-width: 960px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-post-image img {
        height: 260px;
    }
}

.blog-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}

.blog-card img {
    border-radius: 0;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.blog-card .chip {
    display: inline-block;
    margin: 0.85rem 0.85rem 0.2rem;
    font-size: 0.72rem;
    background: #edf4ff;
    color: var(--brand);
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
}

.blog-card small,
.blog-card h3,
.blog-card p,
.blog-card a {
    display: block;
    margin-left: 0.85rem;
    margin-right: 0.85rem;
}

.blog-card h3 {
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
}

.blog-card p {
    color: var(--text-soft);
}

.blog-card a {
    margin-bottom: 0.9rem;
    color: var(--brand);
    font-weight: 700;
}

.cta-call-section {
    color: #fff;
    background:
        radial-gradient(rgba(255, 255, 255, 0.10) 1.5px, transparent 2px) 0 0 / 22px 22px,
        linear-gradient(120deg, #0a1147, #14246e);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-image-wrap img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.cta-copy {
    text-align: center;
}

.cta-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-strong);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.cta-copy h2,
.cta-copy h3 {
    margin: 0;
    color: #fff;
}

.cta-copy h3 {
    margin-top: 0.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 460px;
    margin: 1rem auto 1.5rem;
    line-height: 1.6;
}

.cta-copy .btn {
    background: linear-gradient(135deg, #1d68e5, #3b86ff);
    border: 0;
    color: #fff;
    border-radius: 999px;
    padding: 0.9rem 2.4rem;
    font-weight: 700;
}

.inner-hero {
    padding: 3rem 0;
    background: linear-gradient(125deg, #0e1a33, #1b4f8b);
    color: #fff;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 62ch;
}

.content-section p {
    color: var(--text-soft);
}

.spacing-top {
    margin-top: 1.5rem;
}

.page-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 23, 48, 0.55) 0%, rgba(20, 47, 87, 0.42) 60%, rgba(26, 77, 134, 0.35) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Livvic', sans-serif;
    font-size: 0.95rem;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.92);
}

.breadcrumb a {
    color: #fff;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #cfe1ff;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.6rem;
    border-radius: 999px;
    background: #e6efff;
    color: var(--brand);
    font-family: 'Livvic', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.badge-pill-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #6ea6ff;
    border: 1px solid rgba(110, 166, 255, 0.35);
}

.about-us-split {
    padding: 6rem 0;
    background: #fff;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 500px;
    margin: 0 auto;
}

.about-us-arcs {
    position: absolute;
    top: -8%;
    left: -6%;
    right: 12%;
    bottom: 12%;
    border-radius: 50%;
    border: 14px solid transparent;
    border-top-color: rgba(176, 186, 224, 0.55);
    border-left-color: rgba(176, 186, 224, 0.55);
    transform: rotate(-22deg);
    pointer-events: none;
}

.about-us-arcs::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: rgba(11, 112, 225, 0.35);
    transform: rotate(18deg);
}

.about-us-circle {
    position: absolute;
    inset: 6% 6%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(8, 23, 48, 0.15);
}

.about-us-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-us-dots {
    position: absolute;
    right: 4%;
    bottom: 2%;
    width: 140px;
    height: 90px;
    background-image: radial-gradient(circle, var(--brand) 1.5px, transparent 1.8px);
    background-size: 14px 14px;
    opacity: 0.55;
    border-radius: 8px;
}

.about-us-copy h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 1.2rem 0 1.3rem;
    color: var(--text);
}

.about-us-lead {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1.2rem;
}

.about-us-copy p {
    color: var(--text-soft);
    line-height: 1.75;
    margin: 0 0 1.1rem;
}

.why-choose-section {
    padding: 6rem 0;
    background: #fff;
}

.why-choose-heading {
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto 3.5rem;
    color: var(--text);
    max-width: 22ch;
}

.why-choose-trail {
    position: relative;
}

.why-trail-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.why-circles {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.why-circle {
    position: relative;
    text-align: center;
    padding: 1rem 0.5rem;
}

.why-photo {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 8px;
    border: 1.5px dashed var(--brand);
    background: #fff;
}

.why-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.why-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0a1a4a;
    z-index: 2;
}

.why-dot-top {
    top: 18px;
    right: 8%;
}

.why-dot-bottom {
    top: 195px;
    left: 4%;
}

.why-circle h3 {
    margin: 1.6rem 0 0;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 700;
}

.consult-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #0b1452 0%, #0e1f7d 50%, #0b1452 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.consult-section::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 80px rgba(255, 255, 255, 0.025),
        0 0 0 200px rgba(255, 255, 255, 0.02),
        0 0 0 360px rgba(255, 255, 255, 0.015);
    pointer-events: none;
}

.consult-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.consult-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 800;
    margin: 1.2rem 0 0;
    color: #fff;
}

.consult-form-wrap {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.consult-card {
    background: #fff;
    color: var(--text);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.consult-image {
    background: #d6d6d6;
    min-height: 480px;
}

.consult-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.consult-form {
    padding: 3rem 2.5rem;
    display: grid;
    gap: 1.2rem;
    align-content: center;
}

.consult-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    font: inherit;
    background: #fff;
    color: var(--text);
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
    color: #98a1b4;
}

.consult-form input:focus,
.consult-form textarea:focus {
    outline: 2px solid var(--brand);
    outline-offset: 1px;
    border-color: var(--brand);
}

.consult-submit {
    justify-self: start;
    padding: 1rem 2.4rem;
    background: linear-gradient(135deg, #1259c7, #0b1452);
    border: none;
}

@media (max-width: 960px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-us-visual {
        max-width: 420px;
        height: 420px;
    }

    .why-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .why-trail-svg {
        display: none;
    }

    .consult-card {
        grid-template-columns: 1fr;
    }

    .consult-image {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .why-circles {
        grid-template-columns: 1fr;
    }

    .why-photo {
        width: 200px;
        height: 200px;
    }

    .consult-row {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.contact-phone {
    color: var(--brand-strong);
    font-weight: 800;
    font-size: 1.5rem;
}

.legal-section {
    padding: 5rem 0 6rem;
    background: #fff;
}

.legal-content {
    max-width: 940px;
}

.legal-content h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 800;
    color: var(--text);
    margin: 2.5rem 0 1.1rem;
    line-height: 1.2;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.8rem 0 0.8rem;
}

.legal-content p {
    color: var(--text-soft);
    line-height: 1.8;
    margin: 0 0 1.1rem;
    font-size: 1.02rem;
}

.legal-content ul {
    color: var(--text-soft);
    line-height: 1.8;
    margin: 0 0 1.4rem;
    padding-left: 1.4rem;
}

.legal-content ul li {
    margin-bottom: 0.4rem;
}

.legal-link {
    color: var(--brand);
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: var(--brand-strong);
    text-decoration: underline;
}

.legal-address {
    font-style: normal;
    color: var(--text-soft);
    line-height: 1.9;
    background: var(--bg-soft);
    border-left: 4px solid var(--brand);
    padding: 1.4rem 1.6rem;
    border-radius: 0 10px 10px 0;
}

.legal-address i {
    color: var(--brand);
    margin-right: 0.35rem;
}

.contact-split-section {
    padding: 5rem 0 6rem;
    background: #fff;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-info-panel {
    background: linear-gradient(155deg, #1259c7 0%, #2980f0 100%);
    color: #fff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 50px rgba(11, 112, 225, 0.25);
}

.contact-info-kicker {
    font-family: 'Livvic', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem;
}

.contact-info-panel h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 2.4rem;
    color: #fff;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.6rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.1rem;
    align-items: center;
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.contact-info-item > div {
    display: grid;
    gap: 0.15rem;
    color: rgba(255, 255, 255, 0.92);
}

.contact-info-item strong {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: #cfe1ff;
}

.contact-form-panel {
    background: transparent;
    padding: 1rem 0 0 1rem;
}

.contact-form-panel .section-kicker {
    text-align: left;
    margin-bottom: 0.6rem;
}

.contact-form-heading {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 1.8rem;
    color: var(--text);
}

.contact-form {
    display: grid;
    gap: 1.1rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.contact-field {
    display: block;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 1.15rem 1.2rem;
    font: inherit;
    background: #f4f7fb;
    color: var(--text);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #98a1b4;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    background: #eef3fa;
    box-shadow: 0 0 0 3px rgba(11, 112, 225, 0.12);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    justify-self: start;
    padding: 1.05rem 3rem;
    background: linear-gradient(135deg, #2e7af0 0%, #1259c7 50%, #0b1452 100%);
    border: none;
    margin-top: 0.8rem;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 30px rgba(11, 20, 82, 0.28);
}

.contact-form .consent {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    line-height: 1.55;
}

.contact-form-disclaimer {
    margin: 0.4rem 0 0;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.contact-form-disclaimer a {
    color: var(--brand);
    font-weight: 600;
}

.contact-form-disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 2.2rem 1.8rem;
    }
}

.support-section {
    padding-top: 2rem;
}

.support-section .container {
    width: min(1360px, calc(100% - 2.5rem));
}

.support-stack {
    display: grid;
    gap: 1.35rem;
}

.support-quick-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    position: sticky;
    top: 52px;
    z-index: 90;
    background: rgba(243, 248, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.6rem;
    backdrop-filter: blur(2px);
}

.support-quick-nav a {
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #c7daf7;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: #184f9f;
}

.support-quick-nav a:hover {
    border-color: #88b3ec;
}

.support-quick-nav-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    margin-right: 0.35rem;
}

.support-quick-nav-sections {
    position: static;
    background: #fff;
    border-style: dashed;
}

.support-quick-nav-sections a {
    background: #f4f8ff;
    border-color: #d6e4fc;
    color: var(--brand-strong);
}

.support-empty-state {
    margin: 1.2rem 0 0;
    padding: 1.25rem 1.4rem;
    border-radius: 12px;
    background: #fff7e6;
    border: 1px dashed #f0c97a;
    color: #7a5b0d;
    font-size: 0.92rem;
    line-height: 1.55;
}

.support-empty-state strong {
    color: #5c4407;
}

.support-empty-state code {
    background: #fff;
    border: 1px solid #f0c97a;
    border-radius: 6px;
    padding: 0.1rem 0.4rem;
    font-size: 0.85rem;
}

@keyframes support-flash {
    0% { box-shadow: 0 0 0 0 rgba(11, 112, 225, 0.45); }
    50% { box-shadow: 0 0 0 8px rgba(11, 112, 225, 0.12); }
    100% { box-shadow: 0 0 0 0 rgba(11, 112, 225, 0); }
}

.support-flash {
    animation: support-flash 1.2s ease-out;
}

.support-toolbar {
    display: grid;
    gap: 0.4rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem;
}

.support-search-wrap {
    display: grid;
    gap: 0.35rem;
}

.support-search-wrap span {
    font-size: 0.84rem;
    font-weight: 700;
    color: #1f4f97;
}

.support-search-wrap input {
    width: 100%;
    border: 1px solid #c4d8f7;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font: inherit;
}

.support-search-hint {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
}

.support-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.6rem;
}

.support-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.support-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #cde0fb;
    background: #eff6ff;
    color: #1d56a8;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
}

.support-card h2 {
    margin-top: 0;
}

.support-help {
    margin-top: 0.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-soft);
}

.support-text-form {
    display: grid;
    gap: 1.2rem;
}

.support-text-sections {
    display: grid;
    gap: 1rem;
}

.support-text-section {
    border: 1px solid #d9e5f9;
    border-radius: 12px;
    background: #fcfdff;
    overflow: hidden;
}

.support-text-section summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    cursor: pointer;
    padding: 0.9rem 1rem;
    font-weight: 700;
    font-size: 0.98rem;
    color: #1d56a8;
}

.support-text-section summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #2f67cd;
    border-bottom: 2px solid #2f67cd;
    transform: rotate(45deg);
    transition: transform 0.22s ease;
    flex: 0 0 auto;
}

.support-text-section summary::-webkit-details-marker {
    display: none;
}

.support-text-section summary small {
    margin-left: auto;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: right;
    white-space: nowrap;
}

.support-text-section[open] summary {
    border-bottom: 1px solid #d9e5f9;
    background: #f6faff;
    animation: supportSummaryPulse 0.55s ease;
}

.support-text-section[open] summary::after {
    transform: rotate(-135deg) translateY(-1px);
}

.support-text-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.2rem;
    column-gap: 1.8rem;
    padding: 1rem;
}

.support-text-section[open] .support-text-section-grid {
    animation: supportAccordionIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.support-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.support-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.2rem;
    column-gap: 1.8rem;
}

.support-form-grid .btn {
    justify-self: start;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.support-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfdff;
    padding: 1.05rem;
    display: grid;
    gap: 0.85rem;
}

.support-item h3 {
    margin: 0;
    font-size: 1.05rem;
}

.support-item-collapsible {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfdff;
    overflow: hidden;
}

.support-item-collapsible summary {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    cursor: pointer;
    padding: 0.82rem 0.95rem;
    font-weight: 600;
}

.support-item-collapsible summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #4c6fa8;
    border-bottom: 2px solid #4c6fa8;
    transform: rotate(45deg);
    transition: transform 0.22s ease;
    flex: 0 0 auto;
}

.support-item-collapsible summary::-webkit-details-marker {
    display: none;
}

.support-item-collapsible summary small {
    margin-left: auto;
    color: var(--text-soft);
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

.support-item-collapsible[open] summary {
    border-bottom: 1px solid var(--line);
    background: #f7fbff;
    animation: supportSummaryPulse 0.55s ease;
}

.support-item-collapsible[open] summary::after {
    transform: rotate(-135deg) translateY(-1px);
}

.support-item-collapsible[open] .support-item-body {
    animation: supportAccordionIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes supportSummaryPulse {
    from {
        box-shadow: inset 0 0 0 999px rgba(47, 103, 205, 0.12);
    }

    to {
        box-shadow: inset 0 0 0 999px rgba(47, 103, 205, 0);
    }
}

@keyframes supportAccordionIn {
    from {
        opacity: 0;
        transform: translateY(-14px) scale(0.985);
        filter: blur(1px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .support-text-section summary::after,
    .support-item-collapsible summary::after {
        transition: none;
    }

    .support-text-section[open] .support-text-section-grid,
    .support-item-collapsible[open] .support-item-body,
    .support-text-section[open] summary,
    .support-item-collapsible[open] summary {
        animation: none;
    }
}

.support-item-body {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.support-thumb {
    width: 100%;
    max-width: 230px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.support-field {
    display: grid;
    gap: 0.5rem;
}

.support-field span {
    font-size: 0.86rem;
    font-weight: 600;
}

.support-field input,
.support-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.68rem 0.78rem;
    font: inherit;
}

.support-inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1rem;
    column-gap: 1.5rem;
}

.support-inline-feedback {
    min-height: 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.support-inline-feedback.success {
    color: var(--success);
}

.support-inline-feedback.error {
    color: var(--error);
}

.support-partner-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.support-tool-form {
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: #f4f8ff;
    padding: 1.05rem;
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.support-tool-form h3 {
    margin: 0;
    font-size: 1.02rem;
}

.support-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.support-delete-form {
    margin-top: -0.35rem;
    text-align: right;
}

.btn-danger {
    background: var(--error, #d23b3b);
    color: #fff;
    border: 1px solid var(--error, #d23b3b);
}

.btn-danger:hover {
    filter: brightness(0.92);
}

.support-media-results {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
}

.support-media-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
}

.support-media-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex: 0 0 auto;
}

.support-media-item input[type="text"] {
    flex: 1 1 auto;
    min-width: 0;
    font-family: monospace;
    font-size: 0.8rem;
}

.support-media-item .btn {
    flex: 0 0 auto;
    padding: 0.4rem 0.9rem;
}

.support-images-toolbar {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.support-field-group-label {
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.support-service-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.support-service-image {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.support-service-image .support-bulk-label {
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.25;
}

.support-service-image .support-bulk-label small {
    font-weight: 500;
    color: var(--text-soft);
}

.support-service-image .support-thumb {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    background: #eef3fb;
}

@media (max-width: 640px) {
    .support-service-images {
        grid-template-columns: 1fr;
    }
}

.support-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.support-modal.is-open {
    display: flex;
}

.support-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 40, 0.55);
}

.support-modal-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.support-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line);
}

.support-modal-head h3 {
    margin: 0;
    font-size: 1.15rem;
}

.support-modal-x {
    background: none;
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-soft);
    padding: 0 0.3rem;
}

.support-modal .support-help {
    padding: 0 1.25rem;
    margin: 0.85rem 0 0;
}

.support-bulk-images-form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.support-bulk-quickfill {
    margin: 0.85rem 1.25rem 0;
    padding: 0.75rem 0.9rem;
    border: 1px dashed var(--line);
    border-radius: 10px;
    background: #f4f8ff;
    display: grid;
    gap: 0.4rem;
}

.support-bulk-quickfill .support-help {
    padding: 0;
    margin: 0;
}

.support-quickfill-map {
    list-style: none;
    margin: 0.3rem 0 0;
    padding: 0.5rem 0.6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 0.25rem;
    max-height: 140px;
    overflow-y: auto;
    font-size: 0.82rem;
}

.support-quickfill-map li {
    color: var(--text-soft);
    word-break: break-word;
}

.support-quickfill-map li strong {
    color: var(--text);
}

.support-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.25rem;
    display: grid;
    gap: 0.7rem;
}

.support-bulk-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfdff;
}

.support-bulk-thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 8px;
    background: #eef3fb;
}

.support-bulk-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1 1 auto;
    min-width: 0;
}

.support-bulk-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.support-bulk-controls input[type="file"] {
    flex: 1 1 auto;
    min-width: 0;
}

.support-bulk-clear {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--error, #d23b3b);
    border-radius: 8px;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.support-bulk-clear:hover {
    background: #fff5f5;
}

.support-bulk-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.support-modal-foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.support-modal-foot .support-inline-feedback {
    flex: 1 1 100%;
    order: -1;
}

.support-hidden {
    display: none !important;
}

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #e8f1ff 0%, #f4f8ff 100%);
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.footer-map {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(11, 112, 225, 0.18) 1px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 30%, transparent 75%);
    pointer-events: none;
}

.footer-top {
    padding: 4.5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer-grid h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 700;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list {
    display: grid;
    gap: 1rem;
}

.footer-list li {
    color: var(--text-soft);
    line-height: 1.55;
}

.footer-list a {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--brand);
}

.footer-brand-col p {
    color: var(--text-soft);
    line-height: 1.7;
    margin: 1.2rem 0 1.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 0;
}

.footer-brand-name {
    font-family: 'Livvic', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--brand);
    border-left: 1px solid rgba(11, 112, 225, 0.3);
    padding-left: 0.9rem;
    line-height: 1;
}

.footer-social {
    display: flex !important;
    gap: 0.6rem;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(11, 112, 225, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(11, 112, 225, 0.18);
    padding: 1.4rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.footer-bottom-inner p {
    margin: 0;
}

.footer-bottom-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer-bottom-inner ul li:not(:last-child)::after {
    content: "•";
    color: var(--brand);
    margin-left: 1.4rem;
}

.footer-bottom-inner a {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
    color: var(--brand);
}

@media (max-width: 1024px) {
    .nav-wrap {
        min-height: 84px;
    }

    .brand img {
        width: 62px;
        height: 62px;
    }

    .site-nav > ul {
        gap: 1.25rem;
    }

    .site-nav a {
        font-size: 0.99rem;
    }

    .dropdown-menu {
        min-width: 280px;
    }

    .dropdown-menu a {
        font-size: 0.96rem;
    }

    .hero-grid,
    .about-grid,
    .process-grid,
    .cta-inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-list {
        grid-template-columns: 1fr;
    }

    .support-quick-nav {
        top: 48px;
    }
}

@media (max-width: 760px) {
    .topbar-inner {
        min-height: auto;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0.5rem 0;
    }

    .topbar-contact {
        gap: 0.45rem;
    }

    .top-item + .top-item {
        border-left: 0;
        padding-left: 0;
    }

    .topbar-social {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-wrap {
        display: flex;
        min-height: 80px;
    }

    .brand img {
        width: 62px;
        height: 62px;
    }

    .mobile-menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 106px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        padding: 0.7rem;
        display: none;
        z-index: 100;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0.65rem;
        align-items: flex-start;
    }

    .site-nav a {
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        display: none;
        border: 0;
        box-shadow: none;
        min-width: 100%;
        padding: 0.2rem 0 0.2rem 0.5rem;
        transform: none;
        margin-top: 0.2rem;
    }

    .has-dropdown.mobile-submenu-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
    }

    .search-icon {
        display: none;
    }

    .support-quick-nav {
        position: static;
    }

    .support-form-grid,
    .support-inline-fields,
    .support-text-section-grid,
    .support-partner-tools {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .blog-grid,
    .metric-grid,
    .footer-grid,
    .footer-bottom-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        display: grid;
    }
}