.btn i {
    margin-right: 8px;
}

.btn-outline {
  background-color: white;
  border: 2px solid green;
}

.btn-outline:hover {
    background: var(--gray-100);
    color: green;
}

/* ----- Animated Counter ----- */
.counter-strip {
    background: linear-gradient(135deg, #0f2b0c 0%, #1a3a16 50%, #2d5a27 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.counter-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(232, 176, 49, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    animation: counterPulse 8s ease-in-out infinite;
}

@keyframes counterPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-2%, 2%) scale(1.05);
    }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: white;
    padding: 24px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.counter-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, #e8b031 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.counter-icon-mini {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.7;
}

/* ----- How It Works Process Timeline ----- */
.process-section {
    padding: 80px 0;
    background: var(--gray-50, #f8f9fa);
    position: relative;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    position: relative;
    margin-top: 48px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color, #2d5a27), var(--secondary-color, #e8b031), var(--primary-color, #2d5a27));
    border-radius: 10px;
    z-index: 0;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    flex: 1 1 200px;
    max-width: 280px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.process-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-color, #2d5a27);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color, #2d5a27);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.12);
}

.process-step:hover .process-circle {
    background: var(--primary-color, #2d5a27);
    color: white;
    transform: scale(1.1);
    border-color: var(--secondary-color, #e8b031);
    box-shadow: 0 16px 36px rgba(45, 90, 39, 0.25);
}

.process-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--secondary-color, #e8b031);
    color: #1a3a16;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-800, #343a40);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600, #6c757d);
    line-height: 1.6;
}

.comparison-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200, #e9ecef);
}

.comparison-table-custom {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-custom thead th {
    background: var(--primary-dark, #1a3a16);
    color: white;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    letter-spacing: 0.02em;
}

.comparison-table-custom thead th:first-child {
    background: #0f2b0c;
}

.comparison-table-custom thead th .popular-badge {
    display: inline-block;
    background: var(--secondary-color, #e8b031);
    color: #1a3a16;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.comparison-table-custom tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100, #f1f3f5);
    font-size: 0.93rem;
    color: var(--gray-700, #495057);
}

.comparison-table-custom tbody tr {
    transition: background 0.2s ease;
}

.comparison-table-custom tbody tr:hover {
    background: var(--accent-bg, #f9fbf8);
}

.comparison-table-custom .check-col {
    color: #2d5a27;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table-custom .dash-col {
    color: var(--gray-500, #adb5bd);
}

.comparison-wrapper {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.comparison-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.comparison-table-custom {
    min-width: 600px;
}

/* ----- Integration Marquee ----- */
.integration-marquee-section {
    padding: 60px 0;
    overflow: hidden;
    background: white;
}

.marquee-track {
    display: flex;
    gap: 36px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

.integration-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50, #f8f9fa);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    border: 1px solid var(--gray-200, #e9ecef);
    transition: all 0.3s ease;
}

.integration-pill:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color, #2d5a27);
}

.integration-pill i {
    font-size: 1.4rem;
}

/* ----- Floating Trust Pulse ----- */
.trust-pulse-section {
    padding: 70px 0;
    background: var(--accent-bg, #f9fbf8);
    position: relative;
}

.trust-pulse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.trust-pulse-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--gray-200, #e9ecef);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.trust-pulse-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: var(--primary-light, #e8f5e4);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.trust-pulse-card:hover::after {
    opacity: 1;
    width: 120px;
    height: 120px;
    top: -40px;
    right: -40px;
}

.trust-pulse-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-pulse-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.trust-pulse-card h4 {
    position: relative;
    z-index: 1;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-pulse-card p {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: var(--gray-600, #6c757d);
}

/* ----- Responsive Fine-Tuning ----- */
@media (max-width: 768px) {
    .counter-number {
        font-size: 2.2rem;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-step {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .comparison-table-custom thead th,
    .comparison-table-custom tbody td {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .integration-pill {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   ENHANCED TIMELINE SECTION CSS
   ============================================ */
.timeline-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fafcf9 0%, #ffffff 50%, #f9fbf8 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(45, 90, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 176, 49, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-header .timeline-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.08), rgba(232, 176, 49, 0.12));
    color: #2d5a27;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.timeline-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #2d5a27;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.timeline-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 550px;
    margin: 0 auto;
}

/* Main timeline container */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The central vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            transparent 0%,
            #2d5a27 5%,
            #2d5a27 20%,
            #e8b031 50%,
            #2d5a27 80%,
            transparent 100%);
    border-radius: 10px;
    transform: translateX(-50%);
}

/* Glowing dots on the timeline */
.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 7px;
    background: transparent;
    transform: translateX(-50%);
    box-shadow:
        0 15% 0 0 rgba(45, 90, 39, 0.3),
        0 35% 0 0 rgba(232, 176, 49, 0.4),
        0 55% 0 0 rgba(45, 90, 39, 0.3),
        0 75% 0 0 rgba(232, 176, 49, 0.4);
    border-radius: 50%;
    animation: timelineGlow 3s ease-in-out infinite;
}

@keyframes timelineGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Individual timeline items */
.timeline-item {
    position: relative;
    margin-bottom: 70px;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

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

/* Left side items */
.timeline-item.left {
    justify-content: flex-start;
    padding-right: calc(50% + 50px);
}

/* Right side items */
.timeline-item.right {
    justify-content: flex-end;
    padding-left: calc(50% + 50px);
}

/* The connector dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(45, 90, 39, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    color: #2d5a27;
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 0 6px white, 0 0 0 14px rgba(232, 176, 49, 0.3);
    transform: translate(-50%, -50%) scale(1.2);
    background: #2d5a27;
    color: white;
}

/* The content cards */
.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 420px;
}

.timeline-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

/* Arrow pointing to the timeline */
.timeline-item.left .timeline-card::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 32px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-item.right .timeline-card::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 32px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Card step number badge */
.timeline-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5e4, #f0f7ee);
    color: #2d5a27;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.timeline-step-badge .step-icon {
    font-size: 1rem;
}

/* Card icon */
.timeline-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0f7ee, #e8f5e4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #2d5a27;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-card-icon {
    background: linear-gradient(135deg, #2d5a27, #1a3a16);
    color: #e8b031;
    transform: rotate(-5deg) scale(1.05);
}

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.timeline-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Feature mini-list inside cards */
.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s ease;
}

.timeline-feature-tag i {
    color: #2d5a27;
    font-size: 0.7rem;
}

.timeline-feature-tag:hover {
    background: #e8f5e4;
    color: #2d5a27;
}

/* Estimated time badge */
.time-estimate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #e8b031;
    font-weight: 600;
    margin-top: 12px;
}

.time-estimate i {
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 20px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .timeline-card {
        max-width: 100%;
    }

    .timeline-item.left .timeline-card::after,
    .timeline-item.right .timeline-card::after {
        left: -8px;
        right: auto;
    }

    .timeline-item.left .timeline-card::after {
        border-right: none;
        border-top: none;
        border-left: 1px solid rgba(0, 0, 0, 0.04);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .timeline-item.right .timeline-card::after {
        border-left: 1px solid rgba(0, 0, 0, 0.04);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .timeline-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    #pricing .row {
        gap: 1rem !important;
    }
}

@media (max-width: 900px) {
    #pricing .col-4 {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }

    #pricing .row {
        flex-direction: column;
        align-items: center;
    }
}

.timeline-card-icon.share-icon {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.timeline-card:hover .timeline-card-icon.share-icon {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: #ffffff;
}

.share-preview {
    display: flex;
    gap: 8px;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 14px;
    border-radius: 12px;
    margin-top: 12px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #495057;
    border: 1px dashed #dee2e6;
}

.share-preview i {
    color: #2d5a27;
    font-size: 0.9rem;
}

.qr-mini {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    font-size: 1.5rem;
}

/* ============================================
   ABOUT SECTION CSS
   ============================================ */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(175deg, #ffffff 0%, #f9fbf8 40%, #ffffff 100%);
}

/* Decorative background elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 90, 39, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 176, 49, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left side - Story text */
.about-content {
    position: relative;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.08), rgba(232, 176, 49, 0.1));
    color: #2d5a27;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-label i {
    font-size: 0.9rem;
    color: #e8b031;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 .highlight {
    position: relative;
    color: #2d5a27;
    z-index: 1;
}

.about-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(232, 176, 49, 0.35);
    z-index: -1;
    border-radius: 4px;
}

.about-content .tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.5;
    border-left: 4px solid #e8b031;
    padding-left: 16px;
}

.about-content .description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .description strong {
    color: #2d5a27;
    font-weight: 600;
}

/* Founder/Team mention */
.founder-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.founder-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2d5a27, #1a3a16);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.2);
}

.founder-info h4 {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.founder-info p {
    font-size: 0.82rem;
    color: #6c757d;
    margin: 0;
}

.founder-info .built-with {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.78rem;
    color: #e8b031;
    font-weight: 600;
}

/* Stats badges */
.about-stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.about-stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-stat-badge i {
    color: #2d5a27;
    font-size: 1rem;
}

/* Right side - Visual card stack */
.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 480px;
}

.about-main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    z-index: 3;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-main-card .platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #1a3a16);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 12px 28px rgba(45, 90, 39, 0.3);
}

.about-main-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about-main-card .version-badge {
    display: inline-block;
    background: #e8f5e4;
    color: #2d5a27;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-main-card .feature-list-visual {
    list-style: none;
    text-align: left;
    margin-top: 16px;
}

.about-main-card .feature-list-visual li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #495057;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-main-card .feature-list-visual li i {
    color: #2d5a27;
    font-size: 0.85rem;
}

/* Floating cards behind */
.about-card-behind {
    position: absolute;
    background: white;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.about-card-behind.behind-1 {
    width: 85%;
    height: 60%;
    top: 10px;
    right: -20px;
    transform: rotate(5deg);
    background: linear-gradient(135deg, #f9fbf8, #f0f7ee);
}

.about-card-behind.behind-2 {
    width: 75%;
    height: 50%;
    bottom: 20px;
    left: -15px;
    transform: rotate(-3deg);
    background: linear-gradient(135deg, #fff8e1, #ffe082);
    opacity: 0.7;
}

/* Decorative dots */
.about-dots {
    position: absolute;
    top: -20px;
    right: -20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    z-index: 4;
}

.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8b031;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .about-card-stack {
        height: 380px;
        max-width: 100%;
    }

    .about-card-behind {
        display: none;
    }

    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-main-card {
        padding: 24px 18px;
    }

    .about-stats {
        flex-direction: column;
    }

    .founder-note {
        flex-direction: column;
        text-align: center;
    }
}
