/* ==========================================================================
   HERO SECTION - COMPLETE STYLESHEET (FIXED, BUTTONS, IMAGE LEFT & LIST COLORS)
   ========================================================================== */

.pt-hero-wrap {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.pt-hero-wrap.pt-hero--h1 {
    padding: 30px 0;
}

.pt-hero-wrap.pt-hero--h1 img {
    height: 500px;    
}

.pt-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr;
    align-items: center;
    position: relative;
    gap: 60px;
}

/* --- Layout Variants & Image Position Fixes --- */
.pt-hero--image-right .pt-hero-grid {
    grid-template-columns: 1.6fr 1.1fr;
}
.pt-hero--image-right .pt-hero-media { 
    margin-left: -30px; 
    margin-right: -70px; 
    order: 2;
}
.pt-hero--image-right .pt-hero-content {
    order: 1;
}

.pt-hero--image-left .pt-hero-grid {
    grid-template-columns: 1.1fr 1.6fr;
}
.pt-hero--image-left .pt-hero-media { 
    margin-left: -70px; 
    margin-right: -30px; 
    order: 1;
}
.pt-hero--image-left .pt-hero-content {
    order: 2;
}

.pt-hero--no-image .pt-hero-grid { 
    grid-template-columns: 1fr; 
    justify-items: center; 
}

.pt-hero--no-image .pt-hero-content { 
    text-align: center; 
    margin: 0 auto; 
    max-width: 880px; 
}

.pt-hero--no-image .pt-hero__buttons { 
    justify-content: center; 
}

.pt-hero--no-image {
    position: relative;
    overflow: visible;
    z-index: 10;
}

.pt-hero--no-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    background: #1b2d42;
    z-index: 20;
    pointer-events: none;
    border: 2px solid #ffffff;
}

/* --- Navigation Arrows --- */
.pt-hero-arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    border: 1px solid rgba(27, 45, 66, 0.12);
    background: #ffffff; 
    color: #1b2d42;
    font-size: 20px; 
    cursor: pointer; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 45, 66, 0.04);
    z-index: 30; 
    transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
} 

.pt-hero-arrow:hover {
    background: #1b2d42;
    color: #ffffff;
    border-color: #1b2d42;
    box-shadow: 0 8px 16px rgba(27, 45, 66, 0.08);
}

.pt-hero-arrow.prev { left: -22px; }
.pt-hero-arrow.next { right: -22px; }

/* --- Content Elements --- */
.pt-hero-content {
    position: relative;
    z-index: 3;
}

.pt-hero__title { 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    line-height: 1.1; 
}

.pt-hero__eyebrow { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 14px;
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    margin-bottom: 16px; 
    font-weight: 600; 
    color: #1b2d42;
    display: block; 
}

h1 span.pt-hero__headline { 
    font-family: 'Lora', serif !important; 
    font-weight: 600 !important; 
    font-size: 52px; 
    line-height: 1.2; 
    letter-spacing: -0.01em; 
}

h2 span.pt-hero__headline { 
    font-family: 'Lora', serif !important; 
    font-weight: 600 !important; 
    font-size: 38px; 
    line-height: 1.25; 
    letter-spacing: -0.01em; 
}

.pt-hero__headline { 
    font-family: 'Lora', serif !important; 
    font-weight: 600 !important; 
    font-size: 52px; 
    line-height: 1.2; 
    letter-spacing: -0.01em; 
}

/* --- E-E-A-T Meta --- */
.pt-hero-author-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
    margin-bottom: 24px;
    padding-top: 12px;
    border-top: 1px solid rgba(27, 45, 66, 0.08);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.pt-hero-meta__item {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    letter-spacing: 0.01em;
}

.pt-hero-meta__icon {
    width: 15px;
    height: 15px;
    stroke: #1b2d42;
    opacity: 0.75;
    flex-shrink: 0;
    margin-top: 2px;
}

.pt-hero-meta__item a {
    color: #1b2d42;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, border-color 0.2s ease;
    border-bottom: 1px solid rgba(27, 45, 66, 0.2);
    padding-bottom: 1px;
	text-decoration:none!important;
}

.pt-hero-meta__item a:hover {
    color: #000000;
    border-bottom-color: #1b2d42;
}

.pt-hero-meta__item small {
    font-size: 0.85em;
    color: #94a3b8;
    font-weight: 400;
    white-space: nowrap;
}

.pt-hero-meta__sep {
    color: #cbd5e1;
    font-size: 12px;
    user-select: none;
}

/* Theme Variants */
.pt-hero--dark .pt-hero-author-meta {
    border-top-color: rgba(27, 45, 66, 0.1);
    color: #64748b;
}

.pt-hero--light .pt-hero-author-meta {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.pt-hero--light .pt-hero-meta__icon {
    stroke: #ffffff;
    opacity: 0.9;
}

.pt-hero--light .pt-hero-meta__item a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.pt-hero--light .pt-hero-meta__item a:hover {
    border-bottom-color: #ffffff;
}

.pt-hero--light .pt-hero-meta__item small {
    color: rgba(255, 255, 255, 0.65);
}

.pt-hero--light .pt-hero-meta__sep {
    color: rgba(255, 255, 255, 0.3);
}

.pt-hero--no-image .pt-hero-author-meta {
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Description & Text --- */
.pt-hero__text { 
    font-family: 'Montserrat', sans-serif !important; 
    font-size: 18px !important; 
    line-height: 1.8 !important; 
    letter-spacing: 0.01em !important; 
    font-weight: 400 !important; 
}

.pt-hero-content a,
.pt-hero__text a {
    color: #1b2d42;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pt-hero-content a:hover,
.pt-hero__text a:hover {
    color: #000000;
    text-decoration-thickness: 2px;
}

.pt-hero--light .pt-hero-content a,
.pt-hero--light .pt-hero__text a {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.pt-hero--light .pt-hero-content a:hover,
.pt-hero--light .pt-hero__text a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

.pt-hero--dark { color: #2e445c; }
.pt-hero--dark .pt-hero__eyebrow, .pt-hero--dark .pt-hero__headline, .pt-hero--dark .pt-hero__text { color: #1b2d42; }
.pt-hero--light { color: #ffffff; }
.pt-hero--light .pt-hero__eyebrow, .pt-hero--light .pt-hero__headline, .pt-hero--light .pt-hero__text { color: #ffffff; }

/* --- Buttons --- */
.pt-hero__buttons { 
    display: flex; 
    gap: 18px; 
    margin-top: 48px; 
}

.pt-hero__buttons .pt-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 12px 40px; 
    border-radius: 40px; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 15px; 
    text-decoration: none; 
    border: 2px solid transparent; 
    font-weight: 600; 
    letter-spacing: 0.05em;
    transition: all 0.35s cubic-bezier(.16, 1, .3, 1); 
    white-space: nowrap;
    flex-shrink: 0;
}

.pt-hero--scheme-dark .pt-btn { background: #1b2d42; color: #ffffff; }
.pt-hero--scheme-dark .pt-btn:hover { background: #101d2a; color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(27, 45, 66, 0.15); }
.pt-hero--scheme-dark .pt-btn.outline { background: transparent; color: #1b2d42; border-color: #1b2d42; }
.pt-hero--scheme-dark .pt-btn.outline:hover { background: #1b2d42; color: #ffffff !important; border-color: #1b2d42; transform: translateY(-2px); }

.pt-hero--scheme-light .pt-btn { background: #ffffff; color: #1b2d42; }
.pt-hero--scheme-light .pt-btn:hover { background: #f9f9f9; color: #1b2d42 !important; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15); }
.pt-hero--scheme-light .pt-btn.outline { background: transparent; color: #ffffff; border-color: #ffffff; }
.pt-hero--scheme-light .pt-btn.outline:hover { background: #ffffff; color: #1b2d42 !important; border-color: #ffffff; transform: translateY(-2px); }

.pt-btn:hover {
    color: inherit;
}

/* --- Lists --- */
.pt-hero-list { 
    list-style: none; 
    padding: 0; 
    margin: 28px 0 0; 
}

.pt-hero-list li { 
    position: relative; 
    padding-left: 24px; 
    font-family: 'Montserrat', sans-serif !important; 
    font-size: 18px !important; 
    line-height: 1.8 !important; 
    letter-spacing: 0.01em !important; 
    font-weight: 400 !important; 
    color: inherit; 
}

.pt-hero-list li::before { 
    content: "\44"; 
    font-family: 'icomoon'; 
    position: absolute; 
    left: 0; 
    top: 0; 
    font-size: 15px; 
    color: inherit; 
    opacity: 0.8; 
}

.pt-hero--dark .pt-hero-list li { color: #1b2d42; }
.pt-hero--light .pt-hero-list li { color: #ffffff; }

/* --- Media --- */
.pt-hero-media { 
    position: relative; 
    z-index: 1; 
}

.pt-hero-media img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
}

.pt-hero-media--stacked { 
    position: relative; 
    height: 450px; 
    margin: 0 !important; 
}

.pt-hero-stacked { 
    position: relative; 
    width: 100%; 
    height: 100%; 
}

.pt-hero-card { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 85%; 
    max-width: 420px; 
    transform: translate(-50%, -50%) scale(0.9); 
    opacity: 0; 
    z-index: 1; 
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(27, 45, 66, 0.05);
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .6s ease; 
}

.pt-hero-card img { width: 100%; display: block; }
.pt-hero-card.is-active { transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 3; box-shadow: 0 20px 45px rgba(27, 45, 66, 0.05); }
.pt-hero-card.is-prev { transform: translate(-65%, -50%) scale(0.85); opacity: .5; z-index: 2; }
.pt-hero-card.is-next { transform: translate(-35%, -50%) scale(0.85); opacity: .5; z-index: 2; }

.pt-hero-dots { 
    position: absolute; 
    bottom: 6px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 8px; 
    z-index: 5; 
}

.pt-hero-dot { 
    width: 24px; 
    height: 24px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    position: relative; 
}

.pt-hero-dot::before { 
    content: ""; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 7px; 
    height: 7px; 
    border-radius: 50%; 
    background: rgba(255,255,255,.4); 
    transform: translate(-50%, -50%); 
    transition: all 0.25s ease; 
}

.pt-hero-dot.is-active::before { 
    background: #ffffff; 
    width: 16px; 
    border-radius: 4px; 
    transform: translate(-50%, -50%); 
}

/* --- Badges --- */
.pt-hero-media .pt-google-badge,
.pt-hero-media .pt-ishrs-badge {
    position: absolute;
    bottom: 25px; 
    right: 25px;    
    z-index: 20; 
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    width: max-content; 
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(27, 45, 66, 0.08);
    border-radius: 40px; 
    box-shadow: 0 10px 25px rgba(27, 45, 66, 0.06);
    animation: ptFloatBadge 4s ease-in-out infinite;
    text-decoration: none !important;
}

.pt-google-badge__logo { 
    display: flex; 
    align-items: center; 
    background: #ffffff; 
    padding: 5px; 
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.pt-google-badge__content { 
    display: flex; 
    flex-direction: column; 
    line-height: 1.4; 
}

.pt-google-badge__stars { 
    color: #FFB400; 
    font-size: 18px; 
    letter-spacing: 1px; 
}

.pt-google-badge__text { 
    font-size: 12px; 
    color: #1b2d42; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.pt-badge-sep { 
    color: #667085; 
    font-weight: normal; 
    margin-left: 2px; 
}

.pt-ishrs-badge__logo { 
    display: flex; 
    align-items: center; 
    background: #ffffff; 
    padding: 4px; 
    border-radius: 50%; 
    width: 30px; 
    height: 30px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.pt-ishrs-badge__logo img { 
    width: 100%; 
    height: auto; 
    object-fit: contain; 
}

.pt-ishrs-badge__content { 
    display: flex; 
    flex-direction: column; 
    line-height: 1.3; 
    text-align: left; 
}

.pt-ishrs-badge__label { 
    font-size: 10px; 
    color: #667085; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.pt-ishrs-badge__title { 
    font-size: 12.5px; 
    color: #1b2d42; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

@keyframes ptFloatBadge {
    0% { transform: translateY(0); box-shadow: 0 10px 25px rgba(27, 45, 66, 0.06); }
    50% { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(27, 45, 66, 0.1); }
    100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(27, 45, 66, 0.06); }
}

/* --- Organic Shapes --- */
.pt-hero--shape-dots .pt-google-badge,
.pt-hero--shape-dots .pt-ishrs-badge {
    bottom: 5%;
    right: 5%;
}

.pt-hero--shape-dots .pt-hero-grid {
    grid-template-columns: 1.60fr 1.2fr;
    gap: 60px;
}

.pt-hero--shape-dots.pt-hero--image-right .pt-hero-media {
    margin-left: -50px !important;
    margin-right: -100px !important;
  
}

.pt-hero--shape-dots.pt-hero--image-left .pt-hero-media {
    margin-left: -100px !important;
    margin-right: -50px !important;
    margin-bottom: -80px !important;
}

.pt-hero--shape-dots .pt-hero-media--organic-shape {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
}

.pt-hero--shape-dots .pt-hero-media--organic-shape::before {
    content: '';
    position: absolute;
    top: -8%;
    width: 125%;
    height: 115%;
    background: 
        radial-gradient(circle, rgba(27, 45, 66, 0.12) 2px, transparent 2px),
        linear-gradient(135deg, rgba(255,255,255,0) 15%, rgba(27, 45, 66, 0.01) 45%, rgba(27, 45, 66, 0.01) 100%);
    background-size: 22px 22px, auto; 
    border-radius: 64% 36% 31% 69% / 51% 25% 75% 49%;
    z-index: 1;
}

.pt-hero--shape-dots.pt-hero--image-right .pt-hero-media--organic-shape::before {
    right: -12%;
    transform: rotate(6deg) scale(1.02);
    -webkit-mask-image: radial-gradient(circle at 60% 50%, black 40%, transparent 85%);
    mask-image: radial-gradient(circle at 60% 50%, black 40%, transparent 85%);
}

.pt-hero--shape-dots.pt-hero--image-left .pt-hero-media--organic-shape::before {
    left: -12%;
    transform: rotate(-6deg) scale(1.02);
    -webkit-mask-image: radial-gradient(circle at 40% 50%, black 40%, transparent 85%);
    mask-image: radial-gradient(circle at 40% 50%, black 40%, transparent 85%);
}

.pt-hero--shape-dots .pt-hero-media--organic-shape img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(8px 20px 35px rgba(27, 45, 66, 0.05));
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .pt-hero-wrap {
        padding: 40px 0 0 0 !important; 
    }

    .pt-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .pt-hero-media {
        margin: 0 auto 0 !important; 
        order: 2 !important;
        max-width: 480px; 
        width: 100%;
    }

    .pt-hero-content {
        order: 1 !important;
    }

    .pt-hero--shape-dots.pt-hero--image-right .pt-hero-media {
        margin: 30px 0 !important;
    }   
    
    .pt-hero-media--organic-shape {
        align-items: flex-end; 
    }

    .pt-hero-media--organic-shape::before {
        background: 
            radial-gradient(circle, rgba(27, 45, 66, 0.12) 2px, transparent 2px),
            linear-gradient(180deg, rgba(255,255,255,0) 15%, rgba(27, 45, 66, 0.04) 65%, rgba(27, 45, 66, 0.08) 100%) !important;
        background-size: 20px 20px, auto !important;
    }

    .pt-hero-media .pt-google-badge,
    .pt-hero-media .pt-ishrs-badge {
        bottom: 20px !important;
        right: 20px !important;
    }

    .pt-hero__headline { font-size: 32px !important; }
    .pt-hero__eyebrow {
        letter-spacing: 0.05em; 
        line-height: 1.8;
        font-size: 14px;
        font-weight: 600;
    }

    .pt-hero-author-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 14px;
        margin-bottom: 20px;
        padding-top: 10px;
        font-size: 12.5px;
    }

    .pt-hero-meta__sep {
        display: none;
    }

    .pt-hero-meta__item small {
        margin-top: 2px;
    }

    .pt-hero--no-image .pt-hero__text {
        padding-bottom: 40px;    
    }
    
    .pt-hero__text,
    .pt-hero-list li { font-size: 16px !important; line-height: 1.8 !important; }
    
    .pt-hero__buttons { 
        flex-direction: column; 
        gap: 12px; 
        margin-top: 32px;
        width: 100%;
    }
    
    .pt-hero__buttons .pt-btn { 
        width: 100%; 
        max-width: 100%;
        white-space: normal; 
        text-align: center;
        word-break: break-word; 
        font-size: 13px !important; 
        padding: 14px 16px !important;
        box-sizing: border-box;
        justify-content: center;
    }   
    
    .pt-hero-arrow { display: none !important; }
}

@media (max-width: 768px) {
    .pt-hero-media .pt-google-badge,
    .pt-hero-media .pt-ishrs-badge {
        bottom: 15px !important;
        right: 15px !important;
        padding: 8px 16px;
    }
}