/* VARIABLES & RESET */
:root {
    --oak-dark: #1f2937;
    --oak-lime: #84cc16;
    --oak-soft-lime: #bef264;
    --oak-bg-light: #f7fee7;
    --oak-white: #ffffff;
    --oak-blue-glow: #3b82f6;
    --oak-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--oak-dark);
    background-color: var(--oak-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.oakleafNavigContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.oakleafNavigHeader {
    background: var(--oak-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.oakleafNavigFlexHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oakleafNavigLogo {
    font-size: 28px;
    font-weight: 800;
    color: var(--oak-lime);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.oakleafNavigList {
    display: flex;
    gap: 25px;
}

.oakleafNavLink {
    color: var(--oak-dark);
    font-weight: 600;
    font-size: 15px;
}

.oakleafNavLink:hover {
    color: var(--oak-lime);
}

.oakleafNavigAccentLine {
    height: 4px;
    background: var(--oak-lime);
    width: 90%;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Mobile Menu */
.oakleafNavigMenuCheckbox {
    display: none;
}

.oakleafNavigBurger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.oakleafNavigBurger span {
    width: 25px;
    height: 3px;
    background: var(--oak-dark);
    transition: 0.3s;
}

/* HERO SECTION */
.oakleafHeroSection {
    padding: 100px 0;
    background: var(--oak-bg-light);
    position: relative;
    overflow: hidden;
}

.oakleafHeroGrid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.oakleafHeroImageWrapper {
    flex: 1;
    filter: blur(20px);
    animation: oakFocus 1.5s forwards ease-out;
}

@keyframes oakFocus {
    to { filter: blur(0); }
}

.oakleafHeroMainImg {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--oak-shadow);
}

.oakleafHeroContent {
    flex: 1.2;
}

.oakleafHeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--oak-dark);
}

.oakleafHeroSub {
    font-size: 20px;
    font-weight: 600;
    color: var(--oak-lime);
    margin-bottom: 20px;
}

.oakleafHeroText {
    margin-bottom: 20px;
    font-size: 17px;
    color: #4b5563;
}

.oakleafHeroButton {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--oak-blue-glow);
    color: var(--oak-white);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transition: 0.4s;
}

.oakleafHeroButton:hover {
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.7);
    transform: translateY(-3px);
}

/* FAQ SECTION */
.oakleafFaqSection {
    padding: 80px 0;
}

.oakleafFaqIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.oakleafFaqMainTitle {
    font-size: 36px;
    margin-bottom: 15px;
}

.oakleafFaqWrapper {
    max-width: 900px;
    margin: 0 auto;
}

.oakleafFaqItem {
    background: var(--oak-bg-light);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.oakleafFaqQuestion {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.oakleafFaqQuestion::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: var(--oak-lime);
}

.oakleafFaqItem[open] .oakleafFaqQuestion::after {
    content: '-';
}

.oakleafFaqAnswer {
    padding: 0 20px 20px;
    color: #374151;
}

/* CONTENT SECTIONS */
.oakleafContentSection {
    padding: 100px 0;
}

.oakleafAltBg {
    background: var(--oak-bg-light);
}

.oakleafContentGrid {
    display: flex;
    gap: 50px;
}

.oakleafContentTextCol {
    flex: 1;
}

.oakleafContentTitle {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--oak-lime);
}

.oakleafContentPara {
    margin-bottom: 20px;
    font-size: 16px;
}

.oakleafContentList {
    margin-top: 20px;
}

.oakleafContentList li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

.oakleafContentList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--oak-lime);
    font-weight: 900;
}

/* PRACTICE SECTION */
.oakleafPracticeSection {
    padding: 100px 0;
}

.oakleafPracticeGrid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.oakleafPracticeContent {
    flex: 1.2;
}

.oakleafPracticeImage {
    flex: 0.8;
}

.oakleafPracticeImg {
    border-radius: 20px;
    box-shadow: var(--oak-shadow);
}

.oakleafPracticeCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.oakleafPracticeCard {
    background: var(--oak-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--oak-shadow);
    transition: 0.3s;
}

.oakleafPracticeCard:hover {
    transform: translateY(-5px);
}

.oakleafPracticeCard h3 {
    color: var(--oak-lime);
    margin-bottom: 10px;
    font-size: 19px;
}

/* EXPERT SECTION */
.oakleafExpertSection {
    padding: 100px 0;
    background: var(--oak-dark);
    color: var(--oak-white);
}

.oakleafExpertGrid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.oakleafExpertQuoteBox {
    flex: 1.5;
}

.oakleafExpertPhoto {
    flex: 1;
}

.oakleafExpertImg {
    border-radius: 50%;
    border: 10px solid var(--oak-soft-lime);
    width: 350px;
    height: 350px;
    object-fit: cover;
}

.oakleafExpertQuote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
}

.oakleafExpertQuote::before {
    content: '"';
    font-size: 100px;
    position: absolute;
    top: -50px;
    left: -40px;
    color: var(--oak-lime);
    opacity: 0.3;
}

.oakleafExpertName {
    font-size: 22px;
    font-weight: 800;
    color: var(--oak-soft-lime);
}

/* PRICE SECTION */
.oakleafPriceSection {
    padding: 100px 0;
    background: var(--oak-bg-light);
}

.oakleafPriceMainTitle {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.oakleafPriceGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.oakleafPriceCard {
    background: var(--oak-white);
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    box-shadow: var(--oak-shadow);
    border: 2px solid transparent;
    transition: 0.4s;
}

.oakleafPriceFeatured {
    border-color: var(--oak-lime);
    transform: scale(1.05);
}

.oakleafPriceValue {
    font-size: 40px;
    font-weight: 900;
    color: var(--oak-dark);
    margin-bottom: 10px;
}

.oakleafPriceName {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--oak-lime);
}

.oakleafPriceList {
    margin-bottom: 30px;
}

.oakleafPriceList li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #4b5563;
}

.oakleafPriceBtn {
    display: block;
    padding: 14px;
    background: var(--oak-blue-glow);
    color: var(--oak-white);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* AUDIENCE SECTION */
.oakleafAudienceSection {
    padding: 100px 0;
}

.oakleafAudienceHeader {
    text-align: center;
    margin-bottom: 50px;
}

.oakleafAudienceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.oakleafAudienceItem {
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: var(--oak-shadow);
    border-left: 8px solid var(--oak-soft-lime);
}

.oakleafAudienceItem:nth-child(even) {
    border-left-color: var(--oak-lime);
    background: var(--oak-bg-light);
}

/* FORM SECTION */
.oakleafFormSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--oak-white) 0%, var(--oak-bg-light) 100%);
}

.oakleafFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--oak-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.oakleafFormTitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.oakleafFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #6b7280;
}

.oakleafFormGroup {
    margin-bottom: 20px;
}

.oakleafFormLabel {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.oakleafFormInput, .oakleafFormTextarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.oakleafFormInput:focus, .oakleafFormTextarea:focus {
    border-color: var(--oak-lime);
}

.oakleafFormTextarea {
    height: 120px;
    resize: none;
}

.oakleafFormCheckboxRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.oakleafFormSubmitBtn {
    width: 100%;
    padding: 18px;
    background: var(--oak-blue-glow);
    color: var(--oak-white);
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: 0.4s;
}

.oakleafFormSubmitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.oakleafDisclaimer {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 25px;
}

/* FOOTER */
.oakleafFooter {
    background: var(--oak-dark);
    color: var(--oak-white);
    padding: 80px 0 40px;
}

.oakleafFooterTop {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.oakleafFooterLogo {
    font-size: 32px;
    font-weight: 900;
    color: var(--oak-lime);
    margin-bottom: 15px;
}

.oakleafFooterContacts a {
    color: var(--oak-soft-lime);
}

.oakleafFooterDivider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.oakleafFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;
}

.oakleafFooterLinks {
    display: flex;
    gap: 20px;
}

.oakleafFooterLinks a {
    color: var(--oak-white);
}

/* DECOR BEAMS */
.oakleafDecorBeam1 {
    position: fixed;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.oakleafDecorBeam2 {
    position: fixed;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .oakleafHeroGrid, .oakleafContentGrid, .oakleafPracticeGrid, .oakleafExpertGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .oakleafHeroImageWrapper, .oakleafPracticeImage, .oakleafExpertPhoto {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .oakleafPriceGrid {
        flex-wrap: wrap;
    }
    
    .oakleafPriceCard {
        width: 100%;
        max-width: 400px;
    }
    
    .oakleafPriceFeatured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .oakleafNavigBurger {
        display: flex;
    }
    
    .oakleafNavigMain {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--oak-white);
        display: none;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .oakleafNavigMenuCheckbox:checked ~ .oakleafNavigMain {
        display: block;
    }
    
    .oakleafNavigList {
        flex-direction: column;
        align-items: center;
    }
    
    .oakleafHeroTitle {
        font-size: 34px;
    }
    
    .oakleafFooterTop {
        flex-direction: column;
        text-align: center;
    }
    
    .oakleafFooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .oakleafPracticeCards {
        grid-template-columns: 1fr;
    }
}