/* ===================================
   BETAPLOT - Custom Styles
   =================================== */

/* Root Variables */
:root {
    --color-primary: #0B3D2E;
    --color-gold: #D5A84F;
    --color-fintech-blue: #2A4BFF;
    --color-dark: #0A1A2F;
    --color-light-bg: #F4F6F8;
    --color-white: #FFFFFF;
    --color-border: rgba(255, 255, 255, 0.2);
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: rgba(10, 26, 47, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: transparent !important;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brand-logo {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-text {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.btn-primary {
    background-color: #173d2e;
    border-color: #173d2e;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background-color: #348665;
    border-color: #348665;
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.btn-gold {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-primary);
    font-weight: 600;
}

.btn-gold:hover {
    background-color: #c99a43;
    border-color: #c99a43;
    color: var(--color-primary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 85vh;
    
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}


.hero-section-1 {
    min-height: 50vh;
    
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 61, 46, 0.7) 0%, rgba(11, 61, 46, 0.5) 50%, rgba(11, 61, 46, 0.7) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   SEARCH MODULE
   =================================== */
.search-module-wrapper {
    position: relative;
    margin-top: -6rem;
    z-index: 20;
    margin-bottom: 4rem;
}

.search-module {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 2rem;
}

.search-module .form-label {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.search-module .form-select {
    border: 1px solid #dee2e6;
    padding: 0.625rem 0.875rem;
}

.search-module .text-primary {
    color: var(--color-primary) !important;
}

/* ===================================
   PROPERTY CARDS
   =================================== */
.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-image .badge {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
}

.badge-status {
    top: 1rem;
    right: 1rem;
}

.badge-usage {
    top: 1rem;
    left: 1rem;
}

.badge-verified {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-escrow {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-residential {
    background-color: #e9d5ff;
    color: #6b21a8;
}

.badge-commercial {
    background-color: #fed7aa;
    color: #9a3412;
}

.badge-agricultural {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-mixed {
    background-color: #dbeafe;
    color: #1e40af;
}

.property-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-location {
    color: rgba(10, 26, 47, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-details {
    color: rgba(10, 26, 47, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.property-price {
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.price-main {
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 700;
}

.price-label {
    color: rgba(10, 26, 47, 0.7);
    font-size: 0.875rem;
}

.price-full {
    color: rgba(10, 26, 47, 0.6);
    font-size: 0.875rem;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.bg-blue-light { background-color: #dbeafe; }
.text-blue { color: #1e40af; }
.bg-green-light { background-color: #d1fae5; }
.text-green { color: #065f46; }
.bg-orange-light { background-color: #fed7aa; }
.text-orange { color: #9a3412; }
.bg-purple-light { background-color: #e9d5ff; }
.text-purple { color: #6b21a8; }

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(10, 26, 47, 0.7);
    font-size: 0.9rem;
}

/* ===================================
   TRUST FEATURES
   =================================== */
.trust-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-feature:hover {
    background-color: var(--color-light-bg);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(11, 61, 46, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.trust-content h3 {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: rgba(10, 26, 47, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===================================
   MARKET OPPORTUNITY SECTION
   =================================== */
.market-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.8);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(213, 168, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    color: var(--color-gold);
    font-size: 2rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.why-now-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.why-now-list {
    list-style: none;
    padding: 0;
}

.why-now-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
    padding: 0.25rem;
}

.solution-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.solution-list {
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
}

.solution-list li {
    margin-bottom: 0.5rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 3rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    color: rgba(213, 168, 79, 0.2);
    font-size: 3rem;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.testimonial-text {
    color: var(--color-dark);
    font-size: 1.25rem;
    font-style: italic;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(10, 26, 47, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.investment-amount {
    color: var(--color-gold);
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(11, 61, 46, 0.2);
    border: none;
    margin: 0 4px;
    padding: 0;
}

.carousel-indicators button.active {
    background-color: var(--color-primary);
}

/* ===================================
   FAQ SECTION
   =================================== */
.accordion-item {
    background-color: var(--color-light-bg);
    border-radius: 12px;
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--color-light-bg);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-light-bg);
    color: var(--color-primary);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    color: rgba(10, 26, 47, 0.7);
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 50%, var(--color-primary) 100%);
    color: white;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.cta-stat i {
    color: var(--color-gold);
    font-size: 2rem;
}

.cta-stat .stat-value {
    font-size: 2rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo-footer {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-footer span {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-text-footer {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-contact i {
    width: 16px;
    margin-top: 2px;
}

.newsletter .input-group {
    margin-top: 0.5rem;
}

.newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    color: white;
    box-shadow: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-module {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .search-module-wrapper {
        margin-top: -4rem;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .carousel-controls {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-primary-custom {
    color: var(--color-primary) !important;
}

.bg-primary-custom {
    background-color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}



/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a2818 100%);
    padding: 140px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='0.05'%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");
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Intro Section */
.intro-section {
    background-color: white;
}

.intro-content {
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: rgba(10, 26, 47, 0.8);
    margin-bottom: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--color-light-bg);
}

.mv-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-title {
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mv-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(10, 26, 47, 0.8);
    margin-bottom: 1rem;
}

.mv-text:last-child {
    margin-bottom: 0;
}

/* Problem Section */
.problem-section {
    background-color: white;
}

.problem-card {
    background: var(--color-light-bg);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    border-color: #f7ce27;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7ce27, #f7ce27);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: white;
}

.problem-title {
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.problem-text {
    color: rgba(10, 26, 47, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
    background-color: var(--color-light-bg);
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.solution-card:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: white;
}

.solution-title {
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.solution-text {
    color: rgba(10, 26, 47, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.solution-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Values Section */
.values-section {
    background-color: white;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(213, 168, 79, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #c9963d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-text {
    color: rgba(10, 26, 47, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a2818 100%);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Section */
.why-section {
    background-color: var(--color-light-bg);
}

.why-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.why-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.why-icon i {
    font-size: 2.5rem;
    color: white;
}

.why-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(10, 26, 47, 0.8);
    margin-bottom: 1.5rem;
}

.why-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    margin: 2rem auto;
    border-radius: 2px;
}

.why-quote {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a2818 100%);
    color: white;
    padding: 5rem 0;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-section .btn-outline-primary:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    .why-card {
        padding: 3rem 2rem;
    }
    
    .why-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon i {
        font-size: 1.5rem;
    }
    
    .mv-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .why-title {
        font-size: 1.75rem;
    }
    
    .why-text {
        font-size: 1.125rem;
    }
    
    .why-quote {
        font-size: 1.125rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mv-card,
.problem-card,
.solution-card,
.value-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.mv-card:nth-child(1) { animation-delay: 0.1s; }
.mv-card:nth-child(2) { animation-delay: 0.2s; }

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }
.problem-card:nth-child(5) { animation-delay: 0.5s; }
.problem-card:nth-child(6) { animation-delay: 0.6s; }

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }
.solution-card:nth-child(5) { animation-delay: 0.5s; }
.solution-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }


/* ===================================
   FRACTIONAL OWNERSHIP PAGE STYLES
   =================================== */

/* Hero Section */
.fractional-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a2818 100%);
    padding: 140px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.fractional-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='0.05'%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");
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.fraction-example {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.plot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.grid-item {
    aspect-ratio: 1;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grid-item.owned {
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
    animation: pulse 2s infinite;
}

.grid-item.available {
    background: #e5e7eb;
    border: 2px dashed #9ca3af;
}

.grid-item:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.fraction-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark);
    font-weight: 500;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.legend-color.owned {
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
}

.legend-color.available {
    background: #e5e7eb;
    border: 2px dashed #9ca3af;
}

/* Fractional Unit Section */
.fractional-unit-section {
    background-color: white;
}

.unit-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.unit-feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(11, 61, 46, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: rgba(10, 26, 47, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Ownership Section */
.ownership-section {
    background-color: var(--color-light-bg);
}

.ownership-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-gold);
}

.ownership-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.ownership-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(11, 61, 46, 0.08);
}

.ownership-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold), #c9963d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ownership-icon i {
    font-size: 1.5rem;
    color: white;
}

.ownership-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ownership-text {
    color: rgba(10, 26, 47, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Timeline */
.process-section {
    background-color: white;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-gold));
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    font-size: 1.25rem;
    color: white;
}

.step-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: rgba(10, 26, 47, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--color-light-bg);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Protection Section */
.protection-section {
    background-color: var(--color-light-bg);
}

.protection-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.protection-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.protection-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.protection-icon i {
    font-size: 1.75rem;
    color: white;
}

.protection-title {
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.protection-text {
    color: rgba(10, 26, 47, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Difference Section */
.difference-section {
    background-color: white;
}

.difference-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.difference-header {
    text-align: center;
    margin-bottom: 3rem;
}

.difference-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.difference-subtitle {
    font-size: 1.25rem;
    color: rgba(10, 26, 47, 0.8);
    line-height: 1.8;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.comparison-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-header {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.comparison-header.others {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.comparison-header.betaplot {
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
    color: white;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.comparison-item.negative {
    background: #fee2e2;
}

.comparison-item.negative i {
    color: #dc2626;
    font-size: 1.25rem;
}

.comparison-item.positive {
    background: #d1fae5;
}

.comparison-item.positive i {
    color: #059669;
    font-size: 1.25rem;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.comparison-divider span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #c9963d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

/* Example Section */
.example-section {
    background-color: var(--color-light-bg);
}

.example-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.example-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.example-header h3 {
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.example-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.example-breakdown {
    background: var(--color-light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: rgba(10, 26, 47, 0.7);
}

.breakdown-value {
    font-weight: 600;
    color: var(--color-primary);
}

.example-scenarios h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.scenario {
    background: var(--color-light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.scenario:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.scenario-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.scenario-badge.starter {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.scenario-badge.growth {
    background: linear-gradient(135deg, var(--color-gold), #c9963d);
}

.scenario-badge.full {
    background: linear-gradient(135deg, var(--color-primary), #0a2818);
}

.scenario-title {
    font-weight: 600;
    color: var(--color-primary);
}

.scenario-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(10, 26, 47, 0.8);
}

.detail-item i {
    color: var(--color-gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a2818 100%);
    color: white;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-section .btn-outline-primary:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .fractional-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .plot-grid {
        gap: 0.75rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-divider {
        padding: 1rem 0;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .timeline-step {
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .fractional-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .fraction-example {
        padding: 1.5rem;
    }
    
    .plot-grid {
        gap: 0.5rem;
    }
    
    .legend-item {
        font-size: 0.875rem;
    }
    
    .difference-card {
        padding: 2rem 1.5rem;
    }
    
    .difference-title {
        font-size: 2rem;
    }
    
    .difference-subtitle {
        font-size: 1.125rem;
    }
    
    .example-card {
        padding: 1.5rem;
    }
    
    .scenario-details {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unit-feature-card,
.ownership-card,
.timeline-step,
.protection-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.unit-feature-card:nth-child(1) { animation-delay: 0.1s; }
.unit-feature-card:nth-child(2) { animation-delay: 0.2s; }
.unit-feature-card:nth-child(3) { animation-delay: 0.3s; }

.ownership-card:nth-child(1) { animation-delay: 0.1s; }
.ownership-card:nth-child(2) { animation-delay: 0.2s; }
.ownership-card:nth-child(3) { animation-delay: 0.3s; }
.ownership-card:nth-child(4) { animation-delay: 0.4s; }

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }
.timeline-step:nth-child(6) { animation-delay: 0.6s; }
.timeline-step:nth-child(7) { animation-delay: 0.7s; }

.protection-card:nth-child(1) { animation-delay: 0.1s; }
.protection-card:nth-child(2) { animation-delay: 0.2s; }
.protection-card:nth-child(3) { animation-delay: 0.3s; }
.protection-card:nth-child(4) { animation-delay: 0.4s; }
.protection-card:nth-child(5) { animation-delay: 0.5s; }
.protection-card:nth-child(6) { animation-delay: 0.6s; }
