html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #0a0a0a;
    color: #171717;
}

.gold-gradient {
    background: linear-gradient(135deg, #996515 0%, #D4AF37 50%, #F9E4B7 100%);
}

.gold-text-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F9E4B7 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4AF37;
}

.section-label::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.section-label--dark {
    color: #52525b;
}

.section-label--dark::before {
    background: linear-gradient(90deg, #0a0a0a, transparent);
}

.section-label.justify-center {
    display: flex;
    width: 100%;
    justify-content: center;
}

.section-label.justify-center::before {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -12px rgba(10, 10, 10, 0.15);
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e4e4e7;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #996515, #D4AF37, #F9E4B7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.stat-block {
    border-left: 3px solid #D4AF37;
    padding-left: 1.25rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: calc(50% + 1.75rem);
    right: calc(-50% + 1.75rem);
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #e4e4e7);
}

@media (max-width: 1023px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #171717;
    background-image: var(--guardian-img-why-us);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(35%) saturate(1.1);
    z-index: 0;
}

.why-us-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    z-index: 1;
}

@media (min-width: 768px) {
    .why-us-section::before {
        background-attachment: fixed;
    }
}

.advantage-card {
    background: #0a0a0a;
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: border-color 0.3s ease, transform 0.35s ease;
}

.why-us-section .advantage-card {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(10px);
}

.advantage-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

.quote-band-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0a0a0a;
    background-image: var(--guardian-img-quote);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(35%) saturate(1.1);
    z-index: 0;
}

.quote-band-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.84);
    z-index: 1;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f4f4f5;
    background-image: var(--guardian-img-testimonials);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(35%) saturate(1.1);
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

@media (min-width: 768px) {
    .quote-band-bg::before,
    .testimonials-section::before {
        background-attachment: fixed;
    }
}

.quote-band {
    background: linear-gradient(120deg, #0a0a0a 0%, #171717 50%, #0a0a0a 100%);
}

.hero-panel {
    background: linear-gradient(145deg, #0a0a0a 0%, #171717 45%, #0a0a0a 100%);
}

.hero-image-wrap {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-wrap img {
    filter: saturate(1.05) brightness(0.92);
}

@media (max-width: 1023px) {
    .hero-image-wrap {
        clip-path: none;
    }
}

.faq-answer {
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 320px;
    opacity: 1;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.theme-bw {
    filter: grayscale(75%) contrast(1.05);
    transition: filter 0.5s ease;
}

.theme-bw:hover {
    filter: grayscale(0%);
}

#navbar.nav-scrolled {
    background: rgba(10, 10, 10, 0.97) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

#navbar.nav-scrolled.border-b {
    border-bottom-color: rgba(212, 175, 55, 0.25) !important;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    background: #fafafa;
    color: #171717;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-field:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.input-field--light {
    background: #fff;
}

.aca-lead-form .input-field {
    font-size: 0.9375rem;
}

.aca-lead-form--dark .input-field {
    background: #171717;
    border-color: #3f3f46;
    color: #fafafa;
}

.aca-lead-form--dark .input-field::placeholder {
    color: #71717a;
}

.aca-lead-form--dark .input-field:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.aca-lead-form--dark select.input-field option {
    background: #171717;
    color: #fafafa;
}

.script-line {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e4e4e7;
}

.script-line--agent {
    background: #f4f4f5;
    border-color: rgba(212, 175, 55, 0.25);
}

.script-line--customer {
    background: #fff;
}

.script-speaker {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #996515;
    margin-bottom: 0.25rem;
}

.script-line--customer .script-speaker {
    color: #52525b;
}

.script-dialogue {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #171717;
}

.script-phase {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 0.75rem;
    border: 1px solid #e4e4e7;
}

.testimonial-featured {
    background: linear-gradient(160deg, #f4f4f5 0%, #fff 100%);
    border: 1px solid #e4e4e7;
    border-radius: 1rem;
}
