/* ══════════════════════════════════════════════════════════════
   RED VECINAL - LANDING PAGE CSS
   Paleta: Navy Blue #0D2844 | Green #2D9E3F | Light Green #6DBE45
══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   LANDING VARIABLES (override global)
══════════════════════════════════════════════════════════════ */
.landing-page {
    --rv-navy: #0D2844;
    --rv-navy-light: #143A5C;
    --rv-navy-dark: #081C35;
    --rv-green: #2D9E3F;
    --rv-green-dark: #1E8330;
    --rv-green-light: #6DBE45;
    --rv-green-50: rgba(45, 158, 63, 0.08);
    --rv-green-100: rgba(45, 158, 63, 0.15);
    --rv-white: #FFFFFF;
    --rv-cream: #F8FAF5;
    --rv-gray: #64748B;
    --rv-gray-light: #F1F5F9;
    --rv-danger: #DC2626;
    --rv-warning: #F59E0B;
    --rv-info: #0EA5E9;
    background: var(--rv-white);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(160deg, var(--rv-navy-dark) 0%, var(--rv-navy) 40%, var(--rv-navy-light) 100%);
    overflow: hidden;
}

/* Hexagonal grid background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%, rgba(255,255,255,0.1)),
        linear-gradient(150deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%, rgba(255,255,255,0.1)),
        linear-gradient(30deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%, rgba(255,255,255,0.1)),
        linear-gradient(150deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%, rgba(255,255,255,0.1)),
        linear-gradient(60deg, rgba(109,190,69,0.15) 25%, transparent 25.5%, transparent 75%, rgba(109,190,69,0.15) 75%, rgba(109,190,69,0.15)),
        linear-gradient(60deg, rgba(109,190,69,0.15) 25%, transparent 25.5%, transparent 75%, rgba(109,190,69,0.15) 75%, rgba(109,190,69,0.15));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,158,63,0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109,190,69,0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: glowPulse 10s ease-in-out infinite 3s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text */
.hero-text {
    color: var(--rv-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 158, 63, 0.2);
    border: 1px solid rgba(45, 158, 63, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    color: var(--rv-green-light);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--rv-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45,158,63,0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(45,158,63,0); }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text h1 .text-gradient {
    background: linear-gradient(135deg, var(--rv-green) 0%, var(--rv-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Custom button styles for landing */
.btn-glow {
    background: linear-gradient(135deg, var(--rv-green) 0%, var(--rv-green-dark) 100%) !important;
    border: none !important;
    box-shadow: 0 0 30px rgba(45, 158, 63, 0.4), 0 4px 15px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(45, 158, 63, 0.6), 0 8px 25px rgba(0,0,0,0.3) !important;
    transform: translateY(-2px) !important;
}

.btn-outline-light {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: var(--rv-white) !important;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.btn-white {
    background: var(--rv-white) !important;
    color: var(--rv-navy) !important;
    font-weight: 700 !important;
    border: none !important;
}

.btn-white:hover {
    background: var(--rv-cream) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rv-green-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    background: #111;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #111;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.phone-screen {
    background: var(--rv-navy);
    border-radius: 24px;
    padding: 3rem 1rem 1rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.app-header-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--rv-white);
    padding: 0 0.25rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 0.85rem;
}

.app-header-mock i:first-child {
    color: var(--rv-green);
}

.app-alert-mock {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 12px;
    animation: slideInMock 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.app-alert-mock:nth-child(2) { animation-delay: 0.8s; }
.app-alert-mock:nth-child(3) { animation-delay: 1.4s; }
.app-alert-mock:nth-child(4) { animation-delay: 2s; }

@keyframes slideInMock {
    to { opacity: 1; transform: translateX(0); }
}

.app-alert-mock--danger {
    background: rgba(220, 38, 38, 0.15);
    border-left: 3px solid var(--rv-danger);
}

.app-alert-mock--success {
    background: rgba(45, 158, 63, 0.15);
    border-left: 3px solid var(--rv-green);
}

.app-alert-mock--warning {
    background: rgba(245, 158, 11, 0.15);
    border-left: 3px solid var(--rv-warning);
}

.alert-icon-mock {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.app-alert-mock--danger .alert-icon-mock { background: rgba(220,38,38,0.2); color: #F87171; }
.app-alert-mock--success .alert-icon-mock { background: rgba(45,158,63,0.2); color: var(--rv-green-light); }
.app-alert-mock--warning .alert-icon-mock { background: rgba(245,158,11,0.2); color: #FBBF24; }

.alert-text-mock strong {
    display: block;
    color: var(--rv-white);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.alert-text-mock span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
}

.app-panic-mock {
    margin-top: auto;
    background: linear-gradient(135deg, var(--rv-danger), #B91C1C);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    color: var(--rv-white);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: panicGlow 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes panicGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(220,38,38,0.3); }
    50% { box-shadow: 0 0 30px rgba(220,38,38,0.6); }
}

/* Floating badges around phone */
.floating-badge {
    position: absolute;
    background: var(--rv-white);
    padding: 0.625rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-badge i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.floating-badge span {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--rv-navy);
}

.fb-1 {
    top: 5%;
    right: -10%;
    animation-delay: 0s;
}
.fb-1 i { background: rgba(245,158,11,0.15); color: var(--rv-warning); }

.fb-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: 1.5s;
}
.fb-2 i { background: var(--rv-green-50); color: var(--rv-green); }

.fb-3 {
    bottom: 5%;
    right: -5%;
    animation-delay: 3s;
}
.fb-3 i { background: rgba(14,165,233,0.15); color: var(--rv-info); }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
    padding: 1.5rem 0;
    background: var(--rv-white);
    border-bottom: 1px solid var(--rv-gray-light);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rv-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--rv-green);
    font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMON STYLES
══════════════════════════════════════════════════════════════ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: var(--rv-green-50);
    color: var(--rv-green);
    padding: 0.375rem 1.25rem;
    border-radius: 100px;
    font-size: 0.825rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--rv-green-100);
}

.section-badge--light {
    background: rgba(255,255,255,0.15);
    color: var(--rv-white);
    border-color: rgba(255,255,255,0.2);
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--rv-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-header h2 strong {
    color: var(--rv-green);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--rv-gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM / SOLUTION SECTION
══════════════════════════════════════════════════════════════ */
.problem-section {
    background: var(--rv-cream);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.problem-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 40, 68, 0.15);
}

.problem-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.problem-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--rv-white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rv-green);
    line-height: 1;
}

.badge-number span {
    font-size: 1rem;
    color: var(--rv-gray);
}

.badge-text {
    font-size: 0.75rem;
    color: var(--rv-gray);
    line-height: 1.4;
}

.problem-content .section-badge {
    margin-bottom: 1.25rem;
}

.problem-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--rv-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.problem-content h2 strong {
    color: var(--rv-green);
}

.problem-lead {
    font-size: 1.05rem;
    color: var(--rv-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.problem-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.problem-item--bad .problem-icon {
    background: rgba(220,38,38,0.1);
    color: var(--rv-danger);
}

.problem-item--good .problem-icon {
    background: var(--rv-green-50);
    color: var(--rv-green);
}

.problem-item strong {
    display: block;
    color: var(--rv-navy);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.problem-item p {
    font-size: 0.85rem;
    color: var(--rv-gray);
    line-height: 1.5;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES SHOWCASE
══════════════════════════════════════════════════════════════ */
.features-section {
    background: var(--rv-white);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--rv-white);
    border: 1px solid rgba(13, 40, 68, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 40, 68, 0.1);
    border-color: rgba(45, 158, 63, 0.2);
}

.feature-card--hero {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--rv-navy-dark) 0%, var(--rv-navy) 100%);
    border: none;
    color: var(--rv-white);
    padding: 3rem;
}

.feature-card--hero:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(13, 40, 68, 0.3);
}

.feature-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-hero-text {
    position: relative;
    z-index: 1;
}

.feature-hero-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-hero-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    max-width: 440px;
}

.feature-hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card--hero h3 { color: var(--rv-white); }
.feature-card--hero p { color: rgba(255,255,255,0.75); }

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(45,158,63,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card-content {
    position: relative;
    z-index: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.feature-icon--danger { background: rgba(220,38,38,0.1); color: var(--rv-danger); }
.feature-icon--warning { background: rgba(245,158,11,0.1); color: var(--rv-warning); }
.feature-icon--info { background: rgba(14,165,233,0.1); color: var(--rv-info); }
.feature-icon--success { background: var(--rv-green-50); color: var(--rv-green); }
.feature-icon--primary { background: rgba(13,40,68,0.08); color: var(--rv-navy); }
.feature-icon--accent { background: rgba(109,190,69,0.1); color: var(--rv-green-light); }

.feature-card--hero .feature-icon--danger {
    background: rgba(220,38,38,0.2);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--rv-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--rv-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: var(--rv-gray);
}

.feature-list li i {
    color: var(--rv-green);
    font-size: 0.7rem;
}

.feature-card--hero .feature-list li {
    color: rgba(255,255,255,0.7);
}
.feature-card--hero .feature-list li i {
    color: var(--rv-green-light);
}

/* Panic Button Demo */
.feature-demo {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.panic-button-demo {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panic-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(220,38,38,0.3);
    border-radius: 50%;
    animation: panicRing 2s ease-out infinite;
}

.panic-ring--2 { animation-delay: 0.5s; }
.panic-ring--3 { animation-delay: 1s; }

@keyframes panicRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.panic-core {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--rv-danger) 0%, #B91C1C 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--rv-white);
    box-shadow: 0 0 30px rgba(220,38,38,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.panic-core:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(220,38,38,0.7);
}

.panic-core i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.panic-core span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════════════════════
   VERIFIED SECTION
══════════════════════════════════════════════════════════════ */
.verified-section {
    background: linear-gradient(160deg, var(--rv-navy-dark) 0%, var(--rv-navy) 60%, var(--rv-navy-light) 100%);
    color: var(--rv-white);
    position: relative;
    overflow: hidden;
}

.verified-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verified-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--rv-white);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.verified-content h2 strong {
    color: var(--rv-green-light);
}

.verified-content > p {
    font-size: 1rem;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.verify-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.verify-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.verify-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rv-green), var(--rv-green-light));
    color: var(--rv-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.verify-step-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.verify-step-content p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
    line-height: 1.5;
}

/* Shield Graphic */
.verified-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-outer {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(45, 158, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45,158,63,0.2); }
    50% { box-shadow: 0 0 0 20px rgba(45,158,63,0); }
}

.shield-middle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(45, 158, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rv-green), var(--rv-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(45,158,63,0.4);
}

.shield-inner i {
    font-size: 2.5rem;
    color: var(--rv-white);
}

.shield-orbit {
    position: absolute;
    inset: 0;
    animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--rv-green-light);
}

.orbit-dot--1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot--2 { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-dot--3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot--4 { top: 50%; left: 0; transform: translateY(-50%); }

/* Counter-rotate icons inside orbit */
.orbit-dot i {
    animation: orbitCounterSpin 20s linear infinite;
}

@keyframes orbitCounterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.how-it-works {
    background: var(--rv-cream);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-icon-wrap {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -8px;
    right: calc(50% - 50px);
    width: 28px;
    height: 28px;
    background: var(--rv-green);
    color: var(--rv-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(45,158,63,0.3);
}

.step-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--rv-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(13,40,68,0.08);
    border: 1px solid rgba(13,40,68,0.05);
    transition: all 0.3s ease;
}

.step:hover .step-icon-bg {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(13,40,68,0.12);
}

.step-icon-bg i {
    font-size: 1.75rem;
    color: var(--rv-green);
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--rv-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--rv-gray);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.step-line {
    width: 80px;
    height: 3px;
    margin-top: 40px;
    position: relative;
    background: rgba(45,158,63,0.15);
    border-radius: 3px;
    overflow: hidden;
}

.step-line-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--rv-green), var(--rv-green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
    border-radius: 3px;
}

.step-line.animated .step-line-fill {
    transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--rv-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.testimonial-card {
    background: var(--rv-white);
    border: 1px solid rgba(13,40,68,0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13,40,68,0.08);
}

.testimonial-card--featured {
    border-color: var(--rv-green);
    background: linear-gradient(to bottom, rgba(45,158,63,0.03), var(--rv-white));
    box-shadow: 0 8px 25px rgba(45,158,63,0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FBBF24;
    font-size: 0.85rem;
}

.testimonial-card > p {
    font-size: 0.925rem;
    color: var(--rv-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--rv-navy);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--rv-gray);
}

/* ══════════════════════════════════════════════════════════════
   IMPACT STATS
══════════════════════════════════════════════════════════════ */
.impact-section {
    background: var(--rv-white);
    padding: 4rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.impact-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    background: var(--rv-cream);
    border: 1px solid rgba(13,40,68,0.05);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13,40,68,0.08);
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: var(--rv-green-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--rv-green);
    font-size: 1.25rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rv-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.8rem;
    color: var(--rv-gray);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(160deg, var(--rv-navy-dark) 0%, var(--rv-navy) 60%, var(--rv-navy-light) 100%);
    color: var(--rv-white);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.15;
}

.cta-gradient {
    background: linear-gradient(135deg, var(--rv-green), var(--rv-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text > p {
    font-size: 1.05rem;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.cta-trust-item i {
    color: var(--rv-green-light);
    font-size: 0.85rem;
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-image {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text > p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .problem-image img {
        height: 350px;
    }
    
    .features-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-card--hero {
        grid-column: 1 / -1;
    }
    
    .feature-hero-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
    }
    
    .verified-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .verified-content > p {
        margin: 0 auto 2rem;
    }
    
    .verify-steps {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-text > p {
        margin: 0 auto 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-trust {
        justify-content: center;
    }
    
    .cta-visual {
        order: -1;
    }
    
    .cta-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 80px;
        min-height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-items {
        gap: 1.5rem;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .feature-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .feature-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-hero-text .feature-list {
        align-items: center;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-line {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-line-fill {
        transform-origin: top;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .shield-graphic {
        width: 240px;
        height: 240px;
    }
    
    .shield-outer {
        width: 160px;
        height: 160px;
    }
    
    .shield-middle {
        width: 110px;
        height: 110px;
    }
    
    .shield-inner {
        width: 70px;
        height: 70px;
    }
    
    .shield-inner i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-items {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .trust-item {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .problem-image img {
        height: 250px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}