/* Landing Features - Breezy & Professional Style */

.section-breezy {
    padding: 100px 0;
    overflow: hidden;
}

.feature-row {
    margin-bottom: 80px;
    align-items: center;
}

.feature-row:last-child {
    margin-bottom: 0;
}

/* Playful Box Styling */
.playful-box {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.playful-box img {
    border-radius: 16px;
}

.playful-box-left {
    transform: rotate(-1deg);
}

.playful-box-right {
    transform: rotate(1deg);
}

.feature-row:hover .playful-box {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(84, 163, 0, 0.1);
}

/* Typography Enhancements */
.feature-badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--grundee-green);
    margin-bottom: 1rem;
    display: block;
}

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

.feature-description {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Hero Badge */
.hero-badge {
    background: var(--bs-primary-bg-subtle);
    color: var(--grundee-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(84, 163, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Pricing Section Styling */
.pricing-simplified {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.team-input-group {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.team-input-group:focus-within {
    background: white;
    border-color: var(--grundee-green);
    box-shadow: 0 10px 30px rgba(84, 163, 0, 0.1);
}

.team-input-group input {
    border: none;
    background: transparent;
    padding: 10px 20px;
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.team-input-group input:focus {
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .feature-row {
        text-align: center;
    }

    .feature-title {
        font-size: 2rem;
    }

    .playful-box {
        transform: none !important;
        margin-top: 30px;
    }
}

/* Feature Dividers */
.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 9rem 0 3rem 0;
    gap: 1.5rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grundee-green, #54a300);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.2rem;
}

.divider-text {
    font-size: 1.5rem;
    color: var(--grundee-green, #54a300) !important;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .feature-divider {
        margin: 4rem 0;
        gap: 1rem;
    }

    .divider-text {
        display: none;
    }
}

/* Review Quote Blocks */
.review-quote-block {
    padding: 4rem 0;
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: var(--grundee-green, #54a300);
    opacity: 0.1;
    line-height: 1;
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
    letter-spacing: -0.02em;
    font-style: italic;
}

.author-img-sm {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.hover-up {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-up:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .quote-text {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .review-quote-block {
        padding: 3rem 0;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}