/* Dojang Go Homepage Components - Premium UI */

/* --- Global Resets & Typography --- */
.pv-dojang-hero, .pv-dojang-benefits, .pv-site-header, .pv-site-footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.pv-dojang-hero *, .pv-dojang-benefits *, .pv-site-header *, .pv-site-footer * {
    box-sizing: border-box;
}

/* --- Header Section --- */
.pv-site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0ede5;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pv-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pv-logo {
    height: 48px;
    width: auto;
    display: block;
}

.pv-main-nav {
    display: flex;
    gap: 32px;
}

.pv-main-nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pv-main-nav a:hover {
    color: #901a1e;
}

/* --- Hero Section --- */
.pv-dojang-hero {
    background: radial-gradient(circle at top center, #ffffff 0%, #fdfbf7 100%);
    padding: 100px 20px 80px;
    text-align: center;
    border-bottom: 1px solid #f0ede5;
}

.pv-hero-content { max-width: 850px; margin: 0 auto; }

.pv-hero-badge {
    display: inline-block;
    background-color: #f5e9ea;
    color: #901a1e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pv-hero-content h1 {
    color: #231f20;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.pv-hero-content h1 .pv-text-highlight { color: #901a1e; }
.pv-hero-content p {
    color: #555555;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.pv-hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.pv-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; font-size: 1.1rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: all 0.2s ease; cursor: pointer;
}
.pv-btn-sm { padding: 10px 20px; font-size: 1rem; }
.pv-btn-primary {
    background-color: #901a1e; color: #ffffff !important;
    border: 2px solid #901a1e; box-shadow: 0 4px 12px rgba(144, 26, 30, 0.25);
}
.pv-btn-primary:hover {
    background-color: #b72025; border-color: #b72025;
    transform: translateY(-2px); box-shadow: 0 6px 16px rgba(144, 26, 30, 0.35);
}
.pv-btn-secondary {
    background-color: #ffffff; color: #231f20 !important;
    border: 2px solid #e0ddd5; box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.pv-btn-secondary:hover {
    border-color: #901a1e; color: #901a1e !important; transform: translateY(-2px);
}

/* --- Benefits Section --- */
.pv-dojang-benefits {
    background-color: #ffffff; padding: 100px 20px;
}
.pv-benefits-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.pv-dojang-benefits h2 {
    color: #231f20; font-size: 2.5rem; margin-bottom: 16px;
    font-weight: 800; letter-spacing: -0.5px;
}
.pv-benefits-subtitle { color: #666666; font-size: 1.15rem; margin-bottom: 60px; }
/* --- Benefits Section (Updated Layout) --- */
.pv-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centres odd-numbered cards automatically */
    gap: 40px;
}

.pv-benefit-card {
    flex: 1 1 320px;
    max-width: 500px; /* Prevents cards from stretching too wide on massive screens */
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #f0ede5;
    transition: all 0.3s ease;
    text-align: left;
}

.pv-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #e5e0d3;
}

.pv-benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pv-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #fcf4f4;
    color: #901a1e;
    border-radius: 12px;
    flex-shrink: 0; /* Keeps the icon a perfect square */
}

.pv-benefit-card h3 {
    color: #231f20;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.pv-benefit-card p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Footer Section --- */
.pv-site-footer {
    background-color: #231f20; color: #ffffff;
    padding: 60px 20px; border-top: 4px solid #901a1e;
}
.pv-footer-container {
    max-width: 1200px; margin: 0 auto; display: flex;
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px;
}
.pv-footer-brand p { margin: 0; font-size: 1rem; color: #a0a0a0; }
.pv-footer-brand .pv-footer-credit { font-size: 0.9rem; margin-top: 8px; }
.pv-footer-brand a { color: #ffffff; text-decoration: none; border-bottom: 1px dotted #ffffff; }
.pv-footer-links { display: flex; gap: 24px; }
.pv-footer-links a {
    color: #a0a0a0; text-decoration: none; font-size: 0.95rem; transition: color 0.2s ease;
}
.pv-footer-links a:hover { color: #ffffff; }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .pv-header-container { flex-direction: column; gap: 16px; }
    .pv-main-nav { gap: 16px; }
    .pv-hero-content h1 { font-size: 2.5rem; }
    .pv-hero-actions { flex-direction: column; width: 100%; }
    .pv-btn { width: 100%; }
    .pv-footer-container { flex-direction: column; text-align: center; }
}

/* --- Differentiators Section (Accessible Dark Mode) --- */
.pv-dojang-differentiators {
    background-color: #2a2628; /* Lifted from pitch black to a rich slate */
    color: #ffffff;
    padding: 100px 20px;
    border-top: 4px solid #901a1e;
}

.pv-diff-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pv-dojang-differentiators h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.pv-diff-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pv-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background-color: #363234; /* Elevated contrast against the background */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #4a4547; /* Clearly visible, lighter border */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pv-diff-item:hover {
    transform: translateX(8px);
    border-color: #b72025; /* Bright crimson hover state */
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.pv-diff-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #4a4547; /* Better contrast for the icon wrapper */
    border-radius: 12px;
    color: #f2686c; /* Bright, accessible red for the SVG stroke */
}

.pv-diff-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.pv-diff-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0; /* High contrast body text, significantly lighter than before */
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .pv-diff-item {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .pv-diff-item:hover {
        transform: translateY(-8px);
    }
}

/* --- Parker Veese Corporate Footer --- */
.pv-site-footer {
    background-color: #ffffff;
    color: #333333;
    margin-top: 60px;
    font-family: inherit;
}

.pv-footer-top-border {
    border-top: 1px solid #111827;
    max-width: 1200px;
    margin: 0 auto;
}

.pv-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.pv-footer-product-logo {
    height: 48px;
    margin-bottom: 24px;
    display: block;
}

.pv-footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 380px;
}

.pv-footer-parent-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pv-pv-logo {
    height: 64px;
    width: 64px;
    object-fit: contain;
}

.pv-parent-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #111827;
    line-height: 1.3;
}

.pv-footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e3a8a; /* PV Corporate Blue */
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pv-mt-4 {
    margin-top: 32px !important;
}

.pv-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pv-footer-list li {
    margin-bottom: 12px;
}

.pv-footer-list a {
    color: #1e3a8a; /* PV Corporate Blue */
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.pv-footer-list a:hover {
    color: #172554;
    text-decoration: underline;
}

.pv-social-icons {
    display: flex;
    gap: 12px;
}

.pv-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1e3a8a; /* PV Corporate Blue */
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.pv-social-link:hover {
    background-color: #172554;
}

.pv-footer-bottom-bar {
    background-color: #1e3a8a; /* PV Corporate Blue */
    color: #ffffff;
    text-align: center;
    padding: 24px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pv-footer-bottom-bar p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pv-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}