/* Palette: Mint Green, Dark Grey, Light Grey, White */
:root {
    --mint: #00C49A;
    --mint-dark: #009e7c;
    --mint-light: #e0fbf6;
    --dark: #2D3436;
    --grey: #636e72;
    --light: #F0F2F5;
    --white: #FFFFFF;
    
    --font-head: 'Quicksand', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 20px; }

/* Header */
.header { padding: 20px 0; background: var(--white); border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--dark); letter-spacing: 1px; }
.mint-dot { color: var(--mint); margin: 0 2px; }

.nav a { margin-left: 30px; font-weight: 500; color: var(--grey); font-size: 1rem; }
.nav a:hover, .nav a.active { color: var(--mint); font-weight: 700; }

.mobile-toggle { display: none; background: var(--light); color: var(--dark); border: none; padding: 8px 15px; border-radius: 20px; cursor: pointer; font-weight: 700; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--white); z-index: 2000; padding: 50px; transition: 0.3s; box-shadow: -5px 0 30px rgba(0,0,0,0.05); }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1.5rem; margin-bottom: 30px; cursor: pointer; color: var(--grey); }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; color: var(--dark); font-weight: 700; }
.mobile-menu a:hover { color: var(--mint); }

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero { background: var(--light); padding: 80px 0; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; margin-bottom: 50px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.pill { background: var(--mint-light); color: var(--mint-dark); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.mint-text { color: var(--mint); }
.hero p { font-size: 1.2rem; color: var(--grey); margin-bottom: 40px; }

.hero-btns { display: flex; gap: 15px; }
.btn-mint { background: var(--mint); color: var(--white); padding: 15px 30px; border-radius: 30px; font-weight: 700; border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(0, 196, 154, 0.3); }
.btn-mint:hover { background: var(--mint-dark); transform: translateY(-2px); }
.btn-soft { background: var(--white); color: var(--dark); padding: 15px 30px; border-radius: 30px; font-weight: 700; transition: 0.3s; }
.btn-soft:hover { background: var(--mint-light); color: var(--mint-dark); }

.img-wrapper { position: relative; }
.float-badge { position: absolute; bottom: 30px; left: -20px; background: var(--white); padding: 15px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 10px; font-weight: 700; }
.icon { font-size: 1.5rem; }

/* Steps */
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.center { text-align: center; max-width: 600px; margin: 0 auto 50px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: var(--white); padding: 40px; border-radius: 20px; border: 1px solid #eee; text-align: center; transition: 0.3s; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.05); border-color: var(--mint); }
.step-num { width: 50px; height: 50px; background: var(--mint-light); color: var(--mint-dark); font-weight: 700; font-family: var(--font-head); font-size: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.3rem; }

/* Coaching Page */
.program-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.program-card { display: flex; gap: 30px; background: var(--white); padding: 40px; border-radius: 20px; border: 1px solid #eee; align-items: flex-start; }
.program-card.featured { border: 2px solid var(--mint); background: var(--mint-light); }
.p-icon { font-size: 3rem; background: var(--white); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.p-content h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.5rem; }
.link-mint { color: var(--mint); font-weight: 700; margin-top: 15px; display: inline-block; }

/* Tools Page */
.tools-wrapper { max-width: 600px; margin: 0 auto; text-align: center; }
.tools-wrapper h1 { font-family: var(--font-head); color: var(--mint); margin-bottom: 10px; }
.calculator-box { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); margin-top: 40px; text-align: left; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 2px solid var(--light); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group select:focus { border-color: var(--mint); outline: none; }
.full { width: 100%; }

.calc-result { margin-top: 30px; padding-top: 30px; border-top: 2px dashed #eee; text-align: center; }
.big-number { font-size: 3rem; font-weight: 700; color: var(--mint); display: block; font-family: var(--font-head); line-height: 1.2; }

/* Blog Page */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid #eee; transition: 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.b-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.b-text { padding: 30px; }
.b-text h3 { font-family: var(--font-head); margin-bottom: 10px; line-height: 1.3; }
.read-more { font-weight: 700; color: var(--mint); font-size: 0.9rem; }

/* Contact Page */
.contact-box { max-width: 600px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 50px rgba(0,0,0,0.05); }
.c-head { text-align: center; margin-bottom: 40px; }
.c-head h2 { font-family: var(--font-head); color: var(--dark); margin-bottom: 10px; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; }
.line-mint { width: 50px; height: 4px; background: var(--mint); margin-bottom: 30px; border-radius: 2px; }

/* Footer */
.footer { padding: 60px 0 30px; background: var(--light); color: var(--grey); margin-top: 50px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-logo h4 { font-family: var(--font-head); color: var(--dark); margin-bottom: 5px; font-weight: 700; }
.f-links a { margin-left: 20px; font-weight: 500; }
.f-links a:hover { color: var(--mint); }
.copyright { text-align: center; font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-grid, .grid-3, .blog-grid { grid-template-columns: 1fr; }
    .hero-img { order: -1; }
    .program-card { flex-direction: column; text-align: center; align-items: center; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}