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

:root {
    --primary: #E87D0D;
    --primary-light: #FFA726;
    --primary-dark: #B55A00;
    --accent: #FF9800;
    --accent-light: #FFB74D;
    --accent-dark: #E65100;
    --bg: #FFF8F0;
    --bg-light: #FFFFFF;
    --white: #FFFFFF;
    --text: #2C1810;
    --text-light: #5D4037;
    --text-dark: #1B0E0A;
    --border: #FFE0B2;
    --success: #4CAF50;
    --gold: #FFD54F;
    --gold-dark: #FFC107;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section animations - only for index.html */
.index-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.index-section.animate {
    opacity: 1;
    transform: translateY(0);
}
.index-section.hero-section {
    opacity: 1;
    transform: translateY(0);
}

/* Individual section delays */
.section-delay-1 { transition-delay: 0.1s; }
.section-delay-2 { transition-delay: 0.2s; }
.section-delay-3 { transition-delay: 0.3s; }
.section-delay-4 { transition-delay: 0.4s; }

/* Card animations */
.feature-card, .process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card.animate, .process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 8px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}
.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #FFF8F0 0%, #FFECB3 50%, #FFF8F0 100%);
    color: var(--text);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(232, 125, 13, 0.2) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.15) 0%, transparent 50%);
}
.hero-full-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3rem 0;
}
.hero-full-image {
    width: 70%;
    max-width: 1300px;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 
        0 30px 100px rgba(232, 125, 13, 0.12),
        0 15px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    filter: blur(0);
    transition: all 0.4s ease;
}
.hero-full-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 40px 120px rgba(232, 125, 13, 0.18),
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}
.hero-cta-button {
    position: absolute;
    top: 75%;
    left: 22%;
    transform: translateY(-50%);
    z-index: 20;
}
.glass-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 48px;
    background: linear-gradient(90deg, 
        #FF6B00 0%, 
        #FF8C00 25%,
        #FFA500 50%,
        #FF8C00 75%,
        #FF6B00 100%);
    background-size: 200% 100%;
    animation: flowOrange 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 
        0 20px 60px rgba(255, 107, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 3px 8px rgba(255, 255, 255, 0.6),
        inset 0 -3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}
.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shineFlow 3s linear infinite;
}
.glass-btn:hover {
    animation: flowOrange 1.5s linear infinite;
    box-shadow: 
        0 28px 80px rgba(255, 107, 0, 0.5),
        0 12px 35px rgba(0, 0, 0, 0.18),
        inset 0 3px 10px rgba(255, 255, 255, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px) scale(1.02);
}
.glass-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 12px 40px rgba(255, 107, 0, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}
.glass-btn-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}
.glass-btn-arrow {
    font-size: 1.8rem;
    color: #FFFFFF;
    animation: bounceArrow 2s ease-in-out infinite;
    font-weight: 700;
}
@keyframes flowOrange {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@keyframes shineFlow {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}
@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.hero-content-reverse {
    flex-direction: row-reverse;
}
.hero-text {
    flex: 1;
    text-align: left;
    opacity: 0;
    animation: heroTextIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    height: 700px;
    padding-top: 20px;
}
.hero-image-coin {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    padding-top: 0;
    opacity: 0;
    animation: heroCoinIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.coin-glow {
    position: absolute;
    width: 580px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(139, 195, 74, 0.4) 0%, rgba(200, 230, 201, 0.6) 40%, rgba(232, 245, 233, 0.8) 70%, transparent 100%);
    border-radius: 20px;
    z-index: 0;
}
.hero-coin {
    max-width: 560px;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    filter: drop-shadow(0 10px 30px rgba(27, 94, 32, 0.2));
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0.5rem 0 0.8rem;
    opacity: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroCoinIn {
    from { opacity: 0; transform: translateX(-40px) scale(0.85); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.rbi-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.6rem 1.8rem;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.1;
}
.hero h1 .gold-text {
    color: var(--accent);
    font-weight: 800;
    font-size: 4rem;
}
.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 0 2.5rem 0;
    line-height: 1.7;
}
.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232, 125, 13, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 125, 13, 0.5);
}

/* Section Styles */
.section {
    padding: 4rem 0;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

/* Loan Highlights */
.loan-highlights {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}
.loan-highlights h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.highlight-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg);
    border-radius: 8px;
}
.highlight-item .label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.highlight-item .value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* Features Banner */
.features-scroll-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFECB3 30%, #FFF8F0 60%, #FFD54F 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.features-scroll-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(232, 125, 13, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
}
.features-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.features-badge {
    display: inline-block;
    background: rgba(232, 125, 13, 0.12);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    position: relative;
}
.features-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.features-main-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
}
.eagle-fixed-panel {
    flex: 0 0 225px;
    height: 225px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eagle-glow-ring {
    position: absolute;
    width: 225px;
    height: 225px;
    border: 2px solid rgba(232, 125, 13, 0.25);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}
.eagle-glow-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #FF6B00;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}
@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.eagle-glow-pulse {
    position: absolute;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(232, 125, 13, 0.25) 0%, rgba(255, 152, 0, 0.18) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: pulseExpand 3s ease-in-out infinite;
}
@keyframes pulseExpand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.eagle-image-container {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eagle-fixed-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: 
        drop-shadow(0 15px 40px rgba(232, 125, 13, 0.3))
        drop-shadow(0 0 0 rgba(255, 248, 240, 0));
    mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
    animation: eagleFloat 4s ease-in-out infinite;
}
@keyframes eagleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.eagle-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}
.float-element {
    position: absolute;
    color: rgba(255, 152, 0, 0.6);
    font-size: 1.5rem;
    animation: floatMove 6s ease-in-out infinite;
}
.float-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}
.float-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}
.float-3 {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}
@keyframes floatMove {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) rotate(15deg);
        opacity: 0.8;
    }
}
.features-horizontal-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    z-index: 2;
}
.features-horizontal-scroll::before,
.features-horizontal-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 3;
    pointer-events: none;
}
.features-horizontal-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 248, 240, 1) 0%, transparent 100%);
}
.features-horizontal-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 248, 240, 1) 0%, transparent 100%);
}
.scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollFeaturesHorizontal 6s linear infinite;
}
.scroll-track:hover {
    animation-play-state: paused;
}
@keyframes scrollFeaturesHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.scroll-card {
    flex: 0 0 280px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 236, 179, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(232, 125, 13, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(232, 125, 13, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(232, 125, 13, 0.1);
    line-height: 1;
}
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}
.scroll-dot {
    width: 10px;
    height: 10px;
    background: rgba(232, 125, 13, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.scroll-dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.features-scroll-track:hover {
    animation-play-state: paused;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.3rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 25px rgba(232, 125, 13, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.35s ease;
    min-height: 100px;
}
.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(232, 125, 13, 0.18);
    border-color: rgba(232, 125, 13, 0.22);
}
.feature-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(232, 125, 13, 0.35);
    flex-shrink: 0;
}
.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.45rem;
    flex-shrink: 0;
}
.feature-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.feature-info p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}
@keyframes scrollFeaturesVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Features */
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}
.features-left, .features-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 14px;
    text-align: left;
    transition: all 0.35s ease;
    border: 1px solid rgba(232, 125, 13, 0.1);
    box-shadow: 0 2px 12px rgba(232, 125, 13, 0.08);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(232, 125, 13, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 125, 13, 0.15);
    border-color: rgba(232, 125, 13, 0.2);
}
.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.14) 0%, rgba(255, 152, 0, 0.08) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.2) 0%, rgba(255, 152, 0, 0.15) 100%);
}
.feature-card h4 {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}
.features-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.center-illustration {
    max-width: 360px;
    height: auto;
    object-fit: contain;
    animation: floatIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Old features-grid for compatibility */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Process Steps */
.process-header {
    text-align: left;
    margin-bottom: 3rem;
}
.process-badge {
    display: inline-block;
    background: rgba(232, 125, 13, 0.12);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.process-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.process-title span {
    color: var(--primary);
}
.process-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0;
}
.process-flow-section {
    position: relative;
    overflow: hidden;
}
.process-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(232, 125, 13, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 152, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.flow-chart-container {
    position: relative;
    margin: 3rem 0;
    padding: 2rem;
}
.flow-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(232, 125, 13, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
.flow-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}
.flow-particles::before,
.flow-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(232, 125, 13, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: particleMove 20s linear infinite;
}
.flow-particles::after {
    animation: particleMove 30s linear infinite reverse;
    background-size: 60px 60px;
    opacity: 0.5;
}
@keyframes particleMove {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-40px) translateX(-40px);
    }
}
.flow-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flow-chart-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(232, 125, 13, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}
.flow-chart-img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 35px 100px rgba(232, 125, 13, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.1);
}
.flow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}
.flow-data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}
.data-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.data-point-1 {
    top: 20%;
    left: 15%;
}
.data-point-2 {
    top: 60%;
    right: 18%;
}
.data-point-3 {
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}
.data-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 107, 0, 0.6),
        0 0 40px rgba(255, 107, 0, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}
.data-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}
.data-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(232, 125, 13, 0.2);
    animation: labelFade 3s ease-in-out infinite;
}
@keyframes labelFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}
.process-steps-wrapper {
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem 0;
}
.process-steps {
    display: flex;
    gap: 0;
    align-items: flex-start;
}
.process-step {
    flex: 1;
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 236, 179, 0.5) 100%);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(232, 125, 13, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.process-step:nth-child(1) {
    transform: translateY(0);
}
.process-step:nth-child(3) {
    transform: translateY(30px);
}
.process-step:nth-child(5) {
    transform: translateY(60px);
}
.process-step:nth-child(7) {
    transform: translateY(90px);
}
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.5s ease;
}
.process-step:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}
.process-step:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 20px 50px rgba(232, 125, 13, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(232, 125, 13, 0.25);
}
.process-step .step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(232, 125, 13, 0.35);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}
.process-step:hover .step-num {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 18px rgba(232, 125, 13, 0.45);
}
.process-step .step-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.25) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}
.process-step:hover .step-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.8);
    animation: glowPulse 2s ease-in-out infinite;
}
.process-step .step-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.14) 0%, rgba(255, 152, 0, 0.14) 100%);
    border-radius: 28px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
}
.process-step:hover .step-icon-wrapper {
    transform: scale(1.15) rotate(3deg);
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.22) 0%, rgba(255, 152, 0, 0.22) 100%);
}
.process-step .step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover .step-icon-img {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 20px rgba(232, 125, 13, 0.35));
}
.process-step h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}
.process-step:hover h4 {
    color: var(--primary);
}
.process-step p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    z-index: 2;
    position: relative;
}
.process-step .step-progress {
    width: 70%;
    height: 5px;
    background: rgba(27, 94, 32, 0.08);
    border-radius: 3px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.process-step .step-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover .step-progress::after {
    transform: scaleX(1);
}
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    position: relative;
}
.connector-line {
    width: 4px;
    flex: 1;
    min-height: 80px;
    background: linear-gradient(180deg, rgba(232, 125, 13, 0.3) 0%, rgba(255, 152, 0, 0.2) 100%);
    border-radius: 2px;
    position: relative;
}
.connector-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(27, 94, 32, 0.6);
    animation: pulseDot 1.8s ease-in-out infinite;
}
.connector-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(27, 94, 32, 0.5);
    border-radius: 50%;
}
.connector-arrow {
    font-size: 1.4rem;
    color: rgba(27, 94, 32, 0.6);
    margin: 0.6rem 0;
    animation: arrowFloat 2s ease-in-out infinite;
}
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.5);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(2);
    }
}
@keyframes pulseDot {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(27, 94, 32, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(27, 94, 32, 0.8);
    }
}
@keyframes arrowFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(4px) translateY(-2px);
    }
    50% {
        transform: translateX(0) translateY(-4px);
    }
    75% {
        transform: translateX(-4px) translateY(-2px);
    }
}
.step-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1) 0%, rgba(27, 94, 32, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.step-arrow::after {
    content: '→';
}
.step-arrow:hover {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.15) 0%, rgba(27, 94, 32, 0.1) 100%);
    transform: scale(1.1);
}
.security-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.1) 0%, rgba(255, 152, 0, 0.06) 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 125, 13, 0.12);
}
.security-icon, .security-lock {
    font-size: 1.5rem;
    opacity: 0.7;
}
.security-content {
    flex: 1;
}
.security-content h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.security-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Old process steps for compatibility */
.process-steps.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step.grid {
    text-align: center;
}
.process-step.grid .step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}
.process-step.grid p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Disclaimer */
.disclaimer {
    background: #FFF3E0;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}
.disclaimer p {
    color: #E65100;
    font-size: 0.95rem;
}

/* Products Page */
.product-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.product-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.product-params {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.param-item {
    padding: 1rem;
    background: var(--bg);
    border-radius: 8px;
}
.param-item .label {
    font-size: 0.85rem;
    color: var(--text-light);
}
.param-item .value {
    font-weight: 600;
    color: var(--primary);
}
.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.eligibility-list li {
    padding-left: 1.5rem;
    position: relative;
}
.eligibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* Representative Example */
.rep-example {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}
.rep-example p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* About Page */
.about-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.about-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-section p {
    color: var(--text-light);
    line-height: 1.8;
}
.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.value-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 8px;
}
.value-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}
.contact-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-card p {
    color: var(--text-light);
    margin: 0.5rem 0;
}
.contact-card a {
    color: var(--primary);
}

/* Contact Page */
.contact-hero {
    text-align: center;
    padding: 4rem 0;
}
.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.contact-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.contact-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-card-new {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(232, 125, 13, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 125, 13, 0.06);
    opacity: 0;
    transform: translateY(20px);
}
.contact-card-new.animate {
    opacity: 1;
    transform: translateY(0);
}
.contact-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 125, 13, 0.15);
}
.contact-icon-new {
    flex: 0 0 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(232, 125, 13, 0.14) 0%, rgba(255, 152, 0, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}
.contact-content-new {
    flex: 1;
}
.contact-label-new {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-value-new {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}
.contact-value-new a {
    color: var(--primary);
    transition: color 0.3s;
}
.contact-value-new a:hover {
    color: var(--primary-dark);
}
.address-value-new {
    line-height: 1.6;
}

.copy-btn-new {
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.08) 0%, rgba(27, 94, 32, 0.04) 100%);
    border: 1px solid rgba(27, 94, 32, 0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font);
    white-space: nowrap;
}
.copy-btn-new:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.copy-btn-new.copied {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

/* Grievance Page */
.grievance-level {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent);
}
.grievance-level h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.grievance-level p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C1810 0%, #1B0E0A 100%);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0;
    margin-top: 4rem;
}
.footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-content {
    display: flex;
    gap: 3rem;
}
.footer-company {
    flex-shrink: 0;
    width: 260px;
    padding-right: 1rem;
}
.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.footer-company-name {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.6; letter-spacing: 0.3px;
}
.footer-address {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    line-height: 1.75;
            letter-spacing: 0.2px;
        }
.footer-links-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-column h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-column ul li {
    margin: 0;
}
.footer-column ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color 0.3s;
    white-space: nowrap;
}
.footer-column ul li a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-company {
        width: auto;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-links-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 640px) {
    .footer-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Grievance Page */
.grievance-hero {
    text-align: center;
}
.grievance-hero .hero-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}
.grievance-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.grievance-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.grievance-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.grievance-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.12) 0%, rgba(27, 94, 32, 0.06) 100%);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.3rem;
}
.section-header h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 12px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info {
    flex: 1;
}
.contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}
.contact-value-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.contact-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}
.contact-value a {
    color: var(--primary);
}
.copy-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.copy-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}
.timeline-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.timeline-content h4 {
    margin-bottom: 0.2rem;
    color: var(--text);
    font-weight: 600;
}
.timeline-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.escalation-steps {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.escalation-step {
    flex: 1;
    min-width: 200px;
    background: var(--bg);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}
.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.escalation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0 0.5rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .hero-content,
    .hero-content-reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-image-coin {
        height: 320px;
    }
    .hero-coin {
        max-width: 240px;
    }
    .coin-glow {
        width: 280px;
        height: 280px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .grievance-hero h1 {
        font-size: 1.8rem;
    }
    .hero-img {
        max-height: 250px;
    }
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-left, .features-right {
        order: 2;
    }
    .features-center {
        order: 1;
    }
    .center-illustration {
        max-width: 200px;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-params {
        grid-template-columns: 1fr;
    }
    .escalation-steps {
        flex-direction: column;
    }
    .escalation-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    .hero-full-container {
        padding: 1.5rem 0;
    }
    .hero-full-image {
        width: 85%;
        max-width: 450px;
    }
    .hero-cta-button {
        left: 50%;
        top: 60%;
        transform: translate(calc(-50% - 80px), -50%);
    }
    .glass-btn {
        padding: 18px 36px;
        border-radius: 22px;
        gap: 12px;
    }
    .glass-btn-text {
        font-size: 1.1rem;
    }
    .glass-btn-arrow {
        font-size: 1.4rem;
    }
}
