/* ============================================
   CLEARPATH COACHING - Shared Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --slate: #1e293b;
    --slate-light: #334155;
    --navy: #0f172a;
    --amber: #d97706;
    --amber-light: #f59e0b;
    --amber-glow: #fbbf24;
    --cream: #faf7f2;
    --warm-white: #fffcf7;
    --warm-gray: #78716c;
    --warm-gray-light: #a8a29e;
    --border: #e7e5e4;
    --text: #292524;
    --text-light: #57534e;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
    color: var(--slate);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--text-light);
    font-weight: 300;
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--slate);
    letter-spacing: -0.02em;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nav__logo-mark::after {
    content: '';
    width: 18px;
    height: 2px;
    background: white;
    position: absolute;
    transform: rotate(-45deg);
}

.nav__logo-mark::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--slate-light);
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--amber);
}

.nav__cta {
    background: var(--slate);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav__cta:hover {
    background: var(--amber) !important;
    color: white !important;
    transform: translateY(-1px);
}

.nav__mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.nav__mobile-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--slate);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav__mobile-btn span:nth-child(1) { top: 0; }
.nav__mobile-btn span:nth-child(2) { top: 11px; }
.nav__mobile-btn span:nth-child(3) { top: 22px; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--amber);
    color: white;
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
}

.btn--secondary {
    background: transparent;
    color: var(--slate);
    border: 2px solid var(--slate);
}

.btn--secondary:hover {
    background: var(--slate);
    color: white;
    transform: translateY(-2px);
}

.btn--white {
    background: white;
    color: var(--slate);
}

.btn--white:hover {
    background: var(--amber-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.btn__arrow {
    transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(3px);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--warm-white); }
.section--dark {
    background: var(--navy);
    color: white;
}
.section--dark h2,
.section--dark h3 {
    color: white;
}
.section--dark p {
    color: rgba(255,255,255,0.7);
}

.section__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section__header {
    max-width: 680px;
    margin-bottom: 4rem;
}

.section__header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__header h2 {
    margin-bottom: 1rem;
}

.section__header p {
    font-size: 1.1rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
}

.hero__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-glow);
    margin-bottom: 1.5rem;
    padding: 6px 16px;
    background: rgba(217, 119, 6, 0.12);
    border-radius: 50px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    color: var(--amber-glow);
}

.hero__text {
    color: rgba(255,255,255,0.65) !important;
    font-size: 1.2rem !important;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}

.hero__decoration svg {
    width: 400px;
    height: 400px;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card h3 {
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.98rem;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pricing-card--featured {
    border-color: var(--amber);
    box-shadow: var(--shadow-md);
}

.pricing-card--featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 18px;
    border-radius: 50px;
}

.pricing-card__name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

.pricing-card__price {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
}

.pricing-card__price span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 400;
}

.pricing-card__note {
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    margin-bottom: 2rem;
}

.pricing-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '✓';
    color: var(--amber);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   ABOUT / BIO SECTION
   ============================================ */

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.bio__image-wrap {
    position: relative;
}

.bio__image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.bio__image-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.bio__image-placeholder span {
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.6;
}

.bio__accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: var(--amber);
    border-radius: var(--radius);
    z-index: -1;
}

.bio__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.credential-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--amber);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    color: var(--amber);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial__name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--slate);
}

.testimonial__role {
    font-size: 0.82rem;
    color: var(--warm-gray);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */

.steps {
    counter-reset: step;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step__number {
    counter-increment: step;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--slate);
    color: var(--amber-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
}

.step__content h3 {
    margin-bottom: 0.5rem;
}

.step__content p {
    font-size: 0.95rem;
}

.step__tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.step__tag--free {
    background: #dcfce7;
    color: #166534;
}

.step__tag--paid {
    background: rgba(217, 119, 6, 0.1);
    color: var(--amber);
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-band h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.cta-band p {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-band .btn {
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 60px 0 30px;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.site-footer h4 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.6rem;
}

.site-footer a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--amber-glow);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__certs {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__cert {
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .bio-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 100;
    }

    .nav__links.open {
        display: flex;
    }

    .nav__links a {
        font-size: 1.3rem;
    }

    .nav__mobile-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__content {
        padding: 40px 0;
    }

    .hero__decoration {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
