/* ============================================
   SH Partner Homepage - Frontend Styles
   ============================================ */

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

.shp-body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2D3436;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

p, 
.shp-eval-section-body, 
.shp-resource-desc, 
.shp-modal-body, 
.shp-contact-intro-desc {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
}

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

/* ============================================
   HEADER
   ============================================ */
.shp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shp-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

.shp-header-top {
    background: #1B3A5C;
    padding: 6px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.shp-header.scrolled .shp-header-top {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.shp-header-top-inner {
    display: flex;
    justify-content: flex-end;
}

.shp-contact-bar {
    display: flex;
    gap: 20px;
    align-items: center;
}

.shp-contact-bar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.shp-header-main {
    padding: 16px 0;
    transition: padding 0.3s ease;
}

.shp-header.scrolled .shp-header-main {
    padding: 10px 0;
}

.shp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.shp-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.shp-logo-img {
    max-height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

.shp-header.scrolled .shp-logo-img {
    max-height: 40px;
}

.shp-logo-placeholder {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.shp-logo-text-main {
    font-size: 28px;
    font-weight: 900;
    color: #1B3A5C;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.shp-header:not(.scrolled) .shp-logo-text-main {
    color: #ffffff;
}

.shp-logo-text-sub {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 1px;
}

/* Navigation */
.shp-nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.shp-nav-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.shp-header.scrolled .shp-nav-list a {
    color: #2D3436;
}

.shp-nav-list a:hover,
.shp-nav-list a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.shp-header.scrolled .shp-nav-list a:hover,
.shp-header.scrolled .shp-nav-list a.active {
    color: #1B3A5C;
    background: #F0F4F8;
}

/* Mobile Toggle */
.shp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.shp-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.shp-header.scrolled .shp-mobile-toggle span {
    background: #1B3A5C;
}

/* ============================================
   HERO SECTION
   ============================================ */
.shp-hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d1e30;
}

.shp-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shp-hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.shp-hero-slide-bg.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.shp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 36, 57, 0.9) 0%, rgba(27, 58, 92, 0.75) 50%, rgba(74, 144, 217, 0.45) 100%);
    z-index: 1;
}

.shp-hero-content-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.shp-hero-content-item {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.shp-hero-content-item.active {
    display: block;
    opacity: 1;
}

.shp-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    padding-top: 60px;
}

.shp-hero-left {
    opacity: 0;
    transform: translateY(30px);
}

.shp-hero-content-item.active .shp-hero-left {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.shp-hero-right {
    opacity: 0;
    transform: translateY(30px);
}

.shp-hero-content-item.active .shp-hero-right {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.shp-hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.shp-hero-badge span {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.shp-hero-title {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.shp-hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.shp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slide 1 Graphics Right Grid */
.shp-hero-graphics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.shp-hero-graphic-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.shp-hero-graphic-card:hover {
    transform: translateY(-5px);
}

.shp-hero-graphic-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.shp-graphic-placeholder {
    font-size: 14px;
    font-weight: 700;
    color: #1B3A5C;
    background: #f0f4f8;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

/* Slide 2 Handshake Right */
.shp-hero-main-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.shp-hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.shp-main-img-placeholder {
    background: linear-gradient(135deg, #1B3A5C, #2c5f8a);
    color: #ffffff;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

/* Navigation dots */
.shp-hero-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.shp-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shp-hero-dot.active {
    background: #FFD700;
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Buttons */
.shp-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.shp-btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1B3A5C;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.shp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.shp-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.shp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.shp-btn-dark {
    background: #1B3A5C;
    color: #ffffff;
}

.shp-btn-dark:hover {
    background: #0F2840;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 58, 92, 0.35);
}

.shp-btn-cta {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1B3A5C;
    font-size: 17px;
    padding: 18px 48px;
    border-radius: 14px;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.4);
}

.shp-btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.55);
}

/* Hero Scroll Indicator */
.shp-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.shp-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    margin-top: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.shp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.shp-section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #F0F4F8;
    color: #4A90D9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.shp-tag-light {
    background: rgba(255,255,255,0.15);
    color: #FFD700;
}

.shp-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.shp-title-light {
    color: #ffffff;
}

.shp-section-desc {
    font-size: 17px;
    color: #636E72;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   EVALUATION SECTION
   ============================================ */
.shp-evaluation {
    padding: 120px 0;
    background: #F8FAFB;
}

.shp-eval-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.shp-eval-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.shp-eval-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.shp-eval-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 30px;
    background: #F8FAFB;
}

.shp-eval-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
    padding: 30px;
}

.shp-eval-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid #1B3A5C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.15);
}

.shp-eval-circle::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 3px dashed rgba(27, 58, 92, 0.2);
}

.shp-eval-circle-text {
    font-size: 36px;
    font-weight: 900;
    color: #1B3A5C;
    line-height: 1;
}

.shp-eval-circle-sub {
    font-size: 13px;
    color: #4A90D9;
    font-weight: 600;
    margin-top: 4px;
}

.shp-eval-sa1-placeholder {
    background: linear-gradient(135deg, #FFD700, #FFC107);
}

.shp-sa1-badge {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.5);
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.shp-eval-card:hover .shp-sa1-badge {
    transform: rotate(3deg) scale(1.05);
}

.shp-sa1-badge span {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.shp-eval-score-placeholder {
    background: linear-gradient(135deg, #F0F4F8, #ffffff);
}

.shp-score-meter {
    width: 200px;
}

.shp-score-svg {
    width: 100%;
    height: auto;
}

.shp-eval-info {
    padding: 24px 28px;
}

.shp-eval-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1B3A5C;
    margin-bottom: 8px;
}

.shp-eval-info p {
    font-size: 14px;
    color: #636E72;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.shp-about {
    padding: 120px 0;
    background: #ffffff;
}

.shp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.shp-about-image-wrap {
    position: relative;
}

.shp-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.shp-about-img-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #CBD5E0;
}

.shp-about-placeholder-inner {
    text-align: center;
    color: #A0AEC0;
}

.shp-icon-large {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.shp-about-placeholder-inner p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.shp-about-placeholder-inner small {
    font-size: 12px;
    color: #CBD5E0;
}

.shp-about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid #FFD700;
    z-index: -1;
    opacity: 0.5;
}

.shp-about-content {
    position: relative;
}

.shp-about-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 12px;
    line-height: 1.3;
}

.shp-about-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    margin-bottom: 24px;
}

.shp-about-text {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.9;
    margin-bottom: 20px;
}

.shp-about-text-sub {
    padding: 20px 24px;
    background: #F7FAFC;
    border-left: 4px solid #FFD700;
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px;
}

.shp-about-text-sub p {
    font-size: 15px;
    color: #2D3748;
    line-height: 1.8;
    font-weight: 500;
}

.shp-about-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.shp-stat {
    text-align: center;
}

.shp-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #1B3A5C;
    line-height: 1;
}

.shp-stat-plus {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
}

.shp-stat-label {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-top: 6px;
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.shp-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #1B3A5C, #2C5F8A);
    position: relative;
}

.shp-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255,215,0,0.08) 0%, transparent 60%);
}

.shp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.shp-service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.shp-service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.3);
}

.shp-service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.shp-service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.shp-service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.shp-service-link {
    font-size: 14px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shp-service-link:hover {
    color: #FFA500;
    letter-spacing: 1px;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.shp-partners {
    padding: 50px 0;
    background: #ffffff;
}

.shp-partner-slider-wrap {
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
    padding: 10px 0 20px !important;
    display: block !important;
}

/* 좌우 그라데이션 페이드 효과 */
.shp-partner-slider-wrap::before,
.shp-partner-slider-wrap::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    width: 100px !important;
    height: 100% !important;
    z-index: 2 !important;
    pointer-events: none !important;
}
.shp-partner-slider-wrap::before {
    left: 0 !important;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%) !important;
}
.shp-partner-slider-wrap::after {
    right: 0 !important;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%) !important;
}

.shp-partner-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
    width: max-content !important;
    animation: partnerMarquee 30s linear infinite !important;
}

.shp-partner-track:hover {
    animation-play-state: paused !important;
}

.shp-partner-item {
    flex-shrink: 0 !important;
    width: 180px !important;
    text-align: center !important;
}

.shp-partner-item a {
    text-decoration: none !important;
}

.shp-partner-logo-wrap {
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    padding: 16px !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
}

.shp-partner-logo-wrap:hover {
    border-color: #4A90D9 !important;
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.12) !important;
    transform: translateY(-4px) !important;
}

.shp-partner-logo-img {
    max-width: 100% !important;
    max-height: 50px !important;
    object-fit: contain !important;
    filter: grayscale(30%) !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
}

.shp-partner-logo-wrap:hover .shp-partner-logo-img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.shp-partner-placeholder {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    color: #A0AEC0 !important;
}

.shp-partner-placeholder-icon {
    font-size: 24px !important;
    opacity: 0.5 !important;
}

.shp-partner-placeholder-text {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #A0AEC0 !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

.shp-partner-name {
    font-size: 13px !important;
    color: #4A5568 !important;
    font-weight: 600 !important;
    margin-top: 8px !important;
}

@keyframes partnerMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.shp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F2840, #1B3A5C);
    position: relative;
    overflow: hidden;
}

.shp-cta-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="1"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.5;
}

.shp-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.shp-cta-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.shp-cta-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.8;
}

.shp-cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.shp-cta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.shp-cta-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shp-cta-item small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 2px;
}

.shp-cta-item strong {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.shp-footer {
    background: #ffffff;
    padding: 30px 0;
    color: #333333;
    border-top: 1px solid #e2e8f0;
}

.shp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shp-footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.shp-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

.shp-footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.shp-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.shp-footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-indent: 0 !important;
}

.shp-footer-col ul li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
    text-indent: 0 !important;
}

.shp-footer-col ul a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.shp-footer-col ul a:hover {
    color: #FFD700;
    padding-left: 4px;
}

.shp-footer-contact li {
    font-size: 13px;
}

.shp-footer-bottom {
    padding: 0;
    text-align: center;
}

.shp-footer-bottom p {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shp-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .shp-eval-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .shp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shp-logo-img {
        max-height: 36px !important;
    }

    .shp-logo-text-main {
        font-size: 22px !important;
    }

    .shp-logo-text-sub {
        font-size: 12px !important;
    }

    .shp-mobile-toggle {
        display: flex;
    }

    .shp-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #1B3A5C;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

    .shp-nav.open {
        right: 0;
    }

    .shp-nav-list {
        flex-direction: column;
        gap: 0;
    }

    .shp-nav-list a {
        display: block;
        padding: 14px 16px;
        border-radius: 10px;
        color: rgba(255,255,255,0.85) !important;
        font-size: 16px;
    }

    .shp-nav-list a:hover,
    .shp-nav-list a.active {
        background: rgba(255,255,255,0.1) !important;
        color: #FFD700 !important;
    }

    .shp-contact-bar {
        display: none;
    }

    .shp-hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 140px !important;
        padding-bottom: 80px !important;
        display: block !important;
    }

    .shp-hero-content-slider {
        position: relative !important;
        height: auto !important;
        display: block !important;
    }

    .shp-hero-content-item {
        position: relative !important;
        height: auto !important;
        width: 100% !important;
    }

    .shp-hero-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
        padding-top: 0 !important;
    }

    .shp-hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shp-hero-title {
        font-size: clamp(24px, 5.5vw, 32px) !important;
        margin-bottom: 16px;
        line-height: 1.4 !important;
        word-break: keep-all;
    }

    .shp-hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 24px;
        max-width: 100%;
        line-height: 1.6 !important;
        word-break: keep-all;
    }

    .shp-hero-actions {
        justify-content: center;
        width: 100%;
    }

    .shp-hero-graphics-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        max-width: 100% !important;
        margin: 20px auto 0 !important;
    }

    .shp-hero-graphic-card {
        min-height: auto !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .shp-hero-graphic-img {
        max-width: 85% !important;
        max-height: 85% !important;
        object-fit: contain !important;
    }

    .shp-hero-main-img-wrap {
        max-width: 450px;
        margin: 0 auto;
    }

    .shp-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shp-about-accent {
        display: none;
    }

    .shp-eval-grid {
        grid-template-columns: 1fr;
    }

    .shp-services-grid {
        grid-template-columns: 1fr;
    }

    .shp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shp-about-stats {
        gap: 20px;
    }

    .shp-cta-contact {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .shp-hero-actions {
        flex-direction: column;
    }

    .shp-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */

/* Page Hero (shared across subpages) */
.shp-page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #1B3A5C 0%, #2C5F8A 100%);
    position: relative;
    overflow: hidden;
    text-align: center !important;
}

.shp-page-hero-content {
    position: relative;
    z-index: 2;
}

.shp-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
}

.shp-page-hero-badge {
    display: inline-block !important;
    background: rgba(255, 215, 0, 0.12) !important;
    border: 1px solid rgba(255, 215, 0, 0.25) !important;
    padding: 6px 20px !important;
    border-radius: 30px !important;
    margin-bottom: 24px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.shp-page-hero-badge span {
    color: #FFD700 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.shp-page-hero-title {
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.5px !important;
    text-align: center !important;
}

.shp-page-hero-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.shp-page-hero-breadcrumb {
    margin-top: 28px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.shp-page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color 0.2s !important;
}

.shp-page-hero-breadcrumb a:hover {
    color: #FFD700 !important;
}

.shp-page-hero-breadcrumb span.shp-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 12px !important;
}

.shp-page-hero-breadcrumb span.shp-breadcrumb-current {
    color: #FFD700 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* ---- EVALUATION PAGE ---- */
.shp-overview { padding: 100px 0; background: #ffffff; }

.shp-overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shp-overview-content p {
    font-size: 17px;
    line-height: 2;
    color: #4A5568;
}

.shp-process { padding: 100px 0; background: #F8FAFB; }

.shp-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.shp-process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.3s ease;
    counter-increment: step;
}

.shp-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.shp-step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1B3A5C, #2C5F8A);
    color: #FFD700;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.shp-process-step h3 { font-size: 17px; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.shp-process-step p { font-size: 13px; color: #718096; line-height: 1.6; }

.shp-eval-types { padding: 100px 0; background: #ffffff; }

.shp-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.shp-type-card {
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shp-type-card:hover {
    border-color: #4A90D9;
    box-shadow: 0 12px 40px rgba(74,144,217,0.12);
}

.shp-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.shp-type-sh::before { background: linear-gradient(90deg, #1B3A5C, #4A90D9); }
.shp-type-sa::before { background: linear-gradient(90deg, #FFD700, #FFA500); }

.shp-type-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

.shp-type-sh .shp-type-badge { background: #F0F4F8; color: #1B3A5C; }
.shp-type-sa .shp-type-badge { background: #FFF8E1; color: #E65100; }

.shp-type-card h3 { font-size: 22px; font-weight: 700; color: #1B3A5C; margin-bottom: 12px; }
.shp-type-card p { font-size: 15px; color: #4A5568; line-height: 1.8; }

.shp-benefits { padding: 100px 0; background: linear-gradient(135deg, #1B3A5C, #2C5F8A); }

.shp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shp-benefit-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.shp-benefit-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.shp-benefit-icon { font-size: 40px; margin-bottom: 16px; }
.shp-benefit-card h3 { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; }
.shp-benefit-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ---- RESOURCES PAGE ---- */
.shp-resources { padding: 80px 0 100px; background: #F8FAFB; }

.shp-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.shp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #E2E8F0;
    border-radius: 30px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shp-filter-btn:hover, .shp-filter-btn.active {
    background: #1B3A5C;
    color: #ffffff;
    border-color: #1B3A5C;
}

.shp-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shp-resource-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.shp-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.shp-resource-icon { font-size: 36px; margin-bottom: 16px; }

.shp-resource-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.shp-cat-law { background: #E3F2FD; color: #1565C0; }
.shp-cat-form { background: #FFF3E0; color: #E65100; }
.shp-cat-safety { background: #E8F5E9; color: #2E7D32; }

.shp-resource-card h3 { font-size: 17px; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.shp-resource-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.8em;
}

.shp-resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F0F4F8;
    padding-top: 16px;
}

.shp-resource-date { font-size: 12px; color: #A0AEC0; }

.shp-resource-link {
    font-size: 13px;
    color: #4A90D9;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.shp-resource-link:hover { color: #1B3A5C; }

.shp-resource-notice {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed #CBD5E0;
}

.shp-resource-notice p { font-size: 16px; color: #718096; margin-bottom: 16px; }

/* ---- CONTACT PAGE ---- */
.shp-contact-section { padding: 80px 0 100px; background: #F8FAFB; }

.shp-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.shp-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.shp-form-card h2 { font-size: 24px; font-weight: 700; color: #1B3A5C; margin-bottom: 8px; }
.shp-form-card > p { font-size: 14px; color: #718096; margin-bottom: 32px; }

.shp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shp-form-group { margin-bottom: 20px; }

.shp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2D3436;
    margin-bottom: 6px;
}

.shp-form-group label .required { color: #E53E3E; margin-left: 2px; }

.shp-form-input,
.shp-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #2D3436;
    background: #F7FAFC;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.shp-form-input:focus,
.shp-form-textarea:focus {
    outline: none;
    border-color: #4A90D9;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
}

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

.shp-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1B3A5C, #2C5F8A);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.shp-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27,58,92,0.35);
}

.shp-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.shp-form-message {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    display: none;
}

.shp-form-message.success {
    display: block;
    background: #F0FFF4;
    color: #22543D;
    border: 1px solid #C6F6D5;
}

.shp-form-message.error {
    display: block;
    background: #FFF5F5;
    color: #742A2A;
    border: 1px solid #FED7D7;
}

.shp-contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

.shp-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.shp-info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.shp-info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F0F4F8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.shp-info-card small { font-size: 12px; color: #A0AEC0; display: block; margin-bottom: 2px; }
.shp-info-card strong { font-size: 15px; color: #1B3A5C; font-weight: 700; }

/* ---- SUBPAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
    .shp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .shp-resource-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .shp-page-hero { padding: 140px 0 60px; }
    .shp-types-grid { grid-template-columns: 1fr; }
    .shp-benefits-grid { grid-template-columns: 1fr; }
    .shp-resource-grid { grid-template-columns: 1fr; }
    .shp-contact-grid { grid-template-columns: 1fr; }
    .shp-form-row { grid-template-columns: 1fr; }
    .shp-form-card { padding: 32px 24px; }
}

/* ==========================================================================
   SH PARTNER HOMEPAGE RESTYLE ADDITIONS (v1.0.2)
   ========================================================================== */

/* 1. Header Logo (SH/SA Partner Stacked Text Logo) */
.shp-logo-placeholder {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.shp-logo-stacked {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    border-right: 2px solid #e2e8f0;
    padding-right: 8px;
}

.shp-logo-text-sh, 
.shp-logo-text-sa {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff; /* Default transparent header text color */
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    transition: color 0.3s;
}

.shp-logo-text-sh-sub,
.shp-logo-text-sa-sub {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0;
    transition: color 0.3s;
}

.shp-logo-text-partner {
    font-size: 22px;
    font-weight: 900;
    color: #FFD700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Scrolled Header styles */
.shp-header.scrolled .shp-logo-text-sh,
.shp-header.scrolled .shp-logo-text-sa {
    color: #1B3A5C;
}

.shp-header.scrolled .shp-logo-text-sh-sub,
.shp-header.scrolled .shp-logo-text-sa-sub {
    color: #718096;
}

.shp-header.scrolled .shp-logo-stacked {
    border-color: #cbd5e0;
}

/* 2. Main Page Quick Links Section */
.shp-quick-links {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -50px; /* Pull it up into the hero */
}

.shp-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shp-quick-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shp-quick-card:not(.shp-quick-contact):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 58, 92, 0.2);
    border-color: #1B3A5C;
}

.shp-quick-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.08) 0%, rgba(74, 144, 217, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.shp-quick-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.shp-quick-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1b3a5c;
    margin: 0;
}

.shp-quick-info p {
    font-size: 13px;
    color: #718096;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shp-quick-contact {
    background: linear-gradient(135deg, #1B3A5C 0%, #2a5280 100%);
    border: none;
}

.shp-quick-contact .shp-quick-icon {
    background: rgba(255, 255, 255, 0.15);
}

.shp-quick-contact .shp-quick-info h3 {
    color: #ffffff;
}

.shp-quick-contact .shp-quick-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* 3. Evaluation Page Sticky Navigation */
.shp-eval-nav-wrap {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 100;
    transition: all 0.3s ease;
}

.shp-eval-nav-wrap.sticky-nav {
    position: fixed;
    top: 80px; /* Matches header-main height */
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shp-eval-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.shp-eval-nav::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.shp-eval-nav-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.shp-eval-nav-btn:hover {
    color: #1B3A5C;
    border-color: #1B3A5C;
    background: rgba(27, 58, 92, 0.03);
}

.shp-eval-nav-btn.active {
    color: #ffffff;
    background: #1B3A5C;
    border-color: #1B3A5C;
    box-shadow: 0 4px 10px rgba(27, 58, 92, 0.2);
}

/* 4. Responsive Quick Links and Stacked Logo */
@media (max-width: 1024px) {
    .shp-quick-links {
        margin-top: 30px;
        padding: 0 20px;
    }
    .shp-quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .shp-logo-stacked {
        border-right: none;
        padding-right: 0;
    }
    .shp-logo-text-sh-sub,
    .shp-logo-text-sa-sub {
        display: none; /* Hide sub-labels on small mobile to save space */
    }
    .shp-logo-placeholder {
        gap: 4px !important;
    }
    .shp-quick-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .shp-quick-card {
        padding: 18px;
    }
    .shp-eval-nav-wrap.sticky-nav {
        top: 60px; /* Header-main is shorter on mobile */
    }
    .shp-eval-nav {
        justify-content: flex-start;
        padding: 10px 15px;
    }
}

/* 5. Main Page Services Restructuring (v1.0.2 - Intro & 2x2 Grid) */
.shp-services-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.shp-services-intro {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(27, 58, 92, 0.05);
    border-left: 5px solid #1B3A5C;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.shp-services-intro-title {
    font-size: 32px;
    font-weight: 800;
    color: #1B3A5C;
    margin: 12px 0 24px;
    letter-spacing: -0.5px;
}

.shp-services-intro-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.shp-services-intro-text p:last-child {
    margin-bottom: 0;
}

.shp-services-intro-text .shp-highlight-text {
    font-weight: 700;
    color: #1B3A5C;
    border-top: 1px dashed #cbd5e0;
    padding-top: 16px;
    margin-top: 20px;
}

.shp-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.shp-services-list .shp-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.shp-services-list .shp-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(27, 58, 92, 0.12);
    border-color: #1B3A5C;
}

.shp-services-list .shp-service-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.shp-services-list .shp-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A5C;
    margin: 0 0 12px;
}

.shp-services-list .shp-service-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin: 0 0 20px;
}

.shp-services-list .shp-service-link {
    font-size: 14px;
    font-weight: 600;
    color: #1B3A5C;
    text-decoration: none;
    transition: color 0.2s;
}

.shp-services-list .shp-service-link:hover {
    color: #4A90D9;
}

@media (max-width: 1024px) {
    .shp-services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .shp-services-intro {
        padding: 30px 20px;
    }
    .shp-services-intro-title {
        font-size: 26px;
    }
    .shp-services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   GENERATEPRESS STYLE HOME PAGE REDESIGN
   ========================================================================== */

/* 1. GP Style Light Hero Section */
.shp-hero-gp {
    background: #ffffff;
    padding: 180px 0 30px;
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.shp-hero-gp-slides {
    width: 100%;
}

.shp-hero-gp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.shp-hero-gp-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shp-hero-gp-welcome {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.shp-hero-gp-title {
    font-size: 48px;
    font-weight: 800;
    color: #1B3A5C;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.shp-hero-gp-subtitle {
    font-size: 21px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 36px 0;
}

.shp-hero-gp-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.shp-btn-gp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.shp-btn-gp-primary {
    background: #1B3A5C;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(27, 58, 92, 0.25);
}

.shp-btn-gp-primary:hover {
    background: #2a5280;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 92, 0.35);
    color: #ffffff;
}

.shp-btn-gp-outline {
    background: transparent;
    color: #1B3A5C;
    border: 2px solid #1B3A5C;
}

.shp-btn-gp-outline:hover {
    background: #1B3A5C;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 92, 0.15);
}

.shp-hero-gp-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shp-hero-gp-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    animation: gpFloat 6s ease-in-out infinite;
}

@keyframes gpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 2. GP Style 3-Column Features Section */
.shp-features-gp {
    background: #f8f9fb;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
}

.shp-features-gp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.shp-feature-gp-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    transition: all 0.3s ease;
}

.shp-feature-gp-icon {
    font-size: 28px;
    color: #1B3A5C;
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 58, 92, 0.08);
}

.shp-feature-gp-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1B3A5C;
    margin: 0 0 12px 0;
}

.shp-feature-gp-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

/* 3. GP Style Responsive */
@media (max-width: 1024px) {
    .shp-hero-gp-layout {
        gap: 40px;
    }
    .shp-hero-gp-title {
        font-size: 38px;
    }
    .shp-hero-gp-subtitle {
        font-size: 18px;
    }
    .shp-features-gp-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .shp-hero-gp {
        padding: 140px 0 160px;
    }
    .shp-features-gp {
        padding-top: 15px;
        padding-bottom: 30px;
    }
    .shp-hero-gp-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .shp-hero-gp-left {
        align-items: center;
    }
    .shp-hero-gp-subtitle {
        margin-bottom: 28px;
    }
    .shp-hero-gp-actions {
        justify-content: center;
        width: 100%;
    }
    .shp-btn-gp {
        width: 100%;
        max-width: 300px;
    }
    .shp-features-gp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .shp-feature-gp-card {
        align-items: center;
        text-align: center;
    }
}

/* 4. GP Style Hero dots color adjustments */
.shp-hero-gp .shp-hero-dot {
    background: rgba(27, 58, 92, 0.2) !important;
}

.shp-hero-gp .shp-hero-dot.active {
    background: #1B3A5C !important;
    box-shadow: 0 0 10px rgba(27, 58, 92, 0.3) !important;
}

/* 5. Logo Restyling as per user capture */
.shp-logo-placeholder {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    border-right: none !important;
}

.shp-logo-line-1,
.shp-logo-line-2 {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.shp-logo-text-sh {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #72B02E !important; /* Green/Lime */
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.shp-logo-text-sh-sub {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: #85C441 !important; /* Lighter Lime */
    letter-spacing: 0;
}

.shp-logo-text-partner {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #2B542C !important; /* Dark Green */
    letter-spacing: 0.5px;
    margin-left: 5px !important;
    text-transform: none !important;
}

.shp-logo-text-sa {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #337ab7 !important; /* Blue */
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.shp-logo-text-sa-sub {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: #52A7E7 !important; /* Lighter Blue */
    letter-spacing: 0;
}

.shp-header.scrolled .shp-logo-text-sh {
    color: #72B02E !important;
}
.shp-header.scrolled .shp-logo-text-sh-sub {
    color: #85C441 !important;
}
.shp-header.scrolled .shp-logo-text-partner {
    color: #2B542C !important;
}
.shp-header.scrolled .shp-logo-text-sa {
    color: #337ab7 !important;
}
.shp-header.scrolled .shp-logo-text-sa-sub {
    color: #52A7E7 !important;
}

/* 6. Header menu visibility fixes (Always show light header background) */
.shp-header {
    background: #ffffff !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.shp-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
}

.shp-nav-list a {
    color: #2D3436 !important;
}

.shp-nav-list a:hover,
.shp-nav-list a.active {
    color: #1B3A5C !important;
    background: #F0F4F8 !important;
}

.shp-mobile-toggle span {
    background: #1B3A5C !important;
}

/* ==========================================================================
   7. Mobile Off-Canvas Menu Styling & Visibility Fixes (Responsive below 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1) Drawer Background & Position */
    .shp-nav {
        background: #1B3A5C !important; /* Rich deep navy base */
        box-shadow: -5px 0 35px rgba(15, 32, 56, 0.3) !important;
        padding: 90px 24px 30px !important;
        z-index: 1001 !important; /* Stay above the white header background */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    /* 2) Toggle Button Stacking & Layering */
    .shp-mobile-toggle {
        z-index: 1002 !important; /* Stack higher than the sliding drawer */
        background: rgba(27, 58, 92, 0.04) !important;
        border-radius: 50% !important;
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }

    .shp-mobile-toggle span {
        background: #1B3A5C !important; /* Dark blue when header is white */
        width: 20px !important;
        height: 2px !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    /* 3) Navigation Links Appearance */
    .shp-nav .shp-nav-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .shp-nav .shp-nav-list li {
        width: 100% !important;
    }

    .shp-nav .shp-nav-list a {
        color: rgba(255, 255, 255, 0.85) !important; /* Crisp semi-translucent white text */
        background: transparent !important;
        display: block !important;
        padding: 15px 20px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        letter-spacing: -0.3px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 0 !important;
        transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    /* 4) Hover & Active States */
    .shp-nav .shp-nav-list a:hover,
    .shp-nav .shp-nav-list a.active {
        color: #FFD700 !important; /* Elegant gold accent */
        background: rgba(255, 255, 255, 0.06) !important;
        border-bottom-color: rgba(255, 255, 255, 0.15) !important;
        padding-left: 26px !important; /* Smooth micro-animation sliding effect */
    }

    /* 5) Active Hamburger-to-X Icon Transformation */
    .shp-mobile-toggle.active {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .shp-mobile-toggle.active span {
        background: #ffffff !important; /* Turns white as drawer background is dark blue */
    }

    .shp-mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .shp-mobile-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .shp-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }
}

/* ==========================================================================
   8. FAQ Accordion & Resource Modal Styling
   ========================================================================== */
.shp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.shp-faq-item {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.shp-faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.shp-faq-item.active {
    border-color: #1b3a5c;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(27, 58, 92, 0.05);
}
.shp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1B3A5C;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    gap: 12px;
}
.shp-faq-q-badge {
    background: #1b3a5c;
    color: #ffffff;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.shp-faq-item.active .shp-faq-q-badge {
    background: #ffd700;
    color: #1b3a5c;
}
.shp-faq-q-text {
    flex: 1;
    line-height: 1.4;
}
.shp-faq-arrow {
    font-size: 12px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}
.shp-faq-item.active .shp-faq-arrow {
    transform: rotate(180deg);
    color: #1b3a5c;
}
.shp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
}
.shp-faq-item.active .shp-faq-answer {
    border-top-color: #f1f5f9;
}
.shp-faq-answer-inner {
    padding: 24px 24px 28px 60px;
    font-size: 15px;
    line-height: 1.75;
    color: #4A5568;
    word-break: keep-all;
}

/* Resource Detail Modal */
.shp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.shp-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.shp-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.shp-modal-overlay.open .shp-modal-container {
    transform: scale(1);
}
.shp-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 300;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}
.shp-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.shp-modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: #fcfcfd;
}
.shp-modal-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}
.shp-modal-date {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}
.shp-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-top: 12px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    padding-right: 40px;
}
.shp-modal-body {
    padding: 32px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    flex: 1;
    word-break: keep-all;
}
.shp-modal-body p {
    margin-bottom: 16px;
}
.shp-modal-body p:last-child {
    margin-bottom: 0;
}
.shp-modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
    display: flex;
    justify-content: flex-end;
}
.shp-modal-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1b3a5c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(27, 58, 92, 0.15);
    transition: all 0.25s ease;
}
.shp-modal-download-btn:hover {
    background: #122840;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 58, 92, 0.25);
}

/* Mobile Off-Canvas Text Overrides */
@media (max-width: 768px) {
    .shp-nav .shp-nav-list a {
        color: #ffffff !important;
    }
    .shp-nav .shp-nav-list a:hover,
    .shp-nav .shp-nav-list a.active {
        color: #FFD700 !important;
        background: rgba(255, 255, 255, 0.06) !important;
    }
}




