/* ════════════════════════════════════════════════════════
   SERVICES.CSS — Cronos Solutions Styles
   ════════════════════════════════════════════════════════ */

/* ─── SECTION COMMON ─── */
.services-section {
    padding: 120px 4% 80px;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-logo);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(16, 212, 118, 0.6);
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* ─── CRONOS WILL DO (Offerings Grid) ─── */
.do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.do-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: top 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    top: 0;
    overflow: hidden;
}

.do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(16, 212, 118, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.do-card:hover {
    top: -8px;
    border-color: rgba(16, 212, 118, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 212, 118, 0.1);
}

.do-card:hover::before {
    opacity: 1;
}

.do-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 212, 118, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 25px;
    border: 1px solid rgba(16, 212, 118, 0.2);
}

.do-title {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.do-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ─── CRONOS WILL EARN (Pricing Tiers) ─── */
.pricing-category {
    margin-bottom: 100px;
}

.pricing-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pricing-cat-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    box-shadow: 0 0 15px rgba(16, 212, 118, 0.4);
}

.pricing-cat-title {
    font-family: var(--font-logo);
    font-size: 2.8rem;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.pricing-cat-subtitle {
    font-size: 0.85rem;
    color: #000;
    background: var(--accent-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(16, 212, 118, 0.2);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.tier-card {
    background: rgba(20, 20, 24, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: top 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    top: 0;
}

.tier-card.featured {
    background: rgba(25, 30, 28, 0.8);
    border-color: rgba(16, 212, 118, 0.4);
    box-shadow: 0 0 30px rgba(16, 212, 118, 0.05);
    margin-top: -15px;
    margin-bottom: 15px;
}

.tier-card:hover {
    border-color: rgba(16, 212, 118, 0.6);
    top: -8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(16, 212, 118, 0.05);
}

.tier-card.featured:hover {
    top: -8px;
}

.tier-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--accent-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tier-name {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.tier-target {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
    min-height: 40px;
}

.tier-price {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.tier-price-sub {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.tier-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.tier-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-footer-note {
    text-align: center;
    color: var(--text-main);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 75px;
    margin-bottom: 50px;
    padding: 20px 25px;
    background: rgba(16, 212, 118, 0.05);
    border: 1px solid rgba(16, 212, 118, 0.15);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.custom-pkg-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px;
    background: radial-gradient(circle at center, rgba(16, 212, 118, 0.1) 0%, rgba(20, 20, 24, 0.8) 70%);
    border: 1px solid rgba(16, 212, 118, 0.2);
    border-radius: 24px;
}

.custom-pkg-cta h3 {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(16, 212, 118, 0.4);
}

@media (max-width: 1024px) {

    .do-grid,
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .do-grid,
    .tier-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cat-header {
        flex-direction: column;
        gap: 5px;
    }
}