*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--body);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

.r-540cd1 {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

.r-0fdca9 {
    max-width: var(--wrap-wide);
    margin: 0 auto;
    padding: 0 28px;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.r-75f5c3 {
    opacity: 0;
    animation: revealUp 0.6s ease forwards;
}

.r-398bfa {
    animation-delay: 0.1s;
}

.r-18416c {
    animation-delay: 0.2s;
}

.r-c8d321 {
    animation-delay: 0.3s;
}

.r-3745b7 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.15;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    letter-spacing: -0.01em;
}

.r-4e20a0 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section {
    padding: 5.5rem 0;
}

.r-4e4984 {
    padding: 5.5rem 0;
    background: var(--surface-alt);
}

.section-dark {
    padding: 5.5rem 0;
    background: var(--surface-dark);
    color: white;
}

.r-995098 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.r-995098 p {
    color: var(--body-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.r-a5297b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--ease);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.r-ce457e {
    border-radius: var(--round-full);
}

.r-a5297b-rounded {
    border-radius: var(--round-md);
}

.r-ade943 {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 14px rgba(11, 94, 215, 0.35);
}

.r-ade943:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 94, 215, 0.4);
}

.r-65915d {
    background: white;
    color: var(--dark);
    box-shadow: var(--shade-md);
}

.r-65915d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shade-lg);
}

.r-3aef99 {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.r-3aef99:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.r-a5297b-emergency {
    background: var(--pop);
    color: white !important;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--round-full);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    }
}

.r-0625d3 {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.r-0625d3:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.6) 40%,
            rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 6rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: var(--round-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: white;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px #22c55e;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero h1 {
    color: white;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
}

.hero-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    font-weight: 600;
}

@media (max-width: 780px) {
    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 4rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

.hero--split {
    min-height: auto;
    background: var(--surface);
    color: var(--body);
    padding: 5rem 0;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-split-image img {
    width: 100%;
    border-radius: var(--round-xl);
    box-shadow: var(--shade-lg);
}

.hero-split-image .hero-placeholder {
    aspect-ratio: 4/3;
    background: var(--brand-light);
    border-radius: var(--round-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.3;
}

.hero-trust-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-pill {
    background: var(--brand-light);
    color: var(--brand);
    padding: 0.35rem 0.85rem;
    border-radius: var(--round-full);
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 780px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero--centered-gradient {
    background: linear-gradient(135deg, var(--brand) 0%, var(--dark) 100%);
    min-height: 80vh;
}

.hero-floating-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.floating-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--round-lg);
    padding: 1.25rem 1.5rem;
    max-width: 280px;
    text-align: left;
}

.floating-card strong {
    display: block;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.floating-card span {
    font-size: 0.85rem;
    opacity: 0.85;
    font-style: italic;
}

.hero--emergency .hero-mega-phone {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--round-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--ease);
}

.hero--emergency .hero-mega-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.hero--compact {
    background: linear-gradient(135deg, var(--brand), var(--dark));
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: var(--round-full);
    overflow: hidden;
    box-shadow: var(--shade-lg);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.search-bar .r-a5297b {
    border-radius: 0 var(--round-full) var(--round-full) 0;
    white-space: nowrap;
}

.hero-features {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.hero-feature-item strong {
    font-size: 0.95rem;
}

.hero-feature-item span {
    font-size: 0.8rem;
    color: var(--body-muted);
}

@media (max-width: 780px) {
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.trust-bar {
    background: var(--brand);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.trust-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.r-f70167 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.r-f70167 svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.r-cddd7b {
    background: var(--surface);
    border-radius: var(--round-lg);
    padding: 2rem;
    border: 1px solid var(--line);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.r-cddd7b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.r-cddd7b:hover::before {
    transform: scaleX(1);
}

.r-cddd7b:hover {
    transform: translateY(-6px);
    box-shadow: var(--shade-lg);
    border-color: transparent;
}

.r-cddd7b-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-light);
    border-radius: var(--round-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--brand);
    transition: var(--ease);
}

.r-cddd7b:hover .r-cddd7b-icon {
    background: var(--brand);
    color: white;
}

.r-cddd7b h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.r-cddd7b p {
    color: var(--body-muted);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.r-cddd7b-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--ease);
}

.r-cddd7b-link:hover {
    gap: 0.75rem;
}

@media (max-width: 780px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-row.reverse > *:first-child { order: 2; }
.content-row.reverse > *:last-child  { order: 1; }

@media (max-width: 780px) {
    .content-row.reverse > *:first-child,
    .content-row.reverse > *:last-child { order: unset; }
}

.content-text h2 {
    margin-bottom: 1.25rem;
}

.content-text p {
    color: var(--body-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-img {
    border-radius: var(--round-xl);
    overflow: hidden;
    box-shadow: var(--shade-lg);
}

.content-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-img:hover img {
    transform: scale(1.03);
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-weight: 500;
    color: var(--body);
}

.feature-list li svg {
    flex-shrink: 0;
    color: var(--brand);
    margin-top: 2px;
}

@media (max-width: 780px) {

    .content-row,
    .content-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
}

.highlight-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
    border-radius: var(--round-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.highlight-section h2 {
    color: white;
}

.highlight-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 780px) {
    .highlight-section {
        padding: 2.5rem 1.5rem;
    }
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.r-4d9a9f {
    border: 1px solid var(--line);
    border-radius: var(--round-md);
    margin-bottom: 0.75rem;
    background: white;
    overflow: hidden;
    transition: var(--ease);
}

.r-4d9a9f:hover {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-light);
}

.r-4d9a9f summary {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--ease);
    font-size: 0.98rem;
}

.r-4d9a9f summary::-webkit-details-marker {
    display: none;
}

.r-4d9a9f summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--brand);
    font-weight: 300;
    transition: var(--ease);
    flex-shrink: 0;
    margin-left: 1rem;
}

.r-4d9a9f[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}


.r-4d9a9f summary:has(.faq-chevron)::after {
    display: none;
}

.r-4d9a9f[open] summary {
    background: var(--brand-light);
    color: var(--brand);
}

.r-eeb111 {
    padding: 1.25rem 1.5rem;
    color: var(--body-muted);
    line-height: 1.7;
    border-top: 1px solid var(--line);
}

.r-eeb111 p {
    margin-bottom: 0.5rem;
}

.r-eeb111 p:last-child {
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--surface-dark) 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.08;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.25rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cta-phone a {
    color: white;
}

.cta-phone a:hover {
    color: var(--brand-light);
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card span {
    font-size: 0.85rem;
    color: var(--body-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 780px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.r-ceb478 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: var(--ease);
}

.r-ceb478.scrolled {
    box-shadow: var(--shade-md);
}


.header-top {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 0.4rem 0;
}

.header-top .r-540cd1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: white;
    font-weight: 600;
    transition: var(--ease);
}

.header-top a:hover {
    opacity: 0.8;
}

.header-top-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-top-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}


.r-9cd057 {
    padding: 1rem 0;
}

.r-9cd057 .r-540cd1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--dark);
}

.r-fdcb58 ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.r-fdcb58 a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--body);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--ease);
}

.r-fdcb58 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s ease;
}

.r-fdcb58 a:hover {
    color: var(--brand);
}

.r-fdcb58 a:hover::after {
    width: 100%;
}

.r-a0d8a4 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.r-27a8c7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--brand);
    font-size: 1rem;
}


.r-b34b69 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.r-b34b69 span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--ease);
}

.r-ee5d63 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
}


#el-29d74,
#r-b34b69 {
    display: none;
}

@media (max-width: 968px) {
    #r-b34b69 {
        display: flex;
    }

    .r-b34b69 {
        display: flex;
    }

    .r-fdcb58 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: white;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shade-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .r-fdcb58.open {
        right: 0;
        display: block !important;
    }

    .r-fdcb58 ul {
        flex-direction: column;
        gap: 0;
    }

    .r-fdcb58 li {
        border-bottom: 1px solid var(--line);
    }

    .r-fdcb58 a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .r-fdcb58 a::after {
        display: none;
    }

    .r-ee5d63.open {
        display: block;
    }

    .r-a0d8a4 .r-27a8c7 {
        display: none;
    }

    .header-top {
        display: none;
    }

    
    .header-inner .nav,
    .header-inner .header-actions {
        display: none !important;
    }

    
    .header-inner {
        padding-right: 3.5rem !important;
    }
}

.site-footer {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.r-be3bf0 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--brand);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 780px) {
    .r-be3bf0 {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 500px) {
    .r-be3bf0 {
        grid-template-columns: 1fr;
    }
}

.r-0a98d3 {
    max-width: 800px;
}

.r-0a98d3 h1 {
    margin-bottom: 1.5rem;
}

.r-0a98d3 h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.r-0a98d3 h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.r-0a98d3 p {
    color: var(--body-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.r-0a98d3 li {
    padding: 0.35rem 0;
    color: var(--body-muted);
    line-height: 1.7;
}

.r-0a98d3 li::before {
    display: none;
}

.r-0a98d3 strong {
    color: var(--body);
}


.r-0a98d3.r-0a98d3--inv p,
.r-0a98d3.r-0a98d3--inv li,
.r-0a98d3.r-0a98d3--inv strong,
.r-0a98d3.r-0a98d3--inv h2,
.r-0a98d3.r-0a98d3--inv h3 {
    color: inherit !important;
}

.r-ab5c92 {
    font-size: 1.15rem;
    color: var(--body-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--brand);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

:root {
    --brand: #0B5ED7;
    --brand-rgb: 11, 94, 215;
    --brand-dark: #0a4db3;
    --brand-light: #e8f1fc;
    --dark: #1F2937;
    --dark-rgb: 31, 41, 55;
    --pop: #ef4444;
    --pop-light: #fef2f2;

    --body: #1e293b;
    --body-muted: #64748b;
    --body-light: #94a3b8;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-dark: #0f172a;
    --line: #e2e8f0;

    --round-sm: 10px;
    --round-md: 14px;
    --round-lg: 20px;
    --round-xl: 24px;
    --round-full: 9999px;

    --shade-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shade-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shade-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shade-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    --wrap: 1200px;
    --wrap-wide: 1400px;

    --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.content ul,
.content ol,
.intro-content ul,
.intro-content ol {
    list-style: revert;
    padding-left: 1.5em;
    margin: 1rem 0;
}



.content li,
.intro-content li {
    margin-bottom: 0.4em;
    line-height: 1.7;
}

.r-cddd7b:hover,
.r-74d09a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shade-lg);
}

.r-74d09a:hover span:last-child span {
    transform: translateX(4px);
}

.blog-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shade-lg);
}

.blog-archive-card:hover img {
    transform: scale(1.05);
}

.blog-archive-card:hover a span {
    transform: translateX(4px);
}

.blog-archive-card h3 a:hover {
    color: var(--brand) !important;
}

.r-a36986:hover {
    transform: translateY(-3px);
    box-shadow: var(--shade-md);
}

.blog-grid article:hover {
    box-shadow: var(--shade-lg);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-light);
}

.cta-box .r-a5297b:hover {
    transform: translateY(-2px);
}

form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 94, 215, 0.4);
}

@media (max-width: 968px) {
    .r-ada8b6 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .r-d677d5 {
        position: static !important;
        order: -1;
    }

    .r-4230b0 {
        padding: 2.5rem 0 2rem !important;
    }
}

.r-0a98d3 h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-light);
}

.r-0a98d3 h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.r-0a98d3 p {
    margin-bottom: 1.25rem;
}

.r-0a98d3 img {
    border-radius: var(--round-md);
    margin: 1.5rem 0;
    box-shadow: var(--shade-sm);
}

.r-d677d5 a[href^="tel:"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 94, 215, 0.4);
}

.r-9cd057 .r-540cd1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r-9cd057 {
    padding: 0.75rem 0;
    background: white;
}

body.t-v1 {
    
}

body.t-v2 {
    background: #111;
    color: #eee;
    --brand: #fab005;
}

body.t-v2 .r-cddd7b,
body.t-v2 .r-9cd057,
body.t-v2 .site-footer {
    background: #222;
    border-color: #333;
    color: #eee;
}

body.t-v2 h1,
body.t-v2 h2,
body.t-v2 h3 {
    color: #fff;
}

body.t-v2 .r-539bbb {
    color: #eee;
}

body.t-v3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
}

body.t-v3 .r-cddd7b,
body.t-v3 header,
body.t-v3 footer,
body.t-v3 .r-271ea2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    color: white;
    margin: 1rem;
}

body.t-v3 h1,
body.t-v3 h2,
body.t-v3 p,
body.t-v3 a {
    color: white !important;
}

body.t-v4 {
    font-family: 'Courier New', monospace;
    background: #fff;
    border: 4px solid black;
    margin: 10px;
    min-height: 98vh;
}

body.t-v4 * {
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 black !important;
    border: 2px solid black !important;
}

body.t-v4 .r-271ea2 {
    background: #ffcc00;
    color: black;
}

body.t-v4 .r-ade943 {
    background: black;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
}

body.t-v4 .r-cddd7b {
    background: white;
    margin-bottom: 2rem;
}

body.t-v5 {
    font-family: 'Helvetica Neue', sans-serif;
    background: #fdfdfd;
    color: #555;
}

body.t-v5 .r-271ea2 {
    background: white;
    text-align: center;
    padding: 8rem 0;
    border-bottom: 1px solid #eee;
}

body.t-v5 .r-cddd7b {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    text-align: left;
    padding-left: 0;
    margin-bottom: 2rem;
}

body.t-v5 h1 {
    font-weight: 300;
    letter-spacing: -2px;
    color: #000;
}

body.t-v5 .r-a5297b {
    border-radius: 99px;
    padding: 1rem 3rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.t-v6 {
    font-family: 'Georgia', serif;
    background: #f4f4f9;
    color: #2c3e50;
}

body.t-v6 .r-9cd057 {
    background: #003366;
    color: white;
}

body.t-v6 .r-1a9ac7 {
    color: white;
}

body.t-v6 .r-539bbb {
    color: white !important;
}

body.t-v6 .r-cddd7b {
    background: white;
    border-top: 4px solid #003366;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.t-v6 h1,
body.t-v6 h2 {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: #003366;
}

body.t-v7 {
    background: #fff0f5;
}

body.t-v7 .r-271ea2 {
    background: linear-gradient(to right, #ff00cc, #333399);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 6rem;
}

body.t-v7 .r-cddd7b {
    border-radius: 20px;
    background: white;
    transform: rotate(-1deg);
    transition: transform 0.3s;
    box-shadow: 5px 5px 15px rgba(255, 0, 204, 0.2);
}

body.t-v7 .r-cddd7b:hover {
    transform: rotate(1deg) scale(1.05);
}

body.t-v7 h1 {
    text-shadow: 2px 2px 0 #ff00cc;
    color: white;
}

body.t-v7 .r-ade943 {
    background: #ff00cc;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.4);
}

@media (min-width: 900px) {
    body.t-v8 .r-271ea2 {
        position: fixed;
        left: 0;
        top: 0;
        width: 40%;
        height: 100vh;
        padding-top: 30vh;
        background: #2c3e50;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body.t-v8 .content,
    body.t-v8 .services-section,
    body.t-v8 .footer,
    body.t-v8 .r-9408fb {
        margin-left: 40%;
        width: 60%;
        padding: 4rem;
    }

    body.t-v8 header {
        position: fixed;
        left: 0;
        top: 0;
        width: 40%;
        z-index: 10;
        background: transparent;
    }

    body.t-v8 .r-271ea2 h1 {
        font-size: 3rem;
    }
}

body.t-v9 {
    background: #e0e5ec;
}

body.t-v9 .r-540cd1 {
    max-width: 1400px;
}

body.t-v9 .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

body.t-v9 .r-cddd7b,
body.t-v9 .r-a5297b {
    background: #e0e5ec;
    box-shadow: 9px 9px 16px rgb(163, 177, 198, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: none;
    transition: box-shadow 0.2s;
}

body.t-v9 .r-a5297b:active {
    box-shadow: inset 5px 5px 10px #b8b9be, inset -5px -5px 10px #ffffff;
}

body.t-v9 .r-271ea2 {
    border-radius: 0 0 50px 50px;
    margin-bottom: 3rem;
    background: #e0e5ec;
    box-shadow: inset 5px 5px 10px #b8b9be, inset -5px -5px 10px #ffffff;
    color: #333;
    padding: 4rem;
}

body.t-v9 h1 {
    color: #333;
}

body.t-v10 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    background: #fff;
    color: #000;
}

body.t-v10 h1 {
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #000;
    border-bottom: 10px solid black;
    display: inline-block;
}

body.t-v10 p {
    font-family: 'Arial', sans-serif;
    text-transform: none;
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
}

body.t-v10 .r-cddd7b {
    border: 5px solid black;
    background: transparent;
    box-shadow: 10px 10px 0 black;
    transition: transform 0.2s;
}

body.t-v10 .r-cddd7b:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 black;
}

body.t-v10 .r-a5297b {
    background: black;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    border-radius: 0;
    font-family: 'Impact';
    letter-spacing: 2px;
}

@media (max-width: 780px) {
    .section,
    .r-4e4984,
    .section-dark {
        padding: 2.5rem 0;
    }

    .r-995098 {
        margin-bottom: 2rem;
    }

    .r-0a98d3 p,
    .r-0a98d3 li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .r-0a98d3 h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 780px) {
    .content-grid-responsive {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.r-0a98d3 ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.r-0a98d3 ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.r-0a98d3 li strong {
    color: var(--body);
}

.r-0a98d3 p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--body-muted);
}

.r-0a98d3 h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}


.nav a:hover,
.nav a:focus-visible {
    color: var(--brand) !important;
}


.header-actions a[href="/contact-us/"]:hover,
.header-actions a[href="/contact-us/"]:focus-visible {
    opacity: 0.88;
}


.footer-link:hover,
.footer-link:focus-visible {
    color: var(--brand) !important;
}


.r-cddd7b:focus-visible,
a[href^="/services/"]:focus-visible,
a[href^="/solutions/"]:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}


.r-a36986:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


.r-a5297b:hover,
.r-a5297b:focus-visible {
    opacity: 0.88;
    transform: translateY(-1px);
}


input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}


.r-4d9a9f .r-eeb111 {
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity    0.25s ease;
    overflow: hidden;
}


.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--brand);
    transition: transform 0.3s ease;
}

.r-4d9a9f[open] .faq-chevron {
    transform: rotate(180deg);
}

.content-row--reverse .content-col-text  { order: 2; }
.content-row--reverse .content-col-image { order: 1; }

@media (max-width: 780px) {
    .content-row--reverse .content-col-text,
    .content-row--reverse .content-col-image { order: unset; }
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-light);
    border-radius: var(--round-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--brand);
    transition: background 0.25s, color 0.25s;
    flex-shrink: 0;
}

a:hover .svc-icon,
.r-cddd7b:hover .svc-icon {
    background: var(--brand);
    color: white;
}

.r-0a98d3 a {
    color: var(--brand);
    text-decoration: underline;
    text-decoration-color: rgba(37,99,235,0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.r-0a98d3 a:hover {
    text-decoration-color: var(--brand);
}

main a:not([class]):not([style]) {
    color: var(--brand);
    text-decoration: none;
}
main a:not([class]):not([style]):hover {
    text-decoration: underline;
}
