/* ============================================
   PATHLIGHT GLOBAL LIMITED — STYLESHEET
   Design System: Eastern Minimalism
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --pg-primary: #FF3151;
    --pg-primary-dark: #E63946;
    --pg-dark: #1A1A1A;
    --pg-secondary: #2C2C2C;
    --pg-muted: #6B7280;

    /* Backgrounds */
    --pg-bg-canvas: #FFFFFF;
    --pg-bg-surface: #F9F9F9;
    --pg-bg-dark: #0A0A0A;

    /* Typography */
    --pg-font-heading: 'Playfair Display', serif;
    --pg-font-subheading: 'Montserrat', sans-serif;
    --pg-font-body: 'Inter', sans-serif;
    --pg-font-chinese: 'Noto Sans TC', sans-serif;

    /* Spacing */
    --pg-container-max: 1400px;
    --pg-header-height: 90px;
    --pg-section-padding: 120px 0;

    /* Transitions */
    --pg-transition-fast: 0.3s ease;
    --pg-transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. FONT FACE DECLARATIONS
   ============================================ */
@font-face {
    font-family: 'Playfair Display';
    src: url('PlayfairDisplay.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Kopile.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'), local('Inter-Regular');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    src: local('Noto Sans TC'), local('NotoSansTC-Regular');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   3. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--pg-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--pg-secondary);
    background-color: var(--pg-bg-canvas);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--pg-transition-fast);
}

ul {
    list-style: none;
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--pg-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pg-dark);
}

h1 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
}

h2 {
    font-size: clamp(36px, 4vw, 56px);
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
}

p {
    margin-bottom: 1.5rem;
}

/* Section Labels */
.pg-section-label {
    display: inline-block;
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pg-primary);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 2px solid var(--pg-primary);
    border-radius: 30px;
}

/* Section Title */
.pg-section-title {
    font-family: var(--pg-font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--pg-dark);
    margin-bottom: 32px;
}

.pg-section-title span {
    color: var(--pg-primary);
    font-style: italic;
}

/* ============================================
   5. DECORATIVE ELEMENTS (SVG)
   ============================================ */
.pg-brush-stroke {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.pg-branch {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
}

.pg-seal {
    width: 40px;
    height: 40px;
    background-color: var(--pg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--pg-font-subheading);
    font-weight: 700;
    font-size: 21px;
}

/* ============================================
   6. BUTTONS
   ============================================ */
.pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--pg-transition-fast);
    border: none;
}

.pg-btn--primary {
    background-color: var(--pg-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 49, 81, 0.3);
}

.pg-btn--primary:hover {
    background-color: var(--pg-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 49, 81, 0.4);
}

.pg-btn--outline {
    background-color: transparent;
    color: var(--pg-dark);
    border: 2px solid var(--pg-dark);
}

.pg-btn--outline:hover {
    background-color: var(--pg-dark);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   7. CONTAINERS
   ============================================ */
.pg-container {
    max-width: var(--pg-container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   8. HEADER
   ============================================ */
.pg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--pg-header-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.pg-header-container {
    max-width: var(--pg-container-max);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pg-logo-link {
    flex-shrink: 0;
}

.pg-logo {
    height: 50px;
    width: auto;
}

.pg-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pg-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pg-nav-link {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 27px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pg-dark);
    position: relative;
    padding: 8px 0;
}

.pg-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pg-primary);
    transition: width var(--pg-transition-fast);
}

.pg-nav-link:hover {
    color: var(--pg-primary);
}

.pg-nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.pg-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pg-lang-btn {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 18px;
    color: var(--pg-muted);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all var(--pg-transition-fast);
}

.pg-lang-btn:hover {
    color: var(--pg-primary);
}

.pg-lang-btn--active {
    color: var(--pg-dark);
    background-color: var(--pg-bg-surface);
}

.pg-lang-divider {
    color: var(--pg-muted);
    font-size: 13px;
}

/* Header CTA */
.pg-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    background-color: var(--pg-primary);
    padding: 12px 24px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--pg-transition-fast);
    border: none;
    flex-shrink: 0;
}

.pg-header-cta:hover {
    background-color: var(--pg-primary-dark);
    transform: translateY(-2px);
}

.pg-header-cta i {
    font-size: 14px;
    transition: transform var(--pg-transition-fast);
}

.pg-header-cta:hover i {
    transform: translateX(3px);
}

/* Burger Menu */
.pg-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.pg-burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--pg-dark);
    transition: all var(--pg-transition-fast);
}

/* ============================================
   9. HERO SECTION
   ============================================ */
.pg-hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--pg-header-height);
    background-color: var(--pg-bg-canvas);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Decorative Elements */
.pg-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-1 {
    position: absolute;
    top: 100px;
    right: 10%;
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, var(--pg-primary) 0%, transparent 100%);
    opacity: 0.15;
    border-radius: 50% 30% 70% 40% / 40% 60% 30% 70%;
    transform: rotate(15deg);
}

.pg-brush-2 {
    position: absolute;
    bottom: 200px;
    left: 5%;
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, var(--pg-primary) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
    transform: rotate(-25deg);
}

.pg-branch-decoration {
    position: absolute;
    bottom: 100px;
    right: 5%;
    width: 150px;
    height: 200px;
    opacity: 0.3;
}

.pg-hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--pg-container-max);
    margin: 0 auto;
    padding: 80px 40px 60px;
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content */
.pg-hero-content {
    max-width: 700px;
}

.pg-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pg-primary);
    margin-bottom: 32px;
}

.pg-hero-label::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: var(--pg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.pg-hero-title {
    font-family: var(--pg-font-heading);
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 900;
    line-height: 1;
    color: var(--pg-dark);
    margin-bottom: 32px;
}

.pg-hero-title span {
    display: block;
    color: var(--pg-primary);
}

.pg-hero-subtitle {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--pg-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.pg-hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.pg-hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pg-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-stat-number {
    font-family: var(--pg-font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--pg-primary);
    line-height: 1;
}

.pg-stat-label {
    font-family: var(--pg-font-subheading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pg-muted);
}

/* Hero Visual */
.pg-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pg-hero-image-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pg-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--pg-transition-smooth);
}

.pg-hero-image-frame:hover .pg-hero-image {
    transform: scale(1.05);
}

.pg-hero-accent-frame {
    position: absolute;
    width: 95%;
    height: 95%;
    top: 20px;
    left: 20px;
    border: 3px solid var(--pg-primary);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.6;
}

/* Hero Bottom Bar */
.pg-hero-bottom-bar {
    position: relative;
    z-index: 2;
    background-color: var(--pg-dark);
    padding: 24px 40px;
}

.pg-bottom-bar-content {
    max-width: var(--pg-container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.pg-bottom-bar-label {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pg-primary);
}

.pg-bottom-bar-email {
    font-family: var(--pg-font-body);
    font-weight: 500;
    font-size: 15px;
    color: white;
    transition: color var(--pg-transition-fast);
}

.pg-bottom-bar-email:hover {
    color: var(--pg-primary);
}

.pg-bottom-bar-location {
    font-family: var(--pg-font-subheading);
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* ============================================
   10. RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --pg-header-height: 80px;
    }

    .pg-header-container {
        padding: 0 24px;
        gap: 24px;
    }

    .pg-nav-list {
        gap: 20px;
    }

    .pg-nav-link {
        font-size: 12px;
    }

    .pg-hero-container {
        padding: 60px 24px 40px;
        gap: 60px;
        grid-template-columns: 1fr;
    }

    .pg-hero-title {
        font-size: clamp(48px, 6vw, 72px);
    }

    .pg-hero-subtitle {
        font-size: 16px;
    }

    .pg-hero-stats {
        gap: 32px;
    }

    .pg-stat-number {
        font-size: 40px;
    }

    .pg-hero-image-frame {
        max-width: 450px;
    }
}

/* ============================================
   11. RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --pg-header-height: 70px;
    }

    .pg-header-container {
        padding: 0 20px;
    }

    .pg-nav {
        position: fixed;
        top: var(--pg-header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--pg-header-height));
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transform: translateX(100%);
        transition: transform var(--pg-transition-smooth);
    }

    .pg-nav--open {
        transform: translateX(0);
    }

    .pg-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .pg-nav-link {
        font-size: 16px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .pg-burger {
        display: flex;
    }

    .pg-burger--active .pg-burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .pg-burger--active .pg-burger-line:nth-child(2) {
        opacity: 0;
    }

    .pg-burger--active .pg-burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .pg-header-cta span {
        display: none;
    }

    .pg-header-cta {
        padding: 12px 16px;
    }

    .pg-hero-container {
        padding: 40px 20px 30px;
        gap: 40px;
    }

    .pg-hero-title {
        font-size: clamp(40px, 12vw, 64px);
    }

    .pg-hero-subtitle {
        font-size: 15px;
    }

    .pg-hero-cta-group {
        flex-direction: column;
    }

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

    .pg-hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .pg-stat-number {
        font-size: 36px;
    }

    .pg-hero-image-frame {
        max-width: 350px;
        aspect-ratio: 3 / 4;
    }

    .pg-hero-accent-frame {
        width: 90%;
        height: 90%;
        top: 15px;
        left: 15px;
    }

    .pg-hero-bottom-bar {
        padding: 20px;
    }

    .pg-bottom-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}




/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.pg-solutions {
    position: relative;
    padding: var(--pg-section-padding);
    background-color: var(--pg-bg-canvas);
    overflow: hidden;
}

.pg-solutions-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-solutions-1 {
    position: absolute;
    top: 150px;
    right: 5%;
    width: 400px;
    height: 200px;
    opacity: 0.15;
}

.pg-branch-solutions {
    position: absolute;
    bottom: 200px;
    left: 3%;
    width: 150px;
    height: 250px;
    opacity: 0.3;
}

.pg-solutions-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.pg-section-label-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pg-section-label-wrapper .pg-seal {
    width: 50px;
    height: 50px;
    font-size: 23px;
    font-weight: 700;
}

.pg-section-label {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 25px;
    letter-spacing: 3px;
}

.pg-solutions-intro {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--pg-muted);
    margin-top: 24px;
}

/* Solutions Grid */
.pg-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.pg-solution-card {
    position: relative;
    background-color: var(--pg-bg-canvas);
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--pg-transition-smooth);
    overflow: hidden;
}

.pg-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--pg-transition-smooth);
}

.pg-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 49, 81, 0.12);
    border-color: rgba(255, 49, 81, 0.2);
}

.pg-solution-card:hover::before {
    transform: scaleX(1);
}

.pg-solution-number {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.3;
}

.pg-solution-content {
    position: relative;
    z-index: 2;
}

.pg-solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all var(--pg-transition-fast);
}

.pg-solution-icon i {
    font-size: 28px;
    color: white;
}

.pg-solution-card:hover .pg-solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 49, 81, 0.3);
}

.pg-solution-title {
    font-family: var(--pg-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--pg-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.pg-solution-desc {
    font-family: var(--pg-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin-bottom: 24px;
}

.pg-solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-solution-features li {
    font-family: var(--pg-font-body);
    font-size: 14px;
    color: var(--pg-secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pg-solution-features li:last-child {
    border-bottom: none;
}

.pg-solution-features li i {
    color: var(--pg-primary);
    font-size: 12px;
    width: 16px;
}

.pg-solution-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--pg-primary) 0%, transparent 100%);
    opacity: 0.05;
    border-radius: 50%;
    transition: all var(--pg-transition-smooth);
}

.pg-solution-card:hover .pg-solution-accent {
    opacity: 0.1;
    transform: scale(1.2);
}

/* Solutions CTA */
.pg-solutions-cta {
    position: relative;
    padding: 80px 60px;
    background-color: var(--pg-dark);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: url('images/bgwe.jpg');
    background-size: cover;
    background-position: center;
}

.pg-solutions-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pg-primary) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
}

.pg-cta-box {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: #000000ab;
    padding: 10px;
}

.pg-cta-label {
    display: inline-block;
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 23px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pg-primary);
    margin-bottom: 0;
}

.pg-cta-box h3 {
    font-family: var(--pg-font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
}

.pg-cta-box .pg-btn {
    font-size: 24px;
    padding: 9px 30px 2px;
}

/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .pg-solutions-header {
        margin-bottom: 60px;
    }

    .pg-solutions-cta {
        padding: 60px 40px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .pg-solutions {
        padding: 80px 0;
    }

    .pg-solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pg-solution-card {
        padding: 32px 24px;
    }

    .pg-solution-number {
        top: 20px;
        right: 20px;
    }

    .pg-solution-icon {
        width: 60px;
        height: 60px;
    }

    .pg-solution-icon i {
        font-size: 24px;
    }

    .pg-solution-title {
        font-size: 22px;
    }

    .pg-solutions-cta {
        padding: 50px 24px;
    }

    .pg-cta-box h3 {
        font-size: 28px;
    }

    .pg-cta-box .pg-btn {
        width: 100%;
        padding: 16px 32px;
    }
}




/* ============================================
   GLOBAL REACH SECTION
   ============================================ */
.pg-global-reach {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--pg-bg-dark);
}

.pg-global-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pg-global-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.pg-global-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(26, 26, 26, 0.7) 50%,
            rgba(10, 10, 10, 0.9) 100%);
}

.pg-global-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.pg-brush-global-top {
    position: absolute;
    top: 60px;
    left: 5%;
    width: 600px;
    height: 120px;
    opacity: 0.9;
}

.pg-branch-global {
    position: absolute;
    top: 100px;
    right: 5%;
    width: 250px;
    height: 350px;
    opacity: 0.5;
}

.pg-seal-global {
    position: absolute;
    top: 80px;
    right: 8%;
    width: 60px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
}

.pg-global-container {
    position: relative;
    z-index: 3;
    max-width: var(--pg-container-max);
    margin: 0 auto;
    padding: 120px 40px;
    width: 100%;
}

.pg-global-content {
    max-width: 900px;
}

.pg-global-label {
    margin-bottom: 32px;
}

.pg-global-title {
    font-family: var(--pg-font-heading);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 32px;
}

.pg-global-title span {
    display: block;
    color: var(--pg-primary);
    font-style: italic;
}

.pg-global-subtitle {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 700px;
}

/* Markets Grid */
.pg-markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pg-market-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all var(--pg-transition-fast);
}

.pg-market-item:hover {
    background-color: rgba(255, 49, 81, 0.1);
    border-color: var(--pg-primary);
    transform: translateX(8px);
}

.pg-market-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pg-market-icon i {
    font-size: 24px;
    color: white;
}

.pg-market-info {
    flex: 1;
}

.pg-market-name {
    font-family: var(--pg-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.pg-market-desc {
    font-family: var(--pg-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Stats Row */
.pg-global-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pg-stat-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-stat-number {
    font-family: var(--pg-font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--pg-primary);
    line-height: 1;
}

.pg-stat-label {
    font-family: var(--pg-font-subheading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

/* ============================================
   GOODS SECTION
   ============================================ */
.pg-goods {
    position: relative;
    padding: var(--pg-section-padding);
    background-color: var(--pg-bg-canvas);
    overflow: hidden;
}

.pg-goods-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-goods {
    position: absolute;
    top: 100px;
    left: 10%;
    width: 500px;
    height: 100px;
    opacity: 0.8;
}

.pg-branch-goods {
    position: absolute;
    bottom: 150px;
    right: 5%;
    width: 180px;
    height: 280px;
    opacity: 0.4;
}

.pg-seal-goods {
    position: absolute;
    top: 120px;
    right: 8%;
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.pg-goods-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pg-goods-intro {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--pg-muted);
    margin-top: 24px;
}

/* Goods Horizontal Blocks */
.pg-goods-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.pg-good-block {
    position: relative;
    display: flex;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--pg-transition-smooth);
    overflow: hidden;
}

.pg-good-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 49, 81, 0.05) 0%,
            rgba(255, 49, 81, 0.02) 50%,
            transparent 100%);
    transition: width var(--pg-transition-smooth);
}

.pg-good-block:hover::before {
    width: 100%;
}

.pg-good-block:hover {
    padding-left: 40px;
}

.pg-good-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    transition: height var(--pg-transition-smooth);
}

.pg-good-block:hover .pg-good-accent {
    height: 100%;
}

.pg-good-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.pg-good-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--pg-transition-fast);
}

.pg-good-icon i {
    font-size: 32px;
    color: white;
}

.pg-good-block:hover .pg-good-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 49, 81, 0.3);
}

.pg-good-text {
    flex: 1;
}

.pg-good-title {
    font-family: var(--pg-font-heading);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--pg-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.pg-good-desc {
    font-family: var(--pg-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin: 0;
}

.pg-good-number {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--pg-font-heading);
    font-size: 72px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    transition: all var(--pg-transition-fast);
}

.pg-good-block:hover .pg-good-number {
    color: rgba(255, 49, 81, 0.15);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-global-container {
        padding: 100px 24px;
    }

    .pg-markets-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pg-global-stats {
        gap: 40px;
    }

    .pg-stat-number {
        font-size: 48px;
    }

    .pg-good-title {
        font-size: 28px;
    }

    .pg-good-number {
        font-size: 60px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .pg-global-reach {
        min-height: auto;
    }

    .pg-global-container {
        padding: 80px 20px;
    }

    .pg-brush-global-top {
        width: 400px;
        top: 40px;
    }

    .pg-branch-global {
        width: 150px;
        height: 250px;
        right: 2%;
    }

    .pg-seal-global {
        width: 50px;
        height: 50px;
        font-size: 16px;
        right: 5%;
    }

    .pg-global-title {
        font-size: 40px;
    }

    .pg-global-subtitle {
        font-size: 16px;
    }

    .pg-market-item {
        padding: 20px;
    }

    .pg-market-icon {
        width: 50px;
        height: 50px;
    }

    .pg-market-icon i {
        font-size: 20px;
    }

    .pg-market-name {
        font-size: 20px;
    }

    .pg-global-stats {
        flex-direction: column;
        gap: 32px;
    }

    .pg-stat-number {
        font-size: 40px;
    }

    .pg-goods {
        padding: 80px 0;
    }

    .pg-brush-goods {
        width: 300px;
    }

    .pg-branch-goods {
        width: 120px;
        height: 200px;
    }

    .pg-seal-goods {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .pg-good-block {
        padding: 32px 0;
    }

    .pg-good-block:hover {
        padding-left: 20px;
    }

    .pg-good-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pg-good-icon {
        width: 60px;
        height: 60px;
    }

    .pg-good-icon i {
        font-size: 24px;
    }

    .pg-good-title {
        font-size: 24px;
    }

    .pg-good-desc {
        font-size: 14px;
    }

    .pg-good-number {
        font-size: 48px;
        right: 20px;
    }
}



/* ============================================
   WHY PATHLIGHT SECTION (05)
   ============================================ */
.pg-why {
    position: relative;
    padding: var(--pg-section-padding);
    background-color: var(--pg-bg-canvas);
    overflow: hidden;
}

.pg-why-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-why {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 800px;
    height: 600px;
    opacity: 0.08;
}

.pg-branch-why {
    position: absolute;
    bottom: 100px;
    left: 5%;
    width: 150px;
    height: 300px;
    opacity: 0.4;
}

.pg-seal-why {
    position: absolute;
    top: 100px;
    right: 8%;
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.pg-why-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Visual Side */
.pg-why-visual {
    position: relative;
}

.pg-why-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.pg-why-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
}

.pg-why-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--pg-primary);
    border-radius: 4px;
    z-index: -1;
}

/* Content Side */
.pg-why-content {
    max-width: 600px;
}

.pg-why-intro {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--pg-muted);
    margin-bottom: 48px;
}

/* Vertical List with Red Lines */
.pg-why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pg-why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pg-why-item-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    flex-shrink: 0;
    margin-top: 4px;
}

.pg-why-item-content {
    flex: 1;
}

.pg-why-item-title {
    font-family: var(--pg-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--pg-dark);
    margin-bottom: 12px;
}

.pg-why-item-desc {
    font-family: var(--pg-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin: 0;
}

/* ============================================
   PARTNERS SECTION (06)
   ============================================ */
.pg-partners {
    position: relative;
    padding: var(--pg-section-padding);
    background-color: var(--pg-bg-surface);
    overflow: hidden;
}

.pg-partners-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-partners {
    position: absolute;
    top: 80px;
    left: 5%;
    width: 800px;
    height: 80px;
    opacity: 0.6;
}

.pg-branch-partners {
    position: absolute;
    bottom: 150px;
    right: 5%;
    width: 150px;
    height: 250px;
    opacity: 0.3;
}

.pg-seal-partners {
    position: absolute;
    top: 100px;
    right: 8%;
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.pg-partners-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pg-partners-intro {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--pg-muted);
    margin-top: 24px;
}

/* Partners Grid */
.pg-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.pg-partner-card {
    background-color: var(--pg-bg-canvas);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: all var(--pg-transition-smooth);
    position: relative;
    overflow: hidden;
}

.pg-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    transition: width var(--pg-transition-smooth);
}

.pg-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pg-partner-card:hover::before {
    width: 100%;
}

.pg-partner-icon {
    width: 60px;
    height: 60px;
    background-color: var(--pg-bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--pg-transition-fast);
}

.pg-partner-icon i {
    font-size: 24px;
    color: var(--pg-primary);
}

.pg-partner-card:hover .pg-partner-icon {
    background-color: var(--pg-primary);
}

.pg-partner-card:hover .pg-partner-icon i {
    color: white;
}

.pg-partner-title {
    font-family: var(--pg-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--pg-dark);
    margin-bottom: 16px;
}

.pg-partner-desc {
    font-family: var(--pg-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin: 0;
}

/* Partner Statement */
.pg-partners-statement {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: var(--pg-bg-canvas);
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.pg-statement-mark {
    font-family: var(--pg-font-heading);
    font-size: 80px;
    color: var(--pg-primary);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
}

.pg-statement-text {
    font-family: var(--pg-font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    font-style: italic;
    color: var(--pg-dark);
    line-height: 1.4;
    margin-bottom: 32px;
}

.pg-statement-author {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pg-primary);
}

/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-why-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pg-why-visual {
        order: -1;
    }

    .pg-why-image-wrapper {
        margin: 0 auto;
    }

    .pg-partners-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

    .pg-why,
    .pg-partners {
        padding: 80px 0;
    }

    .pg-why-item {
        flex-direction: column;
        gap: 16px;
    }

    .pg-why-item-line {
        width: 40px;
        height: 3px;
    }

    .pg-partner-card {
        padding: 32px 24px;
    }

    .pg-partners-statement {
        padding: 40px 24px;
    }

    .pg-statement-mark {
        font-size: 60px;
    }

    .pg-statement-text {
        font-size: 20px;
    }
}




/* ============================================
   CONTACT SECTION (07) — FULL BANNER
   ============================================ */
.pg-contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--pg-bg-dark);
}

.pg-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pg-contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.pg-contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(26, 26, 26, 0.75) 50%, 
        rgba(10, 10, 10, 0.95) 100%);
}

.pg-contact-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.pg-brush-contact-main {
    position: absolute;
    top: 15%;
    left: -5%;
    width: 800px;
    height: 150px;
    opacity: 0.15;
}

.pg-branch-contact-main {
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 200px;
    height: 350px;
    opacity: 0.4;
}

.pg-seal-contact-main {
    position: absolute;
    top: 100px;
    right: 10%;
    width: 70px;
    height: 70px;
    font-size: 20px;
    font-weight: 700;
}

.pg-contact-container {
    position: relative;
    z-index: 3;
    max-width: var(--pg-container-max);
    margin: 0 auto;
    padding: 120px 40px;
    width: 100%;
}

/* Asymmetric Layout */
.pg-contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.pg-contact-text {
    max-width: 800px;
}

.pg-contact-space {
    /* Empty space for asymmetric balance */
}

.pg-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pg-seal-inline {
    width: 50px;
    height: 50px;
    background-color: var(--pg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--pg-font-subheading);
    font-weight: 700;
    font-size: 25px;
}

.pg-contact-label span:last-child {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pg-primary);
}

.pg-contact-title {
    font-family: var(--pg-font-heading);
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 32px;
}

.pg-contact-title span {
    display: block;
    color: var(--pg-primary);
    font-style: italic;
}

.pg-contact-subtitle {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
}

/* Contact Details (Vertical with Red Lines) */
.pg-contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.pg-contact-detail-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pg-detail-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    flex-shrink: 0;
    margin-top: 4px;
}

.pg-detail-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-detail-label {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pg-primary);
}

.pg-detail-value {
    font-family: var(--pg-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.pg-detail-link {
    color: var(--pg-primary);
    text-decoration: none;
    transition: color var(--pg-transition-fast);
}

.pg-detail-link:hover {
    color: white;
}

/* Company Registration */
.pg-contact-registration {
    display: inline-flex;
    gap: 24px;
    align-items: center;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.pg-reg-label {
    font-family: var(--pg-font-subheading);
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.pg-reg-number {
    /* font-family: var(--pg-font-heading); */
    font-size: 17px;
    font-weight: 600;
    line-height: 0.5 !important;
    color: var(--pg-primary);
}



/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pg-contact-space {
        display: none;
    }

    .pg-field-options {
        grid-template-columns: 1fr;
    }

    .pg-field-row {
        grid-template-columns: 1fr;
    }

    .pg-form-field-group {
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .pg-contact,
    .pg-order {
        padding: 80px 0;
    }

    .pg-contact-container {
        padding: 80px 20px;
    }

    .pg-contact-title {
        font-size: 48px;
    }

    .pg-contact-subtitle {
        font-size: 16px;
    }

    .pg-contact-detail-item {
        flex-direction: column;
        gap: 12px;
    }

    .pg-detail-line {
        width: 40px;
        height: 3px;
    }

    .pg-contact-registration {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .pg-form-field-group {
        flex-direction: column;
        gap: 16px;
        padding: 32px 0;
    }

    .pg-field-number {
        width: auto;
    }

    .pg-field-number span {
        font-size: 36px;
    }

    .pg-form-field-group:hover {
        padding-left: 0;
    }

    .pg-field-row {
        grid-template-columns: 1fr;
    }

    .pg-form-submit {
        width: 100%;
    }

    .pg-order-statement {
        padding: 40px 24px;
    }

    .pg-statement-text {
        font-size: 20px;
    }
}



/* ============================================
   ORDER SECTION (08) — TRADING FORM
   ============================================ */
.pg-order {
    position: relative;
    padding: var(--pg-section-padding);
    background-color: var(--pg-bg-surface);
    overflow: hidden;
}

.pg-order-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-order {
    position: absolute;
    top: 100px;
    left: 5%;
    width: 700px;
    height: 100px;
    opacity: 0.7;
}

.pg-seal-order {
    position: absolute;
    top: 120px;
    right: 8%;
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.pg-order-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pg-order-intro {
    font-family: var(--pg-font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--pg-muted);
    margin-top: 24px;
}

/* Form Wrapper */
.pg-order-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.pg-order-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Form Sections */
.pg-form-section {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pg-form-section:last-of-type {
    border-bottom: none;
}

.pg-form-section-title {
    font-family: var(--pg-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--pg-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pg-section-number {
    font-family: var(--pg-font-heading);
    font-size: 16px;
    font-weight: 900;
    color: var(--pg-primary);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 49, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox Grid */
.pg-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pg-checkbox-card {
    position: relative;
    cursor: pointer;
}

.pg-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pg-checkbox-mark {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    background-color: white;
    transition: all var(--pg-transition-fast);
}

.pg-checkbox-card input[type="checkbox"]:checked + .pg-checkbox-mark {
    background-color: var(--pg-primary);
    border-color: var(--pg-primary);
}

.pg-checkbox-card input[type="checkbox"]:checked + .pg-checkbox-mark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pg-checkbox-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background-color: var(--pg-bg-surface);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all var(--pg-transition-fast);
    gap: 12px;
}

.pg-checkbox-label i {
    font-size: 32px;
    color: var(--pg-muted);
    transition: color var(--pg-transition-fast);
}

.pg-checkbox-label span:last-child {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--pg-dark);
}

.pg-checkbox-card:hover .pg-checkbox-label {
    border-color: var(--pg-primary);
    background-color: rgba(255, 49, 81, 0.03);
    transform: translateY(-4px);
}

.pg-checkbox-card input[type="checkbox"]:checked + .pg-checkbox-mark + .pg-checkbox-label {
    border-color: var(--pg-primary);
    background-color: rgba(255, 49, 81, 0.05);
}

.pg-checkbox-card input[type="checkbox"]:checked + .pg-checkbox-mark + .pg-checkbox-label i {
    color: var(--pg-primary);
}

/* Form Row */
.pg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pg-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-form-label {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--pg-dark);
}

.pg-form-input {
    font-family: var(--pg-font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: white;
    transition: all var(--pg-transition-fast);
    outline: none;
}

.pg-form-input:focus {
    border-color: var(--pg-primary);
    box-shadow: 0 0 0 3px rgba(255, 49, 81, 0.1);
}

.pg-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.pg-form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Legal Consent */
.pg-legal-consent {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background-color: var(--pg-bg-surface);
    border-radius: 4px;
}

.pg-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.pg-consent-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pg-consent-mark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background-color: white;
    position: relative;
    transition: all var(--pg-transition-fast);
    margin-top: 2px;
}

.pg-consent-item input[type="checkbox"]:checked + .pg-consent-mark {
    background-color: var(--pg-primary);
    border-color: var(--pg-primary);
}

.pg-consent-item input[type="checkbox"]:checked + .pg-consent-mark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pg-consent-text {
    font-family: var(--pg-font-body);
    font-size: 14px;
    color: var(--pg-muted);
    line-height: 1.5;
}

.pg-legal-link {
    font-family: var(--pg-font-body);
    font-weight: 500;
    color: var(--pg-primary);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--pg-transition-fast);
}

.pg-legal-link:hover {
    color: var(--pg-primary-dark);
}

/* Submit */
.pg-form-submit-wrapper {
    text-align: center;
    padding-top: 16px;
}

.pg-form-submit {
    font-size: 22px;
    padding: 18px 48px;
}

.pg-form-note {
    font-family: var(--pg-font-body);
    font-size: 14px;
    color: var(--pg-muted);
    margin-top: 16px;
}

/* Success Message */
.pg-form-success {
    text-align: center;
    padding: 80px 40px;
}

.pg-success-icon {
    font-size: 72px;
    color: var(--pg-primary);
    margin-bottom: 24px;
}

.pg-success-title {
    font-family: var(--pg-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--pg-dark);
    margin-bottom: 16px;
}

.pg-success-text {
    font-family: var(--pg-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-form-row {
        grid-template-columns: 1fr;
    }

    .pg-order-form-wrapper {
        padding: 40px 32px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .pg-order {
        padding: 80px 0;
    }

    .pg-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .pg-checkbox-label {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .pg-checkbox-label i {
        font-size: 24px;
    }

    .pg-checkbox-mark {
        top: 20px;
        right: 20px;
    }

    .pg-form-section-title {
        font-size: 18px;
    }

    .pg-order-form-wrapper {
        padding: 32px 24px;
    }

    .pg-form-submit {
        width: 100%;
    }
}




/* ============================================
   LEGAL MODALS (Privacy / Terms / Cookies)
   ============================================ */
.pg-legal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 3000;
}

.pg-legal-overlay--active {
    opacity: 1;
    visibility: visible;
}

.pg-legal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: var(--pg-bg-canvas);
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3001;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pg-legal-modal--open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Stacking for multiple modals */
.pg-legal-modal--stacked-1 {
    z-index: 3002;
}

.pg-legal-modal--stacked-2 {
    z-index: 3003;
}

.pg-legal-modal--stacked-3 {
    z-index: 3004;
}

.pg-legal-modal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Modal Header */
.pg-legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    background-color: var(--pg-bg-canvas);
    border-bottom: 2px solid var(--pg-primary);
    flex-shrink: 0;
}

.pg-legal-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pg-legal-seal {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pg-primary) 0%, var(--pg-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--pg-font-heading);
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.pg-legal-modal-title {
    font-family: var(--pg-font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--pg-dark);
    margin: 0;
    line-height: 1;
}

.pg-legal-close {
    width: 44px;
    height: 44px;
    background-color: var(--pg-bg-surface);
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--pg-transition-fast);
    color: var(--pg-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.pg-legal-close:hover {
    background-color: var(--pg-primary);
    color: white;
    transform: rotate(90deg);
}

/* Modal Body */
.pg-legal-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
    scroll-behavior: smooth;
}

.pg-legal-modal-body::-webkit-scrollbar {
    width: 8px;
}

.pg-legal-modal-body::-webkit-scrollbar-track {
    background: var(--pg-bg-surface);
}

.pg-legal-modal-body::-webkit-scrollbar-thumb {
    background: var(--pg-primary);
    border-radius: 4px;
}

.pg-legal-updated {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pg-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pg-legal-modal-body h3 {
    font-family: var(--pg-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--pg-dark);
    margin: 32px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pg-legal-modal-body h3:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.pg-legal-modal-body p {
    font-family: var(--pg-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin-bottom: 16px;
}

.pg-legal-modal-body strong {
    color: var(--pg-dark);
    font-weight: 600;
}

/* Legal Lists */
.pg-legal-list {
    margin: 12px 0 20px;
    padding-left: 0;
    list-style: none;
}

.pg-legal-list li {
    font-family: var(--pg-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--pg-muted);
    padding: 10px 0 10px 24px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pg-legal-list li:last-child {
    border-bottom: none;
}

.pg-legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 2px;
    background-color: var(--pg-primary);
}

/* Legal Table */
.pg-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-family: var(--pg-font-body);
    font-size: 14px;
}

.pg-legal-table thead {
    background-color: var(--pg-dark);
}

.pg-legal-table th {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 14px 16px;
    text-align: left;
}

.pg-legal-table td {
    padding: 14px 16px;
    color: var(--pg-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: top;
}

.pg-legal-table tbody tr:nth-child(even) {
    background-color: var(--pg-bg-surface);
}

.pg-legal-table tbody tr:hover {
    background-color: rgba(255, 49, 81, 0.05);
}

/* Inline Link to Another Modal */
.pg-legal-inline-link {
    font-family: var(--pg-font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--pg-primary);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--pg-transition-fast);
}

.pg-legal-inline-link:hover {
    color: var(--pg-primary-dark);
}

/* Footer Legal Triggers */
.pg-footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pg-legal-trigger {
    font-family: var(--pg-font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color var(--pg-transition-fast);
}

.pg-legal-trigger:hover {
    color: var(--pg-primary);
}

.pg-footer-legal-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-legal-modal {
        width: 95%;
        max-height: 85vh;
    }

    .pg-legal-modal-header {
        padding: 24px 32px;
    }

    .pg-legal-modal-title {
        font-size: 24px;
    }

    .pg-legal-modal-body {
        padding: 32px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .pg-legal-modal {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    .pg-legal-modal--open {
        transform: translate(-50%, -50%) scale(1);
    }

    .pg-legal-modal-header {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pg-legal-modal-title-wrapper {
        width: 100%;
    }

    .pg-legal-close {
        position: absolute;
        top: 20px;
        right: 24px;
    }

    .pg-legal-modal-body {
        padding: 24px;
    }

    .pg-legal-modal-body h3 {
        font-size: 18px;
    }

    .pg-legal-modal-body p,
    .pg-legal-list li {
        font-size: 14px;
    }

    .pg-legal-table {
        font-size: 12px;
    }

    .pg-legal-table th,
    .pg-legal-table td {
        padding: 10px 8px;
    }

    .pg-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}



/* ============================================
   FOOTER
   ============================================ */
.pg-footer {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--pg-bg-canvas);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pg-footer-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.pg-brush-footer {
    width: 100%;
    height: 80px;
    opacity: 0.6;
}

.pg-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Brand Column */
.pg-footer-brand {
    max-width: 300px;
}

.pg-footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.pg-footer-logo {
    height: 40px;
    width: auto;
}

.pg-footer-tagline {
    font-family: var(--pg-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--pg-muted);
    margin-bottom: 24px;
}

.pg-footer-social {
    display: flex;
    gap: 12px;
}

.pg-footer-social-link {
    width: 40px;
    height: 40px;
    background-color: var(--pg-bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pg-dark);
    font-size: 16px;
    transition: all var(--pg-transition-fast);
}

.pg-footer-social-link:hover {
    background-color: var(--pg-primary);
    color: white;
    transform: translateY(-4px);
}

/* Footer Columns */
.pg-footer-col-title {
    font-family: var(--pg-font-subheading);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pg-dark);
    margin-bottom: 20px;
}

.pg-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-footer-links li {
    margin-bottom: 12px;
}

.pg-footer-links a {
    font-family: var(--pg-font-body);
    font-size: 14px;
    color: var(--pg-muted);
    transition: color var(--pg-transition-fast);
    text-decoration: none;
}

.pg-footer-links a:hover {
    color: var(--pg-primary);
}

/* Contact List */
.pg-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: var(--pg-font-body);
    font-size: 14px;
    color: var(--pg-muted);
    line-height: 1.6;
}

.pg-footer-contact-list li i {
    color: var(--pg-primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pg-footer-contact-list a {
    color: var(--pg-primary);
    text-decoration: none;
    transition: color var(--pg-transition-fast);
}

.pg-footer-contact-list a:hover {
    color: var(--pg-primary-dark);
}

/* Footer Bottom Bar */
.pg-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.pg-footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pg-footer-copyright {
    font-family: var(--pg-font-body);
    font-size: 13px;
    color: var(--pg-muted);
    margin: 0;
}

.pg-footer-registration {
    font-family: var(--pg-font-subheading);
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--pg-primary);
    text-transform: uppercase;
    margin: 0;
}

.pg-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pg-legal-trigger {
    font-family: var(--pg-font-body);
    font-size: 13px;
    color: var(--pg-muted);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color var(--pg-transition-fast);
}

.pg-legal-trigger:hover {
    color: var(--pg-primary);
}

.pg-footer-divider {
    color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE: LAPTOPS & TABLETS (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .pg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pg-footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .pg-footer {
        padding: 60px 0 30px;
    }

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

    .pg-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .pg-footer-bottom-left {
        align-items: center;
    }

    .pg-footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}


