/* ============================================================
   FlorianBD — Most Tech-Driven Plant Marketplace
   Imports the canonical trust-page stylesheet so every shared
   section (top nav, sidebar, hero, quote, knowledge, verified,
   guarantee, eco, support, faq, voices, crosslinks, CTA,
   footer) renders identically to the other trust pages.
============================================================ */
@import url("../why-florianbd-is-the-most-trusted-online-nursery-in-bangladesh/style.css");

/* ========================================
   PERFORMANCE METRICS SECTION
======================================== */
.metrics-section {
    padding: 80px 24px;
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.metrics-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.me-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
}
.me-orb.m1 { width: 500px; height: 500px; background: var(--primary-green); top: -150px; right: -120px; }
.me-orb.m2 { width: 400px; height: 400px; background: var(--primary-light); bottom: -120px; left: -80px; }
.me-grid-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0, 166, 81, 0.04) 1px, transparent 1px);
    background-size: 28px 28px; opacity: 0.4;
}
.metrics-container {
    max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.metrics-header { text-align: center; margin-bottom: 50px; }
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.metrics-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.metrics-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
    background: white;
}
.mc-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary-green);
    margin: 0 auto 18px;
    transition: all 0.4s ease;
}
.metrics-card:hover .mc-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white; transform: scale(1.08);
}
.mc-info { margin-bottom: 12px; }
.mc-number {
    font-size: 2.8rem; font-weight: 900;
    color: var(--secondary-dark); line-height: 1;
    letter-spacing: -1px;
}
.mc-suffix {
    font-size: 1.6rem; font-weight: 700;
    color: var(--primary-green); margin-left: 2px;
}
.mc-label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.5px; margin-top: 6px;
}
.mc-desc {
    font-size: 0.85rem; color: var(--text-muted);
    line-height: 1.7; margin: 0;
}
@media (max-width: 768px) {
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .metrics-card { padding: 24px 18px; }
    .mc-number { font-size: 2.2rem; }
    .mc-suffix { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .metrics-grid { grid-template-columns: 1fr; }
}

/* ========================================
   ENGINEERING PHILOSOPHY SECTION
======================================== */
.engineering-section {
    padding: 80px 24px;
    position: relative;
    background: var(--bg-main);
    overflow: hidden;
}
.engineering-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.en-orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.1;
}
.en-orb.e1 { width: 550px; height: 550px; background: var(--primary-green); top: -180px; left: -120px; }
.en-orb.e2 { width: 350px; height: 350px; background: var(--accent-gold); bottom: -80px; right: -80px; }
.engineering-container {
    max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.engineering-header { text-align: center; margin-bottom: 50px; }
.engineering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.engineering-card {
    display: flex;
    gap: 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.engineering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.10);
    background: white;
}
.ec-icon-wrap {
    position: relative;
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.ec-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary-green);
    position: relative; z-index: 1;
    transition: all 0.4s ease;
}
.engineering-card:hover .ec-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white;
}
.ec-ring {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(0, 166, 81, 0.1);
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.4s ease;
}
.engineering-card:hover .ec-ring {
    opacity: 1; transform: scale(1);
}
.ec-content { flex: 1; min-width: 0; }
.ec-num {
    display: inline-block;
    font-size: 0.7rem; font-weight: 800;
    color: var(--primary-green);
    background: rgba(0, 166, 81, 0.08);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.ec-content h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}
.ec-content p {
    font-size: 0.85rem; color: var(--text-muted);
    line-height: 1.7; margin: 0;
}
@media (max-width: 768px) {
    .engineering-grid { grid-template-columns: 1fr; }
    .engineering-card { padding: 22px 24px; }
    .ec-icon { width: 48px; height: 48px; font-size: 1.1rem; }
    .ec-icon-wrap { width: 48px; height: 48px; }
}

/* ========================================
   TECHNOLOGY ROADMAP SECTION
======================================== */
.roadmap-section {
    padding: 80px 24px;
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.roadmap-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.ro-orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.1;
}
.ro-orb.r1 { width: 600px; height: 600px; background: var(--primary-green); top: -200px; left: 50%; transform: translateX(-50%); }
.ro-orb.r2 { width: 300px; height: 300px; background: var(--accent-gold); bottom: -100px; left: -60px; }
.ro-orb.r3 { width: 250px; height: 250px; background: var(--primary-light); bottom: 40%; right: -80px; }
.ro-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0, 166, 81, 0.03) 1px, transparent 1px);
    background-size: 32px 32px; opacity: 0.5;
}
.roadmap-container {
    max-width: 850px; margin: 0 auto; position: relative; z-index: 1;
}
.roadmap-header { text-align: center; margin-bottom: 50px; }
.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.roadmap-item {
    position: relative;
}
.ri-card {
    display: flex;
    gap: 22px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ri-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 35px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.10);
    background: white;
}
.ri-badge {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.ri-badge.current {
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
}
.ri-badge.next {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}
.ri-badge.future {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}
.ri-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.ri-card:hover .ri-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white; transform: scale(1.06);
}
.ri-content { flex: 1; min-width: 0; }
.ri-quarter {
    font-size: 0.75rem; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}
.ri-content h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}
.ri-content p {
    font-size: 0.85rem; color: var(--text-muted);
    line-height: 1.7; margin: 0;
}
@media (max-width: 768px) {
    .ri-card { padding: 22px 24px; flex-direction: column; }
    .ri-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .ri-card:hover { transform: translateY(-4px); }
}
