/*
Theme Name: Entrepreneurs Theme
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --teal: #00A59B;
    --teal-dark: #007A72;
    --grey: #53565A;
    --black: #000000;
    --white: #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--black); background: var(--white); font-size: 16px; line-height: 1.7; }

/* NAV */
nav {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 52px; height: 52px; object-fit: contain; }
.nav-logo-text { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--black); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 17px; font-weight: 700; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--grey); text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--teal); }

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.2s;
}
.btn:hover { background: var(--teal-dark); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 12px 34px;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* HERO */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}
.hero h1 { font-size: 52px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--teal); }
.hero p { font-size: 18px; color: #cccccc; max-width: 560px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* SECTION HELPERS */
.section { padding: 80px 40px; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; margin-bottom: 8px; }
.section h2 { font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.divider { width: 48px; height: 4px; background: var(--teal); margin-bottom: 32px; border-radius: 2px; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ABOUT */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img {
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}
.about-img span { color: #aaa; font-size: 14px; }
.about-text p { color: var(--grey); margin-bottom: 16px; }

/* WHY */
.why { background: #f8f8f8; }
.why-intro { color: var(--grey); max-width: 560px; margin-bottom: 40px; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px 24px;
}
.card-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; fill: white; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* HOW IT WORKS */
.how { background: var(--white); }
.steps { display: flex; flex-direction: column; margin-top: 8px; }
.step { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid #eee; }
.step:last-child { border-bottom: none; }
.step-num {
    min-width: 48px; height: 48px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
    flex-shrink: 0;
}
.step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: 15px; color: var(--grey); }

/* PLANS */
.plans { background: var(--black); }
.plans h2 { color: var(--white); }
.plans .section-label { color: var(--teal); }
.plans-intro { color: #aaaaaa; max-width: 520px; margin-bottom: 40px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 28px 24px;
    color: var(--white);
}
.plan-card.featured { border-color: var(--teal); background: #0d1a1a; }
.badge {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    background: var(--teal); color: white;
    padding: 3px 10px; border-radius: 3px;
    display: inline-block; margin-bottom: 12px;
}
.plan-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.plan-card p { font-size: 14px; color: #aaaaaa; line-height: 1.6; }
.plan-card ul { margin-top: 20px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-card ul li { font-size: 13px; color: #cccccc; display: flex; gap: 10px; align-items: flex-start; }
.plan-card ul li::before {
    content: "";
    display: inline-block;
    min-width: 14px; height: 14px;
    margin-top: 3px;
    background: var(--teal);
    clip-path: polygon(12% 50%, 38% 76%, 88% 20%, 100% 32%, 38% 100%, 0% 62%);
}
.plans-cta { text-align: center; margin-top: 48px; }

/* CONTACT */
.contact { background: var(--white); }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header .divider { margin: 12px auto 0; }
.contact-header p { color: var(--grey); max-width: 480px; margin: 20px auto 0; }
.contact form { max-width: 620px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--grey); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; font-size: 16px; padding: 16px; text-align: center; }

/* FOOTER */
footer {
    background: var(--black);
    color: #aaaaaa;
    text-align: center;
    padding: 36px 40px;
    font-size: 13px;
}
footer span { color: var(--teal); }
footer p + p { margin-top: 6px; font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero { padding: 72px 20px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .section { padding: 56px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .why-cards { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 28px 20px; }
}