/* AML Compliance Services CSS */

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes amlcFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes amlcFloatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes amlcPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes amlcShimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes amlcFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes amlcScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes amlcBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   HERO SECTION
   ============================================ */

.amlc-hero-section {
    position: relative;
    background-image:
        linear-gradient(102deg, rgba(10, 18, 32, 0.8) 0%, rgba(10, 18, 32, 0.62) 42%, rgba(10, 18, 32, 0.25) 68%, rgba(10, 18, 32, 0.12) 100%),
        linear-gradient(130deg, rgba(255, 107, 53, 0.22) 0%, rgba(255, 149, 84, 0.14) 50%, rgba(10, 18, 32, 0.3) 100%),
        url("../img2/aml-monitoring.png");
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, 72% center;
    overflow: hidden;
}

.amlc-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, rgba(10, 18, 32, 0.35) 100%);
    z-index: 0;
}

.amlc-hero-content {
    padding: 165px 0 90px;
    z-index: 1;
    position: relative;
}

.amlc-hero-pill {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: amlcScaleIn 0.6s ease;
    transition: all 0.3s ease;
}

.amlc-hero-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amlc-hero-title {
    color: #ffffff;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    animation: amlcFadeInUp 0.8s ease 0.2s both;
}

.amlc-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    max-width: 540px;
    animation: amlcFadeInUp 0.8s ease 0.4s both;
}

.amlc-hero-spacer {
    min-height: 320px;
}

.container-fluid.fixed-top .navbar {
    background: rgba(10, 18, 32, 0.78);
    backdrop-filter: blur(8px);
}

.container-fluid.fixed-top .navbar .nav-link,
.container-fluid.fixed-top .navbar .navbar-brand {
    color: #fff !important;
}

.amlc-hero-image {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    animation: amlcFloat 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.amlc-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.amlc-hero-image-inner {
    min-height: 300px;
    border-radius: 22px;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    gap: 10px;
    padding: 20px;
}

.amlc-hero-image-inner i {
    font-size: 64px;
    animation: amlcBounce 2s ease-in-out infinite;
}

.amlc-hero-image-inner:hover i {
    animation: amlcBounce 0.5s ease-in-out infinite;
}

/* Floating Circles */
.amlc-floating-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.amlc-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: amlcFloat 8s ease-in-out infinite;
}

.amlc-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: amlcFloatSlow 9s ease-in-out infinite;
}

/* Graffiti Decoration */
.amlc-hero-graffiti {
    position: absolute;
    bottom: 15%;
    left: 6%;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    transform: rotate(10deg);
    z-index: 1;
    animation: amlcFloatSlow 8s ease-in-out infinite;
    transition: all 0.3s ease;
    pointer-events: none;
}

.amlc-hero-graffiti:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(-5deg) scale(1.1);
}

.amlc-hero-graffiti::before,
.amlc-hero-graffiti::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.amlc-hero-graffiti::before {
    width: 16px;
    height: 16px;
    top: 18px;
    left: 18px;
}

.amlc-hero-graffiti::after {
    width: 70px;
    height: 2px;
    bottom: 22px;
    right: 18px;
    transform: rotate(12deg);
}

/* Hero Button Enhancements */
.amlc-hero-section .btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.amlc-hero-section .btn-primary {
    animation: amlcFadeInUp 0.8s ease 0.5s both;
}

.amlc-hero-section .btn-outline-light {
    animation: amlcFadeInUp 0.8s ease 0.6s both;
}

.amlc-hero-section .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.amlc-hero-section .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   SECTION PILLS & ELEMENTS
   ============================================ */

.amlc-section-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: amlcScaleIn 0.6s ease;
    transition: all 0.3s ease;
}

.amlc-section-pill:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.amlc-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.amlc-checklist li {
    padding-left: 30px;
    position: relative;
    color: #444;
    font-weight: 500;
    animation: amlcFadeInUp 0.6s ease both;
    transition: all 0.3s ease;
}

.amlc-checklist li:nth-child(1) { animation-delay: 0.1s; }
.amlc-checklist li:nth-child(2) { animation-delay: 0.2s; }
.amlc-checklist li:nth-child(3) { animation-delay: 0.3s; }
.amlc-checklist li:nth-child(4) { animation-delay: 0.4s; }
.amlc-checklist li:nth-child(5) { animation-delay: 0.5s; }
.amlc-checklist li:nth-child(6) { animation-delay: 0.6s; }

.amlc-checklist li:hover {
    transform: translateX(8px);
    color: var(--primary);
}

.amlc-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.amlc-image-placeholder {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 24px;
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
    transition: all 0.4s ease;
}

.amlc-image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(255, 107, 53, 0.22);
    border-color: rgba(255, 107, 53, 0.4);
}

.amlc-image-placeholder.amlc-image-alt {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 244, 240, 0.95) 100%);
}

.amlc-image-content {
    min-height: 280px;
    border-radius: 18px;
    border: 2px dashed rgba(255, 107, 53, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #666;
    text-align: center;
    padding: 16px;
}

.amlc-image-content i {
    font-size: 54px;
    color: var(--primary);
    animation: amlcPulse 3s ease-in-out infinite;
}

.amlc-image-content.amlc-image-media {
    min-height: 320px;
    border: none;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f3 0%, #ffe8df 100%);
    position: relative;
}

.amlc-monitoring-image,
.amlc-compliance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.amlc-image-placeholder:hover .amlc-monitoring-image,
.amlc-image-placeholder:hover .amlc-compliance-image {
    transform: scale(1.05);
}

.amlc-image-placeholder.amlc-image-media-card {
    position: relative;
}

.amlc-image-placeholder.amlc-image-media-card::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 66px;
    height: 66px;
    border: 2px dashed rgba(255, 107, 53, 0.45);
    border-radius: 14px;
    transform: rotate(-10deg);
    animation: amlcPulse 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.amlc-image-placeholder.amlc-image-blend {
    background: transparent;
    border-color: rgba(255, 107, 53, 0.14);
    box-shadow: 0 10px 28px rgba(255, 107, 53, 0.1);
}

.amlc-image-caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    margin: 0;
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    background: rgba(12, 18, 32, 0.45);
    padding: 8px 10px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

/* ============================================
   WHO NEEDS CARDS
   ============================================ */

.amlc-who-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.amlc-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.amlc-who-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.amlc-who-card:hover::before {
    opacity: 1;
}

.amlc-who-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.amlc-who-card:hover i {
    transform: scale(1.2) rotate(-10deg);
    color: var(--secondary);
}

.amlc-who-card h5 {
    color: #333;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   APPROACH CARDS
   ============================================ */

.amlc-approach-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.amlc-approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.amlc-approach-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.amlc-approach-card:hover::before {
    opacity: 1;
}

.amlc-approach-number {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-size: 24px;
}

.amlc-approach-card:hover .amlc-approach-number {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.amlc-approach-art-card {
    padding: 18px;
}

.amlc-approach-art {
    min-height: 220px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    background:
        radial-gradient(circle at 86% 14%, rgba(255, 107, 53, 0.16) 0%, transparent 44%),
        linear-gradient(135deg, #fff9f6 0%, #fff1ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    flex-wrap: wrap;
}

.amlc-approach-art-node {
    min-width: 92px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #8f2f10;
    background: linear-gradient(135deg, #ffe6db 0%, #ffd7c8 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 16px rgba(17, 24, 39, 0.08);
}

.amlc-approach-art-link {
    width: 24px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.42), rgba(34, 197, 94, 0.72));
}

.amlc-approach-art-caption {
    margin-top: 12px;
    text-align: center;
    color: #555;
}

/* Card Animation Stagger */
.amlc-approach-card:nth-child(1) { animation: amlcFadeInUp 0.6s ease 0.1s both; }
.amlc-approach-card:nth-child(2) { animation: amlcFadeInUp 0.6s ease 0.2s both; }
.amlc-approach-card:nth-child(3) { animation: amlcFadeInUp 0.6s ease 0.3s both; }
.amlc-approach-card:nth-child(4) { animation: amlcFadeInUp 0.6s ease 0.4s both; }
.amlc-approach-card:nth-child(5) { animation: amlcFadeInUp 0.6s ease 0.5s both; }
.amlc-approach-card:nth-child(6) { animation: amlcFadeInUp 0.6s ease 0.6s both; }

/* ============================================
   FEATURE CARDS
   ============================================ */

.amlc-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 107, 53, 0.16);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.amlc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.amlc-feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.22);
    border-color: rgba(255, 107, 53, 0.4);
}

.amlc-feature-card:hover::before {
    left: 100%;
}

.amlc-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.18);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.amlc-feature-card:hover .amlc-feature-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.amlc-feature-card:nth-child(1) { animation: amlcScaleIn 0.6s ease 0.1s both; }
.amlc-feature-card:nth-child(2) { animation: amlcScaleIn 0.6s ease 0.2s both; }
.amlc-feature-card:nth-child(3) { animation: amlcScaleIn 0.6s ease 0.3s both; }
.amlc-feature-card:nth-child(4) { animation: amlcScaleIn 0.6s ease 0.4s both; }
.amlc-feature-card:nth-child(5) { animation: amlcScaleIn 0.6s ease 0.5s both; }
.amlc-feature-card:nth-child(6) { animation: amlcScaleIn 0.6s ease 0.6s both; }

/* ============================================
   PROBLEMS LIST
   ============================================ */

.amlc-problem-list {
    display: grid;
    gap: 12px;
}

.amlc-image-placeholder.amlc-image-art {
    background:
        radial-gradient(circle at 85% 14%, rgba(255, 107, 53, 0.18) 0%, transparent 44%),
        linear-gradient(135deg, #fffaf7 0%, #fff1ea 55%, #fff9f5 100%);
}

.amlc-problems-art {
    position: relative;
    min-height: 320px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    background: rgba(255, 255, 255, 0.75);
    overflow: hidden;
}

.amlc-problems-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.35;
}

.amlc-problems-grid,
.amlc-problems-caption,
.amlc-problems-graffiti {
    position: relative;
    z-index: 1;
}

.amlc-problems-grid {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) 90px minmax(130px, 1fr);
    align-items: center;
    gap: 12px;
}

.amlc-problems-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amlc-problems-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.amlc-problems-risk .amlc-problems-chip {
    color: #8f2f10;
    background: linear-gradient(135deg, #ffe7dc 0%, #ffd8c9 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.amlc-problems-safe .amlc-problems-chip {
    color: #0f5f44;
    background: linear-gradient(135deg, #defbea 0%, #c8f5dd 100%);
    border: 1px solid rgba(22, 163, 74, 0.28);
}

.amlc-problems-flow {
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amlc-problems-flow-line {
    width: 72px;
    height: 6px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.48) 0%, rgba(255, 149, 84, 0.9) 45%, rgba(34, 197, 94, 0.8) 100%);
    background-size: 200% 100%;
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    animation: amlcShimmer 3.8s linear infinite;
}

.amlc-problems-flow-arrow {
    position: absolute;
    right: 5px;
    width: 14px;
    height: 14px;
    border-top: 4px solid #22c55e;
    border-right: 4px solid #22c55e;
    transform: rotate(45deg);
}

.amlc-problems-caption {
    margin-top: 16px;
    font-size: 0.94rem;
    font-weight: 700;
    color: #3f3f3f;
    text-align: center;
}

.amlc-problems-graffiti {
    position: absolute;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    pointer-events: none;
}

.amlc-problems-graffiti-top {
    top: 10px;
    right: 12px;
    width: 56px;
    height: 56px;
    transform: rotate(-10deg);
    animation: amlcPulse 3.2s ease-in-out infinite;
}

.amlc-problems-graffiti-bottom {
    left: 10px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    transform: rotate(8deg);
    animation: amlcPulse 3.2s ease-in-out infinite 0.8s;
}

.amlc-problem-item {
    background: #fff;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #3c3c3c;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.amlc-problem-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.02);
}

.amlc-problem-item i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 18px;
}

.amlc-problem-item:hover i {
    transform: scale(1.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.amlc-faq-section {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(255, 255, 255, 0.6) 68%, rgba(255, 255, 255, 0.24) 100%),
        url("../img2/aml-monitoring.png");
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-position: center, right center;
}

.amlc-faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 107, 53, 0.22) 0%, rgba(255, 149, 84, 0.16) 50%, rgba(15, 23, 42, 0.24) 100%);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.amlc-faq-section .container {
    position: relative;
    z-index: 1;
}

.amlc-faq-side-art {
    position: relative;
    min-height: 240px;
    border-radius: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(4px);
}

.amlc-faq-chip {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.14);
    color: #9a3b18;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.amlc-faq-side-art h5 {
    color: #2d2d2d;
    font-weight: 700;
}

.amlc-faq-side-art p {
    color: #5a5a5a;
    max-width: 420px;
}

.amlc-faq-side-graffiti {
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 64px;
    height: 64px;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    transform: rotate(-8deg);
    animation: amlcPulse 3.2s ease-in-out infinite;
}

.amlc-faq-side-graffiti-sm {
    right: 84px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    transform: rotate(8deg);
    animation-delay: 0.8s;
}

.amlc-faq-item {
    border: 1px solid rgba(255, 107, 53, 0.16);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.amlc-faq-item:hover {
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.18);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.35);
}

.amlc-faq-item .accordion-button {
    background: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.amlc-faq-item .accordion-button:hover {
    background: rgba(255, 107, 53, 0.04);
}

.amlc-faq-item .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: none;
}

.amlc-faq-accordion .accordion-body {
    background: #fff;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

/* ============================================
   CTA CARD
   ============================================ */

.amlc-cta-card {
    background: linear-gradient(120deg, #ff6b35 0%, #ff8f4f 100%);
    box-shadow: 0 24px 60px rgba(255, 107, 53, 0.28);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.amlc-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(255, 107, 53, 0.38);
}

.amlc-cta-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    animation: amlcPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.amlc-cta-card .btn {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.amlc-cta-card .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .amlc-hero-content {
        padding: 140px 0 70px;
    }

    .amlc-hero-section {
        background-position: center, center, 64% center;
    }

    .amlc-hero-graffiti {
        width: 110px;
        height: 110px;
        bottom: 12%;
    }

    .amlc-faq-section::before {
        width: 48%;
    }
}

@media (max-width: 767.98px) {
    .amlc-hero-title {
        font-size: 2.1rem;
    }

    .amlc-hero-section {
        background-position: center, center, center;
    }

    .amlc-hero-image-inner {
        min-height: 220px;
    }

    .amlc-image-content.amlc-image-media {
        min-height: 240px;
    }

    .amlc-problems-art {
        min-height: 300px;
        padding: 16px;
    }

    .amlc-problems-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .amlc-problems-flow {
        height: 42px;
    }

    .amlc-problems-flow-arrow {
        right: calc(50% - 42px);
    }

    .amlc-faq-section {
        background-position: center, center;
    }

    .amlc-faq-section::before {
        width: 100%;
        clip-path: polygon(0 58%, 100% 36%, 100% 100%, 0 100%);
    }

    .amlc-faq-side-art {
        min-height: auto;
        padding: 20px;
    }

    .amlc-approach-art {
        min-height: 200px;
    }

    .amlc-who-card i {
        font-size: 40px;
    }
}
