/* ==========================================
   RESET & VARIABLES
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #2E7D32;
    --primary-rgb: 46, 125, 50;
    --accent: #8BC34A;
    --accent-rgb: 139, 195, 74;
    --light-green: #DFF5E1;
    --bg: #F8FFF8;
    --white: #FFFFFF;
    --dark: #202124;
    --dark-rgb: 32, 33, 36;
    --gray: #6B7280;
    --light-gray: #F3F4F6;

    /* Typography */
    --font-primary: 'Poppins', 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(46, 125, 50, 0.05), 0 2px 4px -1px rgba(46, 125, 50, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(46, 125, 50, 0.08), 0 4px 6px -2px rgba(46, 125, 50, 0.04);
    --shadow-lg: 0 24px 48px -10px rgba(46, 125, 50, 0.12), 0 8px 16px -8px rgba(46, 125, 50, 0.06);
    --card-shadow: 0 20px 40px rgba(32, 33, 36, 0.04);

    /* Radiuses */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.mr-2 {
    margin-right: 0.5rem;
}

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

.font-bold {
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background-color: #246427;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--light-green);
}

.btn-secondary:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(46, 125, 50, 0.05);
    border-bottom: 1px solid rgba(223, 245, 225, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo span span {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
    animation: logo-bounce 4s ease-in-out infinite alternate;
}

@keyframes logo-bounce {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--dark);
    border-radius: 2px;
}

/* Mobile Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
}

.mobile-nav-menu li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

/* Animations for staggered menu list items */
.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-overlay.active .mobile-nav-menu li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Hamburger animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg);
}

/* Blurred glowing background shapes */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 1;
}

.glow-1 {
    top: 5%;
    left: -5%;
    width: 400px;
    height: 400px;
    background-color: var(--light-green);
}

.glow-2 {
    bottom: 5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background-color: rgba(139, 195, 74, 0.4);
}

.glow-3 {
    top: 25%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--light-green);
}

.glow-4 {
    bottom: 10%;
    left: 20%;
    width: 450px;
    height: 450px;
    background-color: rgba(139, 195, 74, 0.3);
}

.glow-5 {
    top: 40%;
    left: 45%;
    width: 350px;
    height: 350px;
    background-color: var(--light-green);
    filter: blur(120px);
}

.floating-element {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.float-leaf-1 {
    top: 20%;
    left: 8%;
    animation: floating 6s ease-in-out infinite alternate;
}

.float-leaf-2 {
    bottom: 25%;
    left: 5%;
    animation: floating 8s ease-in-out infinite alternate-reverse;
}

@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(15deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-new-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
}

.stat-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(46, 125, 50, 0.15);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.organic-sphere {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--light-green) 0%, rgba(139, 195, 74, 0.2) 100%);
    border-radius: 41% 59% 45% 55% / 54% 45% 55% 46%;
    animation: morphing 10s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes morphing {
    0% {
        border-radius: 41% 59% 45% 55% / 54% 45% 55% 46%;
    }

    50% {
        border-radius: 56% 44% 60% 40% / 44% 52% 48% 56%;
    }

    100% {
        border-radius: 41% 59% 45% 55% / 54% 45% 55% 46%;
    }
}

/* App Mockup Rendering inside frame */
.phone-mockup-wrapper {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(32, 33, 36, 0.15));
    animation: mock-float 6s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes mock-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background-color: var(--dark);
    border-radius: 40px;
    padding: 10px;
    border: 4px solid #3c3d40;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background-color: var(--dark);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #FAFFFA;
    border-radius: 32px;
    overflow-y: auto;
    font-size: 11px;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    /* Hide scrollbar for layout purity */
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* Mockup UI Inner CSS styling */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 12px;
}

.app-location {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-icon {
    width: 12px;
    height: 12px;
}

.app-avatar-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

.app-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 16px;
    margin: 0 16px 16px;
    border-radius: var(--radius-md);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.app-hero h4 {
    font-size: 13px;
    font-weight: 700;
}

.app-hero p {
    font-size: 9px;
    opacity: 0.9;
}

.app-badge-price {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 3px 8px;
    border-radius: 20px;
    align-self: flex-start;
    margin-top: 8px;
}

.carbon-hero {
    background: linear-gradient(135deg, var(--dark), var(--primary)) !important;
    text-align: center;
    align-items: center;
    padding: 20px 16px !important;
}

.carbon-number {
    font-size: 26px;
    font-weight: 800;
    margin: 4px 0;
    color: var(--accent);
}

.app-categories {
    padding: 0 16px;
    margin-bottom: 16px;
}

.app-categories h5,
.app-featured-header h5 {
    font-weight: 700;
    font-size: 11px;
    color: var(--dark);
    margin-bottom: 8px;
}

.app-cat-grid {
    display: flex;
    gap: 8px;
}

.app-cat-card {
    background: var(--white);
    border: 1px solid rgba(46, 125, 50, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 60px;
    border-radius: var(--radius-sm);
    gap: 4px;
}

.app-cat-card.active {
    background: var(--light-green);
    border-color: var(--primary);
}

.app-cat-card i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.app-cat-card span {
    font-weight: 600;
    font-size: 9px;
}

.app-featured {
    padding: 0 16px 16px;
}

.app-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.app-featured-header a {
    font-size: 9px;
    color: var(--primary);
    text-decoration: none;
}

.app-product-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(46, 125, 50, 0.05);
}

.app-product-img-wrapper {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.app-product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-product-info {
    flex: 1;
}

.app-product-info h6 {
    font-size: 10px;
    font-weight: 700;
}

.app-rating {
    font-size: 8px;
    color: #f59e0b;
}

.app-add-btn {
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Floating widgets around mockup */
.floating-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: 0 20px 40px rgba(32, 33, 36, 0.06);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
}

.badge-1 {
    top: 25%;
    right: -20px;
    animation: badge-1-float 8s ease-in-out infinite alternate;
}

@keyframes badge-1-float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-10px, 15px);
    }
}

.badge-2 {
    bottom: 20%;
    left: -40px;
    animation: badge-2-float 7s ease-in-out infinite alternate;
}

@keyframes badge-2-float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(15px, -10px);
    }
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green {
    background-color: var(--light-green);
    color: var(--primary);
}

.icon-yellow {
    background-color: #fffbdf;
    color: #d97706;
}

.badge-text h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.badge-text p {
    font-size: 11px;
    color: var(--gray);
}

.floating-vegetable {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(46, 125, 50, 0.15));
}

.veg-avocado {
    bottom: 10%;
    right: -30px;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    100% {
        transform: rotate(360deg);
    }
}

.veg-avocado img {
    width: 65px;
    height: auto;
}

/* ==========================================
   3. TRUST SECTION
   ========================================== */
.trust {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(46, 125, 50, 0.06);
    border-bottom: 1px solid rgba(46, 125, 50, 0.06);
    position: relative;
    z-index: 10;
}

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

.trust-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-3px);
}

.trust-badge .badge-circle {
    width: 40px;
    height: 40px;
    background-color: var(--light-green);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge .badge-circle i {
    width: 20px;
    height: 20px;
}

.trust-badge span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* ==========================================
   4. FEATURES
   ========================================== */
.features {
    padding: 100px 0;
    background-color: var(--bg);
    position: relative;
}

.section-header {
    margin-bottom: 64px;
}

.section-tagline {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.1);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--light-green);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(5deg) scale(1.05);
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.feature-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-link i {
    transform: translateX(4px);
}

/* ==========================================
   5. HOW IT WORKS
   ========================================== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    margin-top: 80px;
    padding: 0 40px;
}

.timeline-line-svg {
    position: absolute;
    top: 36px;
    left: 10%;
    width: 80%;
    z-index: 1;
    pointer-events: none;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number-container {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-step:hover .step-number-container {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.step-num {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.step-icon-inner {
    color: var(--primary);
}

.step-icon-inner i {
    width: 28px;
    height: 28px;
}

.timeline-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 260px;
    margin: 0 auto;
}

/* ==========================================
   6. WHY CHOOSE US
   ========================================== */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.why-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.organic-frame-svg {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 1;
}

.why-main-image {
    width: 85%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.floating-card-metric {
    position: absolute;
    bottom: 24px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 125, 50, 0.08);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    z-index: 3;
    animation: mock-float 6s ease-in-out infinite alternate;
}

.metric-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.metric-lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
}

.why-intro {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.check-item {
    display: flex;
    gap: 16px;
}

.check-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-green);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle i {
    width: 18px;
    height: 18px;
}

.check-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.check-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* ==========================================
   7. APP SHOWCASE
   ========================================== */
.app-showcase {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.app-carousel-container {
    max-width: 480px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.phone-slider-frame-wrapper {
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 40px 80px rgba(32, 33, 36, 0.15));
}

.slider-phone-frame {
    width: 300px;
    height: 600px;
    background-color: var(--dark);
    border-radius: 44px;
    padding: 11px;
    border: 4px solid #3c3d40;
    position: relative;
    overflow: hidden;
}

.screens-carousel-track {
    display: flex;
    width: 500%;
    /* 5 screens total */
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-slide {
    width: 20%;
    height: 100%;
}

.slide-screen-content {
    width: 100%;
    height: 100%;
    background-color: #FAFFFA;
    border-radius: 34px;
    overflow-y: auto;
    font-size: 11px;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
}

.slide-screen-content::-webkit-scrollbar {
    display: none;
}

/* Custom interiors for slides */
.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 12px;
}

.slide-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
    font-size: 12px;
    color: var(--primary);
}

.slide-icon {
    width: 14px;
    height: 14px;
}

.slide-logo i {
    width: 12px;
    height: 12px;
}

.slide-search {
    background: var(--white);
    border: 1px solid rgba(46, 125, 50, 0.08);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    margin: 0 16px 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-search i {
    width: 12px;
    height: 12px;
}

.slide-banner {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    max-height: 80px;
    margin: 0 16px 16px;
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 12px;
    display: flex;
    align-items: center;
}

.banner-text span {
    font-weight: 700;
    font-size: 8px;
    display: block;
}

.banner-text h5 {
    font-size: 12px;
    font-weight: 700;
}

.slide-subtitle {
    font-weight: 700;
    padding: 0 16px 8px;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px 16px;
}

.slide-grid-item {
    background: var(--white);
    border: 1px solid rgba(46, 125, 50, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
}

.slide-grid-item .item-img {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.slide-grid-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.slide-grid-item h6 {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
}

.slide-grid-item span {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
}

/* Slide 2 Categories */
.slide-categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.category-strip {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(46, 125, 50, 0.05);
}

.category-strip i {
    width: 16px;
    height: 16px;
}

.strip-icon-1 {
    color: var(--primary);
}

.strip-icon-2 {
    color: #ec4899;
}

.strip-icon-3 {
    color: #f59e0b;
}

.strip-icon-4 {
    color: #3b82f6;
}

.category-strip div {
    flex: 1;
}

.category-strip h6 {
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 1px;
}

.category-strip p {
    font-size: 9px;
    color: var(--gray);
}

.strip-arrow {
    width: 12px !important;
    height: 12px !important;
    color: #d1d5db;
}

/* Slide 3 details */
.slide-back-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 12px;
    font-weight: 700;
}

.slide-back-header i {
    width: 14px;
    height: 14px;
}

.details-main-img {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.details-main-img img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.details-meta {
    padding: 16px;
    background: var(--white);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.details-badge {
    background-color: var(--light-green);
    color: var(--primary);
    font-size: 8px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.details-meta h4 {
    font-size: 14px;
    font-weight: 700;
}

.details-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.price-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.stock-status {
    color: #10b981;
    font-weight: 600;
    font-size: 9px;
}

.details-p {
    color: var(--gray);
    font-size: 9.5px;
    margin-bottom: 16px;
    max-width: 100%;
}

.slide-add-cart-btn {
    padding: 8px 12px !important;
    font-size: 11px !important;
    border-radius: var(--radius-sm) !important;
    width: 100%;
}

/* Slide 4 cart */
.cart-items-wrapper {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.cart-product-strip {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(46, 125, 50, 0.05);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-product-strip img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.strip-info {
    flex: 1;
}

.strip-info h6 {
    font-weight: 700;
}

.strip-info span {
    color: var(--primary);
    font-weight: 600;
}

.strip-counter {
    display: flex;
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: 4px;
}

.strip-counter span {
    padding: 3px 6px;
    font-weight: 700;
}

.strip-counter span:nth-child(2) {
    background: var(--light-green);
    border-left: 1px solid rgba(46, 125, 50, 0.1);
    border-right: 1px solid rgba(46, 125, 50, 0.1);
}

.delivery-guarantee-badge {
    background: var(--light-green);
    color: var(--primary);
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 9px;
    margin: 0 16px;
    border-radius: 4px;
}

.cart-checkout-footer {
    padding: 16px;
    border-top: 1px dashed rgba(46, 125, 50, 0.1);
    background: var(--white);
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 10px;
}

.checkout-btn {
    width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    border-radius: var(--radius-sm);
}

/* Slide 5 profile */
.profile-header-decor {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 24px 16px 20px;
    text-align: center;
    color: var(--white);
}

.prof-avatar-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin: 0 auto 8px;
}

.prof-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header-decor h5 {
    font-size: 13px;
    font-weight: 700;
}

.profile-header-decor p {
    font-size: 9px;
    opacity: 0.9;
}

.sustainability-meter {
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin: -10px 16px 16px;
    box-shadow: 0 4px 15px rgba(32, 33, 36, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.05);
}

.meter-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 8.5px;
    margin-bottom: 6px;
}

.meter-bar-container {
    background: var(--light-gray);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.meter-bar-fill {
    background: var(--primary);
    height: 100%;
}

.meter-note {
    color: var(--gray);
    font-size: 8px;
}

.profile-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 20px;
}

.prof-link-item {
    background: var(--white);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(46, 125, 50, 0.04);
}

.prof-link-item i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.prof-link-item span {
    flex: 1;
    font-weight: 600;
    font-size: 10px;
}

.arrow-fwd {
    color: #d1d5db;
    width: 10px !important;
    height: 10px !important;
}

/* Carousel Navigation Controls */
.carousel-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.carousel-control:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--light-green);
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: 10px;
}

.active-screen-name {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================
   8. BENEFITS & CARDS
   ========================================== */
.benefits {
    padding: 100px 0;
    background-color: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.02);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.08);
}

.benefit-num {
    font-size: 72px;
    font-weight: 800;
    color: rgba(46, 125, 50, 0.05);
    position: absolute;
    top: 12px;
    right: 24px;
    line-height: 1;
    transition: var(--transition);
}

.benefit-card:hover .benefit-num {
    color: rgba(46, 125, 50, 0.09);
    transform: scale(1.1);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.benefit-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ==========================================
   9. SUBSCRIPTION PLANS
   ========================================== */
.pricing {
    padding: 100px 0;
    background-color: var(--white);
}

.billing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-lbl {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

.toggle-lbl.active {
    color: var(--primary);
}

.badge-saving {
    background-color: #ffd60a;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 4px;
}

.billing-toggle-btn {
    width: 60px;
    height: 32px;
    border-radius: 30px;
    background-color: var(--light-green);
    border: 2px solid rgba(46, 125, 50, 0.1);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-circle {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--primary);
    transition: var(--transition);
}

.billing-toggle-btn.active {
    background-color: var(--primary);
}

.billing-toggle-btn.active .toggle-circle {
    left: 30px;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-gray);
    padding: 48px 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(46, 125, 50, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-card {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.highlight-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.badge-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    border: 3px solid var(--white);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.card-header p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
}

.pricing-value-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price-symbol {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-right: 4px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    margin-left: 4px;
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
}

.pricing-features-list li i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-features-list li.disabled {
    opacity: 0.45;
}

.pricing-features-list li.disabled i {
    color: var(--gray);
}

.pricing-card .card-footer .btn {
    width: 100%;
}

/* ==========================================
   10. TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 64px auto 0;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.testimonial-track {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    width: 33.3333%;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 48px;
    border: 1px solid rgba(46, 125, 50, 0.03);
    margin: 0 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.user-avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.user-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.user-info p {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-header .stars {
    margin-left: auto;
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.nav-control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(46, 125, 50, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-control-btn.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* ==========================================
   11. FAQ ACCORDION
   ========================================== */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 720px;
    margin: 64px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-md);
    background-color: var(--bg);
    border: 1px solid rgba(46, 125, 50, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(46, 125, 50, 0.15);
}

.faq-item.active {
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--primary);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================
   12. DOWNLOAD APP
   ========================================== */
.download-app {
    padding: 100px 0;
    background-color: var(--bg);
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), #246427);
    color: var(--white);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tag-white {
    color: rgba(255, 255, 255, 0.8) !important;
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.download-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.download-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 480px;
}

.store-badge-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-2px);
    background-color: var(--light-green);
}

.qr-wrapper {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
    gap: 16px;
    display: flex;
    align-items: center;
}

.qr-code {
    border-radius: var(--radius-sm);
    background-color: var(--white);
    padding: 4px;
}

.qr-text h6 {
    font-size: 15px;
    font-weight: 700;
}

.qr-text p {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 4px;
    max-width: 220px;
}

.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.download-phone-wrapper {
    animation: mock-float 6s ease-in-out infinite alternate;
}

.download-phone {
    width: 260px !important;
    height: 520px !important;
}

.app-benefits-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(46, 125, 50, 0.05);
}

.item-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-circle i {
    width: 12px;
    height: 12px;
}

.benefit-item h6 {
    font-weight: 700;
}

.benefit-item p {
    font-size: 8px;
    color: var(--gray);
}

/* ==========================================
   13. FOOTER
   ========================================== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo span span {
    color: var(--accent);
}

.footer-brand-p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--white);
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-icons a i {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    padding: 12px 16px;
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 16px;
    border-top-right-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent);
}

.newsletter-form button i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================
   UNIQUE FEATURE 1: INTERACTIVE CRATE BUILDER
   ========================================== */
.crate-builder {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.crate-builder-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    margin-top: 64px;
    align-items: start;
}

.builder-products-panel {
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(46, 125, 50, 0.05);
}

.panel-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

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

.builder-product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.builder-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.07);
    border-color: rgba(46, 125, 50, 0.1);
}

.card-image-box {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    background-color: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.builder-product-card:hover .card-image-box img {
    transform: scale(1.08);
}

.card-info-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.card-spec {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.price-pill {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--light-green);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

.product-qty-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 16px;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(46, 125, 50, 0.15);
    background-color: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.qty-btn i {
    width: 14px;
    height: 14px;
}

.qty-display {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    min-width: 16px;
    text-align: center;
}

.builder-crate-panel {
    position: sticky;
    top: 120px;
}

.crate-visualizer-card {
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(46, 125, 50, 0.05);
    padding: 40px 32px;
    box-shadow: var(--card-shadow);
}

.sustainability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border: 1px solid rgba(46, 125, 50, 0.06);
}

.sustainability-badge i {
    width: 14px;
    height: 14px;
}

.crate-box-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

/* physical crate rendering container */
.crate-physical-container {
    width: 100%;
    height: 220px;
    background-color: #f7ede2;
    border-radius: var(--radius-md);
    position: relative;
    border: 4px solid var(--dark);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.06), var(--shadow-md);
    overflow: hidden;
    margin-bottom: 28px;
}

.crate-wood-border {
    position: absolute;
    background-color: #8c5b33;
    opacity: 0.15;
}

.crate-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    border-bottom: 2px solid var(--dark);
}

.crate-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    border-top: 2px solid var(--dark);
}

.crate-left {
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    border-right: 2px solid var(--dark);
}

.crate-right {
    top: 0;
    right: 0;
    width: 16px;
    height: 100%;
    border-left: 2px solid var(--dark);
}

.crate-items-dropzone {
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    scrollbar-width: none;
}

.crate-items-dropzone::-webkit-scrollbar {
    display: none;
}

.crate-empty-message {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin: auto;
    max-width: 200px;
}

/* items added animation */
.crate-pill {
    padding: 6px 14px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: bounce-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.crate-pill-qty {
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.2);
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}

.crate-builder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.crate-stat-bubble {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
}

.crate-stat-lbl {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.crate-stat-highlight {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.crate-progress-container {
    margin-bottom: 32px;
}

.crate-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.crate-progressbar-track {
    width: 100%;
    height: 10px;
    background-color: rgba(46, 125, 50, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.crate-progressbar-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.crate-subscribe-btn {
    width: 100%;
    margin-top: 10px;
}

.crate-subscribe-btn:disabled {
    background-color: #d1d5db;
    border-color: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================
   UNIQUE FEATURE 2: INTERACTIVE CARBON CALCULATOR
   ========================================== */
.offset-calculator {
    padding: 100px 0;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
}

.offset-calculator .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.calculator-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(46, 125, 50, 0.04);
    margin-top: 40px;
}

.slider-wrapper {
    margin-bottom: 48px;
}

.slider-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.slider-header-row label {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.family-badge {
    padding: 6px 14px;
    background-color: var(--light-green);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: rgba(46, 125, 50, 0.08);
    outline: none;
    margin-bottom: 12px;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background-color: var(--accent);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.slider-ticks span {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
}

.saving-milestones-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.milestone-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 125, 50, 0.03);
    transition: var(--transition);
}

.milestone-pill:hover {
    transform: translateX(6px);
    border-color: rgba(46, 125, 50, 0.1);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.milestone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--light-green);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.milestone-icon i {
    width: 22px;
    height: 22px;
}

.milestone-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.milestone-info p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* Pulsing Globe Side Panel */
.eco-globe-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(46, 125, 50, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.globe-container {
    width: 240px;
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(46, 125, 50, 0.2);
}

.ring-1 {
    width: 240px;
    height: 240px;
    animation: spin-slow 15s linear infinite;
}

.ring-2 {
    width: 190px;
    height: 190px;
    animation: spin-slow 10s linear infinite reverse;
}

.ring-3 {
    width: 140px;
    height: 140px;
    animation: spin-slow 6s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.globe-center {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    animation: mock-pulse 3s ease-in-out infinite;
}

@keyframes mock-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 15px 40px rgba(46, 125, 50, 0.4);
    }
}

.globe-icon {
    width: 44px;
    height: 44px;
}

.impact-equiv-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.impact-icon-bubbles {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 24px;
}

.equiv-bubble {
    text-align: center;
}

.equiv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--light-green);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.equiv-icon i {
    width: 24px;
    height: 24px;
}

.equiv-bubble span {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

.equiv-bubble p {
    font-size: 11px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 600;
}

.equiv-footnote {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

/* ==========================================
   UNIQUE FEATURE 3: FLOATING SCROLL PROGRESS & BACK TO TOP
   ========================================== */
.scroll-progress-indicator {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-progress-indicator.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-circle-fill {
    transition: stroke-dashoffset 0.1s linear;
}

.back-to-top-btn {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid rgba(46, 125, 50, 0.08);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.back-to-top-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15);
}

.back-to-top-btn i {
    width: 20px;
    height: 20px;
}

/* ==========================================
   ANIMATIONS & REVEALS
   ========================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 54px;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image-wrapper {
        order: 2;
    }

    .download-container {
        grid-template-columns: 1fr;
        padding: 48px;
    }

    .download-visual {
        order: 2;
        margin-top: 32px;
    }

    .crate-builder-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .builder-crate-panel {
        position: relative;
        top: 0;
    }

    .offset-calculator .section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    /* Decrease section padding to reduce vertical scrolling */
    .hero,
    .trust,
    .crate-builder,
    .features,
    .how-it-works,
    .why-choose-us,
    .app-showcase,
    .benefits,
    .offset-calculator,
    .pricing,
    .testimonials,
    .faq,
    .download-app {
        padding: 40px 0 !important;
    }

    .section-header {
        margin-bottom: 28px !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    /* Hide distracting decorative & floating elements on mobile */
    .floating-element,
    .floating-badge,
    .floating-vegetable {
        display: none !important;
    }

    .navbar {
        padding: 16px 0;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .hero-title {
        font-size: 34px !important;
        letter-spacing: -0.5px;
    }

    .organic-sphere {
        width: 250px !important;
        height: 250px !important;
        top: 20px !important;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-line-svg {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Compact Crate Builder items for mobile screen efficiency */
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
        gap: 8px !important;
    }

    .item-card {
        padding: 8px 6px !important;
    }

    .item-card-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }

    .item-card-title {
        font-size: 11px !important;
    }

    .item-card-desc {
        display: none !important;
        /* Hide descriptions to save massive scroll vertical space */
    }

    .builder-crate-panel {
        padding: 16px !important;
    }

    /* Compact Offset Calculator */
    .calc-card {
        padding: 18px !important;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-separator {
        display: none;
    }

    .download-container {
        padding: 24px;
    }

    .download-title {
        font-size: 28px;
    }

    /* Scale phone mockup frames down for small widths */
    .phone-frame,
    .slider-phone-frame {
        width: 250px !important;
        height: 500px !important;
    }

    .organic-sphere {
        width: 220px !important;
        height: 220px !important;
    }
}