/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pway-bg: #111827;
    --pway-bg-alt: #1f2937;
    --pway-text: #e5e7eb;
    --pway-text-muted: #94a3b8;
    --pway-accent: #00ffff;
    --pway-accent-glow: 0 0 15px rgba(0, 255, 255, 0.6);
    --pway-white: #ffffff;
    --pway-transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.pinewayPhytoSupportGuide_body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--pway-bg);
    color: var(--pway-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.pinewayPhytoSupportGuide_img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pinewayPhytoSupportGuide_rounded {
    border-radius: 12px;
}

/* Typography */
.pinewayPhytoSupportGuide_h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--pway-white);
    font-weight: 800;
}

.pinewayPhytoSupportGuide_h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--pway-white);
    font-weight: 700;
}

.pinewayPhytoSupportGuide_h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pway-white);
}

.pinewayPhytoSupportGuide_p {
    margin-bottom: 1.2rem;
    color: var(--pway-text-muted);
    font-size: 1.1rem;
}

.pinewayPhytoSupportGuide_center {
    text-align: center;
}

/* Header & Dock Panel */
.pinewayPhytoSupportGuide_header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
}

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

.pinewayPhytoSupportGuide_logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pway-accent);
    letter-spacing: -1px;
}

.pinewayPhytoSupportGuide_nav {
    display: flex;
}

.pinewayPhytoSupportGuide_menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.pinewayPhytoSupportGuide_link {
    color: var(--pway-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--pway-transition);
}

.pinewayPhytoSupportGuide_link:hover {
    color: var(--pway-accent);
}

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

.pinewayPhytoSupportGuide_burger span {
    width: 25px;
    height: 2px;
    background-color: var(--pway-white);
    transition: var(--pway-transition);
}

.pinewayPhytoSupportGuide_toggle_input {
    display: none;
}

.pinewayPhytoSupportGuide_disclaimer_top {
    font-size: 0.75rem;
    text-align: center;
    color: var(--pway-text-muted);
    margin-top: 10px;
}

.pinewayPhytoSupportGuide_accent_line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pway-accent), transparent);
    margin-top: 15px;
    border-radius: 50px;
}

/* Hero Section */
.pinewayPhytoSupportGuide_hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pinewayPhytoSupportGuide_hero_grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pinewayPhytoSupportGuide_hero_content {
    flex: 1;
}

.pinewayPhytoSupportGuide_hero_image {
    flex: 1;
    position: relative;
}

.pinewayPhytoSupportGuide_shape_1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--pway-accent);
    opacity: 0.1;
    top: -50px;
    right: -50px;
    transform: rotate(45deg);
    z-index: -1;
}

.pinewayPhytoSupportGuide_shape_2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--pway-accent);
    opacity: 0.05;
    bottom: -30px;
    left: -30px;
    border-radius: 50%;
    z-index: -1;
}

/* Buttons */
.pinewayPhytoSupportGuide_btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--pway-accent);
    color: var(--pway-bg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--pway-accent-glow);
    transition: var(--pway-transition);
    border: 2px solid var(--pway-accent);
    cursor: pointer;
}

.pinewayPhytoSupportGuide_btn:hover {
    background-color: transparent;
    color: var(--pway-accent);
    box-shadow: none;
}

.pinewayPhytoSupportGuide_full {
    width: 100%;
    text-align: center;
}

/* Practice Section */
.pinewayPhytoSupportGuide_practice {
    padding: 100px 0;
    background-color: var(--pway-bg-alt);
}

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

.pinewayPhytoSupportGuide_practice_image {
    flex: 1;
}

.pinewayPhytoSupportGuide_practice_content {
    flex: 1.2;
}

.pinewayPhytoSupportGuide_highlight {
    background-color: rgba(0, 255, 255, 0.05);
    border-left: 4px solid var(--pway-accent);
    padding: 20px;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--pway-white);
}

.pinewayPhytoSupportGuide_list {
    list-style: none;
}

.pinewayPhytoSupportGuide_list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--pway-text-muted);
}

.pinewayPhytoSupportGuide_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pway-accent);
    font-weight: bold;
}

/* Services Section */
.pinewayPhytoSupportGuide_services {
    padding: 100px 0;
}

.pinewayPhytoSupportGuide_cards_wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.pinewayPhytoSupportGuide_card {
    background-color: var(--pway-bg-alt);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--pway-transition);
}

.pinewayPhytoSupportGuide_card:hover {
    transform: translateY(-10px);
    border-color: var(--pway-accent);
}

.pinewayPhytoSupportGuide_card_featured {
    border: 2px solid var(--pway-accent);
    transform: scale(1.05);
}

.pinewayPhytoSupportGuide_card_icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pinewayPhytoSupportGuide_price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pway-accent);
    margin-bottom: 25px;
}

.pinewayPhytoSupportGuide_card_list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pinewayPhytoSupportGuide_card_list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--pway-text-muted);
}

.pinewayPhytoSupportGuide_card_btn {
    text-align: center;
    padding: 12px;
    border: 1px solid var(--pway-accent);
    border-radius: 50px;
    color: var(--pway-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--pway-transition);
}

.pinewayPhytoSupportGuide_card_btn:hover {
    background-color: var(--pway-accent);
    color: var(--pway-bg);
}

/* Text Blocks */
.pinewayPhytoSupportGuide_text_block {
    padding: 100px 0;
}

.pinewayPhytoSupportGuide_bg_alt {
    background-color: var(--pway-bg-alt);
}

/* FAQ Section */
.pinewayPhytoSupportGuide_faq {
    padding: 100px 0;
}

.pinewayPhytoSupportGuide_faq_list {
    max-width: 800px;
    margin: 50px auto 0;
}

.pinewayPhytoSupportGuide_faq_item {
    background-color: var(--pway-bg-alt);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.pinewayPhytoSupportGuide_faq_summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--pway-transition);
}

.pinewayPhytoSupportGuide_faq_summary::after {
    content: "+";
    color: var(--pway-accent);
    font-size: 1.5rem;
}

.pinewayPhytoSupportGuide_faq_item[open] .pinewayPhytoSupportGuide_faq_summary {
    background-color: rgba(0, 255, 255, 0.1);
}

.pinewayPhytoSupportGuide_faq_item[open] .pinewayPhytoSupportGuide_faq_summary::after {
    content: "-";
}

.pinewayPhytoSupportGuide_faq_content {
    padding: 0 25px 25px;
    color: var(--pway-text-muted);
}

/* Audience Section */
.pinewayPhytoSupportGuide_audience {
    padding: 100px 0;
    background-color: var(--pway-bg-alt);
}

.pinewayPhytoSupportGuide_audience_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pinewayPhytoSupportGuide_audience_item {
    padding: 30px;
    background-color: var(--pway-bg);
    border-radius: 15px;
    text-align: center;
    transition: var(--pway-transition);
}

.pinewayPhytoSupportGuide_audience_item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pinewayPhytoSupportGuide_audience_icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Practitioner Block */
.pinewayPhytoSupportGuide_practitioner {
    padding: 100px 0;
}

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

.pinewayPhytoSupportGuide_practitioner_image {
    flex: 1;
}

.pinewayPhytoSupportGuide_practitioner_content {
    flex: 1.5;
}

.pinewayPhytoSupportGuide_quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--pway-accent);
    margin-bottom: 25px;
    position: relative;
}

.pinewayPhytoSupportGuide_quote::before {
    content: "“";
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.2;
}

.pinewayPhytoSupportGuide_practitioner_name {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--pway-white);
}

.pinewayPhytoSupportGuide_practitioner_desc {
    color: var(--pway-text-muted);
}

/* Form Section */
.pinewayPhytoSupportGuide_form_section {
    padding: 100px 0;
    background-color: var(--pway-bg-alt);
}

.pinewayPhytoSupportGuide_form_container {
    max-width: 600px;
}

.pinewayPhytoSupportGuide_form {
    margin-top: 40px;
}

.pinewayPhytoSupportGuide_form_group {
    margin-bottom: 20px;
}

.pinewayPhytoSupportGuide_form_group label {
    display: block;
    margin-bottom: 8px;
    color: var(--pway-text);
}

.pinewayPhytoSupportGuide_form_group input,
.pinewayPhytoSupportGuide_form_group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--pway-bg);
    color: var(--pway-white);
    font-family: inherit;
}

.pinewayPhytoSupportGuide_form_checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pinewayPhytoSupportGuide_form_checkbox a {
    color: var(--pway-accent);
    text-decoration: underline;
}

/* Footer */
.pinewayPhytoSupportGuide_footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.pinewayPhytoSupportGuide_footer_copy {
    margin-bottom: 10px;
}

.pinewayPhytoSupportGuide_footer_contact {
    margin-bottom: 30px;
}

.pinewayPhytoSupportGuide_footer_contact a {
    color: var(--pway-accent);
    text-decoration: none;
}

.pinewayPhytoSupportGuide_footer_links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pinewayPhytoSupportGuide_footer_links a {
    color: var(--pway-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.pinewayPhytoSupportGuide_footer_links a:hover {
    color: var(--pway-accent);
}

/* Responsive */
@media (max-width: 992px) {
    .pinewayPhytoSupportGuide_h1 { font-size: 2.8rem; }
    .pinewayPhytoSupportGuide_hero_grid,
    .pinewayPhytoSupportGuide_practice_grid,
    .pinewayPhytoSupportGuide_practitioner_grid {
        flex-direction: column;
        text-align: center;
    }
    
    .pinewayPhytoSupportGuide_practice_grid {
        flex-direction: column-reverse;
    }
    
    .pinewayPhytoSupportGuide_list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .pinewayPhytoSupportGuide_burger {
        display: flex;
    }
    
    .pinewayPhytoSupportGuide_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--pway-bg);
        padding: 30px;
        border-top: 1px solid rgba(0, 255, 255, 0.1);
    }
    
    .pinewayPhytoSupportGuide_menu {
        flex-direction: column;
        align-items: center;
    }
    
    .pinewayPhytoSupportGuide_toggle_input:checked ~ .pinewayPhytoSupportGuide_nav {
        display: block;
    }
    
    .pinewayPhytoSupportGuide_h1 { font-size: 2.2rem; }
    .pinewayPhytoSupportGuide_h2 { font-size: 1.8rem; }
    
    .pinewayPhytoSupportGuide_card_featured {
        transform: scale(1);
    }
}