/* ========================================
   GRIEVANCE POLICY - HERO SECTION
   ======================================== */
.grievance-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: #ffffff;
}

/* Advanced background effects */
.grievance-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: orbFloat 30s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.3), transparent 70%);
    top: -250px;
    right: -150px;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2), transparent 70%);
    bottom: -200px;
    left: -200px;
    animation-delay: -15s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(80px, -80px) scale(1.1) rotate(120deg);
    }

    66% {
        transform: translate(-70px, 80px) scale(0.9) rotate(240deg);
    }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.08), rgba(0, 191, 166, 0.05));
    border: 1.5px solid rgba(0, 183, 74, 0.25);
    border-radius: 50px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.badge-line {
    width: 36px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-teal));
    border-radius: 4px;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.badge-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 183, 74, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Premium typography */
.grievance-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.grievance-hero-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Premium hero stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 183, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.stat-icon i {
    font-size: 28px;
    color: white;
    z-index: 1;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.stat-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* GRIEVANCE VISUAL - PERFECT CIRCLE LAYOUT */
.grievance-visual-new {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Support Hub */
.support-hub-center {
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hub-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.3), transparent 70%);
    border-radius: 50%;
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

.hub-icon {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00b74a 0%, #00bfa6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 183, 74, 0.4),
        inset 0 -8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    /* animation: hubRotate 20s linear infinite; */
}

@keyframes hubRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hub-icon i {
    font-size: 70px;
    color: white;
    /* animation: iconBounce 2s ease-in-out infinite; */
    transform: rotate(0deg);
    /* Counter-rotate to keep icon upright */
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) scale(1.05) rotate(0deg);
    }
}

.hub-status {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 18px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 25;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00b74a;
    border-radius: 50%;
    animation: statusBlink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 183, 74, 0.6);
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.status-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

/* SVG Path Animation - Perfect Circles */
.ticket-flow-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    opacity: 0.8;
}

/* Resolution Cards - Perfect Circle Positioning */
.resolution-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 183, 74, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 130px;
    text-align: center;
}

.resolution-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #00b74a, #00bfa6);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.resolution-card:hover::before {
    opacity: 1;
}

.resolution-card:hover {
    transform: translateY(-15px) scale(1.12);
    box-shadow: 0 25px 70px rgba(0, 183, 74, 0.35);
    border-color: transparent;
    z-index: 30;
}

.card-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00b74a, #00bfa6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 183, 74, 0.5);
    border: 3px solid white;
    z-index: 10;
}

.card-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.resolution-card:hover .card-icon {
    background: linear-gradient(135deg, #00b74a, #00bfa6);
    transform: rotateY(360deg) scale(1.1);
}

.card-icon i {
    font-size: 26px;
    color: var(--primary-green);
    transition: color 0.4s ease;
}

.resolution-card:hover .card-icon i {
    color: white;
}

.resolution-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.resolution-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Perfect Circle Positioning - 4 Cards at 90° intervals */
.card-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-220px);
    animation: orbitCard1 15s linear infinite;
}

.card-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(220px);
    animation: orbitCard2 15s linear infinite;
}

.card-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(220px);
    animation: orbitCard3 15s linear infinite;
}

.card-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(-220px);
    animation: orbitCard4 15s linear infinite;
}

/* Orbit Animations */
@keyframes orbitCard1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-220px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-220px) rotate(-360deg);
    }
}

@keyframes orbitCard2 {
    0% {
        transform: translate(-50%, -50%) rotate(90deg) translateY(-220px) rotate(-90deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(450deg) translateY(-220px) rotate(-450deg);
    }
}

@keyframes orbitCard3 {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-220px) rotate(-180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-220px) rotate(-540deg);
    }
}

@keyframes orbitCard4 {
    0% {
        transform: translate(-50%, -50%) rotate(270deg) translateY(-220px) rotate(-270deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(630deg) translateY(-220px) rotate(-630deg);
    }
}

/* Connecting Dots - Following Circle Path */
.connect-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 183, 74, 0.8);
    animation: dotOrbit 12s linear infinite;
}

@keyframes dotOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(160px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(160px);
        opacity: 1;
    }
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 3s;
}

.dot-3 {
    animation-delay: 6s;
}

.dot-4 {
    animation-delay: 9s;
}

/* Responsive */
@media (max-width: 992px) {
    .grievance-visual-new {
        height: 500px;
    }

    .ticket-flow-path {
        width: 420px;
        height: 420px;
    }

    .card-1 {
        transform: translate(-50%, -50%) translateY(-190px);
    }

    .card-2 {
        transform: translate(-50%, -50%) translateX(190px);
    }

    .card-3 {
        transform: translate(-50%, -50%) translateY(190px);
    }

    .card-4 {
        transform: translate(-50%, -50%) translateX(-190px);
    }
}

@media (max-width: 768px) {
    .grievance-visual-new {
        height: 450px;
    }

    .support-hub-center {
        width: 140px;
        height: 140px;
    }

    .hub-icon i {
        font-size: 55px;
    }

    .ticket-flow-path {
        width: 360px;
        height: 360px;
    }

    .resolution-card {
        padding: 16px 14px;
        min-width: 110px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon i {
        font-size: 22px;
    }

    .card-1 {
        transform: translate(-50%, -50%) translateY(-160px);
    }

    .card-2 {
        transform: translate(-50%, -50%) translateX(160px);
    }

    .card-3 {
        transform: translate(-50%, -50%) translateY(160px);
    }

    .card-4 {
        transform: translate(-50%, -50%) translateX(-160px);
    }

    @keyframes orbitCard1 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-160px) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateY(-160px) rotate(-360deg);
        }
    }

    @keyframes orbitCard2 {
        0% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-160px) rotate(-90deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(450deg) translateY(-160px) rotate(-450deg);
        }
    }

    @keyframes orbitCard3 {
        0% {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-160px) rotate(-180deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(540deg) translateY(-160px) rotate(-540deg);
        }
    }

    @keyframes orbitCard4 {
        0% {
            transform: translate(-50%, -50%) rotate(270deg) translateY(-160px) rotate(-270deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(630deg) translateY(-160px) rotate(-630deg);
        }
    }
}

@media (max-width: 576px) {
    .grievance-visual-new {
        height: 400px;
    }

    .support-hub-center {
        width: 120px;
        height: 120px;
    }

    .hub-icon i {
        font-size: 45px;
    }

    .resolution-card {
        padding: 14px 12px;
        min-width: 95px;
    }

    .card-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        top: -12px;
        right: -12px;
    }

    .resolution-card h4 {
        font-size: 14px;
    }

    .resolution-card p {
        font-size: 11px;
    }

    .card-1 {
        transform: translate(-50%, -50%) translateY(-130px);
    }

    .card-2 {
        transform: translate(-50%, -50%) translateX(130px);
    }

    .card-3 {
        transform: translate(-50%, -50%) translateY(130px);
    }

    .card-4 {
        transform: translate(-50%, -50%) translateX(-130px);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2.5px solid var(--primary-green);
    border-radius: 16px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}






/* ========================================
   SECURITY FEATURES
   ======================================== */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 251, 0.9));
    border: 1.5px solid rgba(0, 183, 74, 0.12);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--digibro-green), var(--digibro-teal));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.security-feature:hover::before {
    transform: scaleY(1);
}

.security-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.25);
    background: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.security-feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: rotate(-5deg) scale(1.1);
}

.feature-icon i {
    font-size: 24px;
    color: var(--digibro-green);
    transition: color 0.3s ease;
}

.security-feature:hover .feature-icon i {
    color: white;
}

.feature-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RIGHTS GRID (DPDPA 2023)
   ======================================== */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.right-item {
    background: white;
    border: 2px solid rgba(0, 183, 74, 0.12);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.05), rgba(0, 191, 166, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.right-item:hover::before {
    opacity: 1;
}

.right-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.18);
    border-color: rgba(0, 183, 74, 0.3);
}

.right-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.right-item:hover .right-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: rotate(10deg) scale(1.1);
}

.right-icon i {
    font-size: 28px;
    color: var(--digibro-green);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.right-item:hover .right-icon i {
    color: white;
}

.right-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.right-item p {
    font-size: 13px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}




/* ========================================
   DATA SHARING GRID
   ======================================== */
.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.sharing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 251, 0.95));
    border: 1.5px solid rgba(0, 183, 74, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sharing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sharing-card:hover::before {
    transform: scaleX(1);
}

.sharing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.2);
    border-color: rgba(0, 183, 74, 0.3);
    background: white;
}

.sharing-card i {
    font-size: 36px;
    color: var(--digibro-green);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.sharing-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--digibro-teal);
}

.sharing-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 12px;
}

.sharing-card p {
    font-size: 14px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
}






/* ========================================
   HIGHLIGHTS SECTION - GLASSMORPHISM CARDS
   ======================================== */
.highlights-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--digibro-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--digibro-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal), var(--digibro-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.2);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 183, 74, 0.3);
}

.highlight-icon i {
    font-size: 32px;
    color: var(--digibro-green);
    transition: color 0.4s ease;
}

.highlight-card:hover .highlight-icon i {
    color: white;
}

.highlight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 14px;
    line-height: 1.4;
}

.highlight-card p {
    font-size: 15px;
    color: var(--digibro-muted);
    line-height: 1.7;
    margin: 0;
}












/* ========================================
   POLICY CONTENT SECTION - PREMIUM REDESIGN
   ======================================== */

.policy-content-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Background Elements */
.policy-content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 183, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.policy-timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 200px);
    background: linear-gradient(to bottom, transparent, var(--digibro-green), transparent);
    top: 100px;
    z-index: 0;
}

.policy-timeline-line::before,
.policy-timeline-line::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--digibro-green);
    left: 50%;
    transform: translateX(-50%);
}

.policy-timeline-line::before {
    top: -10px;
    box-shadow: 0 0 20px rgba(0, 183, 74, 0.4);
}

.policy-timeline-line::after {
    bottom: -10px;
    box-shadow: 0 0 20px rgba(0, 183, 74, 0.4);
}

/* Policy Timeline Container */
.policy-timeline-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    z-index: 1;
}

/* Policy Step - Enhanced Timeline Design */
.policy-step {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-step:nth-child(odd) {
    flex-direction: row;
}

.policy-step:nth-child(even) {
    flex-direction: row-reverse;
}

.policy-step-connector {
    position: absolute;
    left: 50%;
    top: -7%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--digibro-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 183, 74, 0.2);
}

.policy-step-connector i {
    font-size: 20px;
    color: var(--digibro-green);
}

/* Step Number Badge - Premium Design */
.policy-step-number {
    flex: 0 0 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.step-number-circle::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    opacity: 0.3;
    filter: blur(10px);
    transition: all 0.4s ease;
}

.policy-step:hover .step-number-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.4);
}

.policy-step:hover .step-number-circle::before {
    opacity: 0.5;
    filter: blur(15px);
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Policy Content Card - Premium Glassmorphism */
.policy-step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 40px;
}

.policy-step-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 245, 31, 0.03), rgba(12, 234, 123, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.policy-step:hover .policy-step-content::before {
    opacity: 1;
}

.policy-step:hover .policy-step-content {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.2);
}

/* Decorative corner accent */
.policy-step-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 183, 74, 0.1) 50%);
    border-top-right-radius: 24px;
}

/* Header with Icon */
.policy-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.policy-header-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.policy-step:hover .policy-header-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: rotate(-5deg) scale(1.1);
}

.policy-header-icon i {
    font-size: 32px;
    color: var(--digibro-green);
    transition: color 0.4s ease;
}

.policy-step:hover .policy-header-icon i {
    color: white;
}

.policy-title-wrapper {
    flex: 1;
}

.policy-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--digibro-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.policy-subtitle {
    font-size: 16px;
    color: var(--digibro-muted);
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.policy-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--digibro-green);
    border-radius: 50%;
}

/* Policy Body Content */
.policy-body {
    position: relative;
    z-index: 2;
}

.policy-text {
    font-size: 16px;
    color: var(--digibro-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.policy-text p {
    margin-bottom: 16px;
}

.policy-text strong {
    color: var(--digibro-green);
    font-weight: 600;
    position: relative;
    padding: 0 2px;
}

.policy-text strong::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--digibro-green);
    opacity: 0.3;
    border-radius: 1px;
}

/* Enhanced List Styling */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    position: relative;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    border: 2px solid rgba(0, 183, 74, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--digibro-green), var(--digibro-teal));
    border-radius: 14px 0 0 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 183, 74, 0.2);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 183, 74, 0.12);
}

.policy-list li:hover::before {
    opacity: 1;
}

.policy-list i {
    font-size: 20px;
    color: var(--digibro-green);
    margin-top: 2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.policy-list li:hover i {
    color: var(--digibro-teal);
    transform: scale(1.2) rotate(10deg);
}

.policy-list li span {
    flex: 1;
    font-size: 16px;
    color: var(--digibro-dark);
    line-height: 1.7;
    font-weight: 500;
}

/* Alert Box Redesign */
.policy-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.08), rgba(0, 183, 74, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 191, 166, 0.15);
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.policy-alert-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--digibro-teal), var(--digibro-green));
}

.policy-alert-box i {
    font-size: 28px;
    color: var(--digibro-teal);
    flex-shrink: 0;
    margin-top: 2px;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.policy-alert-box p {
    font-size: 15px;
    color: var(--digibro-dark);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Security Features Grid */
.policy-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.policy-security-card {
    background: white;
    border: 2px solid rgba(0, 183, 74, 0.1);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-security-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.02), rgba(0, 191, 166, 0.01));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.policy-security-card:hover::before {
    opacity: 1;
}

.policy-security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.12);
    border-color: rgba(0, 183, 74, 0.25);
}

.security-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.security-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.policy-security-card:hover .security-card-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: rotate(-8deg);
}

.security-card-icon i {
    font-size: 26px;
    color: var(--digibro-green);
    transition: color 0.3s ease;
}

.policy-security-card:hover .security-card-icon i {
    color: white;
}

.security-card-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin: 0;
}

.security-card-content p {
    font-size: 14px;
    color: var(--digibro-muted);
    line-height: 1.7;
    margin: 0;
}

/* Contact Cards Grid */
.policy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.policy-contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
    border: 2px solid rgba(0, 183, 74, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--digibro-green), var(--digibro-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.policy-contact-card:hover::before {
    transform: scaleX(1);
}

.policy-contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 183, 74, 0.15);
    border-color: rgba(0, 183, 74, 0.25);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 191, 166, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.policy-contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 36px;
    color: var(--digibro-green);
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.policy-contact-card:hover .contact-card-icon i {
    color: white;
}

.contact-card-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--digibro-dark);
    margin-bottom: 12px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--digibro-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-card-content a {
    color: var(--digibro-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--digibro-teal);
    text-decoration: underline;
}

/* Enhanced Step Animation */
@keyframes stepAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .policy-timeline-line {
        left: 120px;
    }

    .policy-step {
        flex-direction: row !important;
    }

    .policy-step-connector {
        left: 120px;
    }

    .policy-step-content {
        margin-left: 160px;
        margin-right: 40px;
    }
}

@media (max-width: 992px) {
    .policy-content-section {
        padding: 80px 0 100px;
    }

    .policy-timeline-line {
        left: 100px;
    }

    .policy-step-connector {
        left: 100px;
        width: 50px;
        height: 50px;
    }

    .policy-step-number {
        flex: 0 0 100px;
        height: 100px;
    }

    .step-number-circle {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 28px;
    }

    .policy-step-content {
        margin-left: 140px;
        margin-right: 20px;
        padding: 32px;
    }

    .policy-title {
        font-size: 24px;
    }

    .policy-header-icon {
        width: 60px;
        height: 60px;
    }

    .policy-header-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .policy-timeline-line {
        display: none;
    }

    .policy-step-connector {
        display: none;
    }

    .policy-step {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .policy-step-number {
        flex: 0 0 auto;
        height: auto;
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    .policy-step-content {
        margin: 0;
        padding: 28px;
    }

    .policy-header {
        flex-direction: column;
        gap: 16px;
    }

    .policy-header-icon {
        width: 70px;
        height: 70px;
    }

    .policy-security-grid,
    .policy-contact-grid {
        grid-template-columns: 1fr;
    }

    .policy-alert-box {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .policy-alert-box i {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .policy-content-section {
        padding: 60px 0 80px;
    }

    .policy-step {
        margin-bottom: 50px;
    }

    .policy-step-content {
        padding: 24px;
    }

    .policy-title {
        font-size: 22px;
    }

    .step-number-circle {
        width: 60px;
        height: 60px;
    }

    .step-number {
        font-size: 24px;
    }

    .policy-header-icon {
        width: 60px;
        height: 60px;
    }

    .policy-header-icon i {
        font-size: 26px;
    }

    .policy-text {
        font-size: 15px;
    }

    .policy-contact-card {
        padding: 24px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .contact-card-icon i {
        font-size: 32px;
    }
}




/* ========================================
REDRESSAL MATRIX
======================================== */
.redressal-matrix {
    margin: 80px 0 40px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.03), rgba(0, 102, 204, 0.02));
    border-radius: 32px;
    border: 2px solid rgba(0, 183, 74, 0.1);
}

.matrix-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.matrix-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    border: 2px solid rgba(0, 183, 74, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.matrix-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.matrix-card:hover::before {
    transform: scaleX(1);
}

.matrix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.2);
    border-color: rgba(0, 183, 74, 0.3);
}

.matrix-level {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.matrix-officer h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.officer-role {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.matrix-contact {
    background: var(--bg-section);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.matrix-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-medium);
}

.matrix-contact p:last-child {
    margin-bottom: 0;
}

.matrix-contact i {
    color: var(--primary-green);
    font-size: 16px;
}

.matrix-duties {
    list-style: none;
    padding: 0;
    margin: 0;
}

.matrix-duties li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.matrix-duties i {
    color: var(--secondary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}









/* ========================================
   TRUST BANNER - PREMIUM CTA
   ======================================== */
.trust-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--digibro-green), var(--digibro-teal));
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 20s ease-in-out infinite;
}

.trust-banner::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.trust-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.trust-icon {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.trust-content:hover .trust-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.trust-icon i {
    font-size: 42px;
    color: var(--digibro-green);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.trust-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

.trust-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--digibro-green);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.trust-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
    color: var(--digibro-teal);
}

.trust-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.trust-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .grievance-hero {
        padding: 120px 0 60px;
    }

    .floating-step {
        padding: 16px;
    }

    .floating-step span {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .grievance-hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item {
        gap: 12px;
    }

    .stat-icon {
        width: 54px;
        height: 54px;
    }

    .stat-icon i {
        font-size: 24px;
    }

    .grievance-visual {
        height: 400px;
        margin-top: 40px;
    }

    .floating-step {
        padding: 14px 18px;
    }

    .floating-step i {
        font-size: 22px;
    }

    .redressal-matrix {
        padding: 40px 30px;
    }

    .matrix-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 10px 18px;
    }

    .badge-text {
        font-size: 11px;
    }

    .grievance-hero-subtitle {
        font-size: 16px;
    }

    .redressal-matrix {
        padding: 30px 20px;
    }

    .matrix-card {
        padding: 25px;
    }
}