* {
    box-sizing: border-box;
}

:root {
    font-family: 'Inter', system-ui, sans-serif;
    color: #f8f9ff;
    background-color: #040d2a;
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: #020616;
}

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

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

button, input {
    font: inherit;
}

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

.site-header {
    position: relative;
    top: 0;
    z-index: 20;
    background: #ffffff;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    padding-right: 50px;
}

.brand-logo img {
    height: 70px;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 120px;
    border-radius: 12px;
    background: #d18b00;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.phone-link:hover {
    background: #0036AA;
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    background-image: url('images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f7fafc;
    overflow: hidden;
}

.hero-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 8, 35, 0.75), rgba(2, 10, 34, 0.95));
    pointer-events: none;
    background: linear-gradient(181deg, rgb(0 33 255 / 75%), rgb(1 15 58 / 95%));
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 40px;
}

.hero-copy {
    max-width: 640px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #d18b00;
    letter-spacing: 0.03em;
}

.hero-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 30px;
    font-size: 1.2rem;
    line-height: 1.85;
    color: #d4d9ed;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.hero-benefits li {
    position: relative;
    padding-left: 34px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #edf2ff;
    font-weight: 500;
}

.hero-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 18px;
    height: 18px;
    background: #d18b00;
    mask: url('data:image/svg+xml,%3Csvg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 6L9 17L4 12" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat center / contain;
    -webkit-mask: url('data:image/svg+xml,%3Csvg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 6L9 17L4 12" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat center / contain;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #d18b00;
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f3f6ff;
    background: transparent;
}

.btn-outline:hover {
    background: #d18b00;
    color: #ffffff;
}

.hero-form-card {
    width: 100%;
    max-width: 460px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(2, 10, 36, 0.35);
    backdrop-filter: blur(20px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-form-card.highlight-pulse {
    animation: highlightPulse 3s ease forwards;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: translateY(0);
    }
    20% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.16);
        transform: translateY(-2px);
    }
    60% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }
    100% {
        box-shadow: 0 30px 80px rgba(255, 255, 255, 0.35);
        transform: translateY(0);
    }
}

.form-card-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-label {
    display: inline-block;
    font-size: 0.98rem;
    font-weight: 700;
    color: #f4f8ff;
}

.hero-form-card h2 {
    margin: 0;
    font-size: 1.75rem;
    color: #ffffff;
}

.audit-form {
    display: grid;
    gap: 16px;
}

.field-group {
    position: relative;
    display: grid;
    align-items: center;
    gap: 10px;
}

.field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #d18b00;
}

.field-group input {
    width: 100%;
    padding: 16px 18px 16px 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #f3f6ff;
    outline: none;
}

.field-group input::placeholder {
    color: rgba(243, 246, 255, 0.7);
}

.btn-block {
    width: 100%;
    cursor: pointer;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-subtitle {
    display: inline-block;
    color: #d18b00;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(2rem, 2.4vw, 3rem);
    line-height: 1.05;
}

.section-header span {
    color: #d18b00;

}

.why-grid, .services-grid, .process-grid {
    display: grid;
    gap: 24px;
}

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

.feature-card, .service-card {
    padding: 30px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(3, 12, 40, 0.18);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover, .service-card:hover {
    transform: translateY(-6px);
    background: rgba(209, 139, 0, 0.12);
    border-color: rgba(209, 139, 0, 0.32);
}

.feature-card h3,
.service-card h3 {
    margin: 18px 0 12px;
    font-size: 1.35rem;
    color: #000000;
}

.feature-card p,
.service-card p {
    margin: 0;
    color: #000000;
    line-height: 1.8;
}

.icon-box {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 22px;
    background: #0036AA;
    display: grid;
    place-items: center;
}

.icon-box img {
    max-width: 100%;
    max-height: 100%;
}

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

.service-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.service-icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #0036AA;
    display: grid;
    place-items: center;
}

.service-icon img {
    width: 34px;
    height: 34px;
}

.service-icon i {
    font-size: 2rem;
}

.services-grid article:nth-child(1) .service-icon {
    background: #C93756;
}

.services-grid article:nth-child(2) .service-icon {
    background: #F36838;
}

.services-grid article:nth-child(3) .service-icon {
    background: #FF4777;
}

.services-grid article:nth-child(4) .service-icon {
    background: #9ED900;
}

.services-grid article:nth-child(5) .service-icon {
    background: #BCE672;
}

.services-grid article:nth-child(6) .service-icon {
    background: #3B2E7E;
}

.services-grid article:nth-child(7) .service-icon {
    background: #C9DD22;
}

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

.process-step {
    padding: 24px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 12px 30px rgba(3, 12, 40, 0.14);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(209, 139, 0, 0.3);
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #d18b00;
    color: #ffe7b0;
    font-weight: 800;
    margin-bottom: 16px;
}

.process-section{
    padding-top: 20px;
    padding-bottom: 40px;
    background: #f5f5f5;
}

.process-step h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #0036AA;
}

.process-step p {
    margin: 0;
    color: #cbd3ea;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #000000;
}

.testimonial-section {
    padding: 60px 0 40px;
    background: #f8fbff;
}

.testimonial-slider-shell {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.testimonial-slider-shell .slides-wrapper {
    width: 100%;
    max-width: 1180px;
    padding: 10px 0;
}

.testimonial-slider-shell .slide-box {
    padding: 0.75rem;
}

.testimonial-slider-shell .box-content {
    min-height: 300px;
    width: 340px;
    aspect-ratio: auto;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(0, 54, 170, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    display: grid;
    gap: 20px;
    align-items: start;
    box-shadow: 0 28px 80px rgba(0, 54, 170, 0.08);
}

.testimonial-rating {
    font-size: 1.1rem;
    color: #ffb742;
    letter-spacing: 0.08em;
}

.testimonial-card p {
    margin: 0;
    color: #13213f;
    line-height: 1.95;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.testimonial-author {
    display: block;
    color: #0036AA;
    font-weight: 800;
    font-size: 1rem;
}

.testimonial-role {
    display: block;
    color: #5d6f91;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 1120px) {
    .testimonial-slider-shell .box-content {
        width: 280px;
        min-height: 240px;
        padding: 24px;
    }
}

@media (max-width: 780px) {
    .testimonial-slider-shell .box-content {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 520px) {
    .testimonial-slider-shell .box-content {
        padding: 20px;
    }
}

@media (max-width: 1120px) {
    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-form-card {
        margin: 0 auto;
        max-width: 520px;
    }
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }
    .header-inner {
        min-height: 72px;
        padding: 8px 12px;
        gap: 12px;
    }
    .brand-logo img {
        height: 48px;
    }
    .phone-link {
        padding: 10px 16px;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
    }
    .hero-copy h1 {
        font-size: 2.4rem;
    }
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-form-card {
        padding: 22px;
    }
    .slider-shell {
        padding: 16px 0;
    }
    .why-grid, .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-inner {
        min-height: 64px;
        padding: 8px 8px;
    }
    .brand-logo img {
        height: 40px;
    }
    .phone-link {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
}   

@media (max-width: 520px) {
    .hero-copy h1 {
        font-size: 2rem;
    }
    .field-group input {
        padding: 14px 18px 14px 48px;
    }
    .service-card {
        flex-direction: column;
        align-items: stretch;
    }
}


.arrcsd-slider-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-bottom: 40px;
}

.site-footer {
    padding: 60px 0 40px;
    background: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #000000 !important; 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.footer-brand img {
    height: 44px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #c7d0ec;
    line-height: 1.8;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.footer-links ul,
.footer-contact p {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #d4daee;
    opacity: 0.9;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    color: #c7d0ec;
    margin-bottom: 12px;
    line-height: 1.8;
}

.newsletter-form {
    margin-top: 18px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 12px;
    color: #fff;
}

.newsletter-field {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-field input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #eef2ff;
}

.newsletter-field input::placeholder {
    color: rgba(238, 242, 255, 0.6);
}

.site-footer .btn {
    min-width: 160px;
}

@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

footer {
    padding: 40px 0 30px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}

footer a {
    color: #0036AA;
    font-weight: 600;
    transition: color 0.25s ease;
}

footer a:hover {
    color: #d18b00;
}

@media (max-width: 780px) {
    footer {
        padding: 30px 20px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 24px 16px 20px;
        font-size: 0.85rem;
    }
}

.arrcsd-slider-wrapper h2 {
    font-size: clamp(2rem, 2.4vw, 3rem);
    line-height: 1.05;
    color: #0036AA;
}

.services-section{
    padding-top: 20px;
    padding-bottom: 40px;
    background: #ffffff ;
}
.section-header h2{
    color: #0036AA;
}

.why-section{
    padding-top: 20px;
    padding-bottom: 40px;
    background: #f5f5f5;
}

:root {
        --foreground: hsl(240 10% 3.9%);
        --background: hsl(0 0% 100%);
        --muted-foreground: hsl(240 3.8% 46.1%);
        --muted: hsl(240, 1%, 86%);
        --main-color: #0036aa;
        }

    .slides-wrapper {
        height: fit-content;
        width: 80%;
        position: relative;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
        }

        .slide-box {
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        margin: 0;
        padding: 0;
        position: relative;
        flex-shrink: 0;
        cursor: pointer;
        padding: 0.5rem;
        touch-action: pan-y;
        }

        .slide-box .box-content {
        height: max(5vh, 190px);
        aspect-ratio: 3 / 4;
        border: 2px solid var(--muted);
        display: grid;
        place-items: center;
        touch-action: pan-y;
        overflow: hidden;
        position: relative;
        }

        .slide-box .box-content h2 {
        font-size: 3rem;
        }

        .instruction {
            padding: 2rem 0;
            color: var(--muted-foreground);
        }

        footer {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.01rem;
            background: #0036aa;
            color: #fff;
            padding: 2rem 0;
            height: 50px;
        }