/* Components — Apple-esque clean design */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.3s var(--ease-apple);
    white-space: nowrap;
    letter-spacing: 0;
}

.btn--primary {
    background: var(--sage);
    color: #fff;
}

.btn--primary:hover {
    opacity: 1;
    background: var(--sage-dark);
    transform: scale(1.02);
}

.btn--secondary {
    background: transparent;
    color: var(--sage);
    border: 1.5px solid var(--text-tertiary);
}

.btn--secondary:hover {
    opacity: 1;
    border-color: var(--sage);
    background: rgba(122, 155, 109, 0.06);
}

.btn--large {
    padding: 18px 38px;
    font-size: 1.05rem;
}

.btn--small {
    padding: 10px 22px;
    font-size: 0.88rem;
}

/* Dark section buttons */
.section--dark .btn--secondary {
    color: #F5F0E8;
    border-color: rgba(255, 255, 255, 0.2);
}

.section--dark .btn--secondary:hover {
    border-color: var(--sage);
    background: rgba(143, 181, 131, 0.1);
}

/* --- Feature Tiles (Bento Grid) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.bento-tile {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: all 0.4s var(--ease-apple);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    backface-visibility: hidden;
}

.bento-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

/* Luminous connection — card glows to match awakening mosaic */
.bento-tile[data-highlight]:hover {
    box-shadow:
        var(--shadow-card-hover),
        inset 0 0 0 1px rgba(122, 155, 109, 0.08),
        0 0 60px -10px rgba(122, 155, 109, 0.1);
}

.bento-tile[data-highlight]:hover .bento-tile__icon {
    box-shadow: 0 4px 20px rgba(122, 155, 109, 0.3);
}

.bento-tile__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-apple);
}

.bento-tile:hover .bento-tile__icon {
    background: var(--sage);
}

.bento-tile__icon i {
    font-size: 1.5rem;
    color: var(--sage);
    transition: color 0.3s;
}

.bento-tile:hover .bento-tile__icon i {
    color: #fff;
}

.bento-tile h4 {
    margin-bottom: 6px;
}

.bento-tile p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Large tile */
.bento-tile--large {
    grid-column: span 2;
    padding: 44px 40px;
}

.bento-tile--large .bento-tile__icon {
    width: 56px;
    height: 56px;
}

.bento-tile--large .bento-tile__icon i {
    font-size: 1.75rem;
}

/* Full-width tile */
.bento-tile--full {
    grid-column: span 3;
}

/* Alt background colors for variety */
.bento-tile:nth-child(3) { background: var(--sage-light); }
.bento-tile:nth-child(6) { background: var(--terracotta-light); }
.bento-tile:nth-child(9) { background: var(--sage-light); }

/* --- Stat Row (Apple numbers style) --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 64px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--sage);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat__label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Benefits --- */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s var(--ease-apple);
}

.benefit:hover .benefit__icon {
    background: var(--sage);
    transform: scale(1.05);
}

.benefit__icon i {
    font-size: 1.7rem;
    color: var(--sage);
    transition: color 0.3s;
}

.benefit:hover .benefit__icon i {
    color: #fff;
}

.benefit h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.55;
}
