/**
 * PrimePropTech Design - Dark Navy + Gold Theme
 * Design transfer from primeproptech.com
 */

/* ==========================================================================
   BASE / BODY
   ========================================================================== */

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
}

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

a:hover {
    color: var(--color-primary-dark);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    z-index: var(--z-fixed);
    transition: background var(--transition-base);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo-text {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: #FFD700;
    letter-spacing: 0.02em;
}

/* Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    color: #D1D5DB;
    font-weight: var(--font-medium);
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
    color: #D1D5DB;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    padding-left: calc(var(--space-lg) + 4px);
}

.nav-dropdown-link small {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* CTA Button in header */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(to right, #FFD700, #E6C200);
    color: #000000 !important;
    font-weight: var(--font-bold);
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

.header-cta:hover {
    background: linear-gradient(to right, #FFE44D, #FFD700);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
    color: #000000 !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFD700;
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile Nav */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    bottom: 0;
    width: 280px;
    background: #1A1F2E;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 999;
    overflow-y: auto;
    transition: right var(--transition-base);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #D1D5DB;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-nav-links {
    padding: var(--space-md) 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    color: #D1D5DB;
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #FFD700;
}

.mobile-nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.mobile-nav-item.open .mobile-nav-link svg {
    transform: rotate(180deg);
}

.mobile-nav-dropdown {
    display: none;
    background: rgba(10, 15, 28, 0.5);
    padding: var(--space-sm) 0;
}

.mobile-nav-item.open .mobile-nav-dropdown {
    display: block;
}

.mobile-nav-dropdown a {
    display: block;
    padding: var(--space-sm) var(--space-2xl);
    color: #9CA3AF;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-dropdown a:hover,
.mobile-nav-dropdown a.active {
    color: #FFD700;
}

.mobile-nav-all {
    color: #D1D5DB !important;
    font-weight: var(--font-medium);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-pt {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #0A0F1C 0%, #0F172A 100%);
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Decorative blurs */
.hero-pt::before {
    content: '';
    position: absolute;
    top: -12rem;
    left: -12rem;
    width: 36rem;
    height: 36rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    filter: blur(128px);
    pointer-events: none;
}

.hero-pt::after {
    content: '';
    position: absolute;
    bottom: -12rem;
    right: -12rem;
    width: 36rem;
    height: 36rem;
    background: rgba(255, 215, 0, 0.06);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.hero-pt-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-pt-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-full);
    color: #FFD700;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: 1.5rem;
}

.hero-pt-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-pt-title .gold {
    background: linear-gradient(to right, #FFD700, #E6C200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-pt-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-pt-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: linear-gradient(to right, #FFD700, #E6C200);
    color: #000000 !important;
    font-weight: var(--font-bold);
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    min-height: 44px;
}

.btn-gold:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: #000000 !important;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700 !important;
    font-weight: var(--font-semibold);
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    min-height: 44px;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: #FFD700 !important;
}

.hero-pt-dashboard {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-pt-dashboard img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-pt {
    background: linear-gradient(180deg, #0F172A 0%, #0A0F1C 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.stats-pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-pt-item {
    padding: 1rem;
}

.stat-pt-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-pt-label {
    font-size: var(--text-sm);
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   SECTION HEADINGS (common)
   ========================================================================== */

.section-pt {
    padding: 5rem 0;
    background: #0A0F1C;
}

.section-pt-alt {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0A0F1C 0%, #111827 100%);
}

.section-pt-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-pt-title {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-pt-title .gold {
    background: linear-gradient(to right, #FFD700, #E6C200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-pt-subtitle {
    font-size: var(--text-lg);
    color: #9CA3AF;
    max-width: 36rem;
    margin: 0 auto;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.services-pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-pt-card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    transition: all var(--transition-base);
    cursor: default;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-pt-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255,215,0,0.05), #1A1F2E);
}

.service-pt-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.service-pt-card:hover .service-pt-icon {
    background: rgba(255, 215, 0, 0.2);
}

.service-pt-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #FFD700;
}

.service-pt-title {
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.service-pt-card:hover .service-pt-title {
    color: #FFD700;
}

.service-pt-text {
    font-size: var(--text-sm);
    color: #9CA3AF;
    line-height: 1.6;
}

/* ==========================================================================
   JOURNEY SECTION (numbered steps)
   ========================================================================== */

.journey-pt {
    padding: 5rem 0;
    background: linear-gradient(180deg, #111827 0%, #0A0F1C 100%);
}

.journey-pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.journey-pt-card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    transition: all var(--transition-base);
    position: relative;
}

.journey-pt-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.journey-pt-number {
    font-size: 0.75rem;
    font-weight: var(--font-bold);
    color: #FFD700;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.journey-pt-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.journey-pt-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #FFD700;
}

.journey-pt-title {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.journey-pt-text {
    font-size: var(--text-sm);
    color: #9CA3AF;
    line-height: 1.6;
}

/* ==========================================================================
   WHY SECTION (feature cards with stats)
   ========================================================================== */

.why-pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-pt-card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.why-pt-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.why-pt-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-pt-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #FFD700;
}

.why-pt-title {
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.why-pt-text {
    font-size: var(--text-sm);
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.why-pt-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.why-pt-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.why-pt-stat-value {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: #FFD700;
}

.why-pt-stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */

.categories-pt {
    padding: 5rem 0;
    background: linear-gradient(180deg, #111827 0%, #0A0F1C 100%);
}

.categories-pt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-pt-card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: block;
}

.category-pt-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    color: inherit;
}

.category-pt-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-base);
}

.category-pt-card:hover .category-pt-icon {
    background: rgba(255, 215, 0, 0.2);
}

.category-pt-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: #FFD700;
}

.category-pt-name {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: 0.4rem;
    transition: color var(--transition-fast);
}

.category-pt-card:hover .category-pt-name {
    color: #FFD700;
}

.category-pt-count {
    font-size: var(--text-sm);
    color: #6B7280;
}

/* ==========================================================================
   TAGS SECTION
   ========================================================================== */

.tags-pt {
    padding: 4rem 0;
    background: #0A0F1C;
}

.tags-pt-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-pt-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-full);
    color: #D1D5DB;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.tag-pt-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700;
}

.tag-pt-item .tag-count {
    font-size: 0.75rem;
    color: #6B7280;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   CAROUSEL SECTION (keywords)
   ========================================================================== */

.carousel-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #0A0F1C 0%, #0F172A 100%);
    overflow: hidden;
}

.kw-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    color: #D1D5DB;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.kw-pill:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

/* ==========================================================================
   CTA BOTTOM SECTION
   ========================================================================== */

.cta-bottom-pt {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0F172A 0%, #0A0F1C 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bottom-pt::before {
    content: '';
    position: absolute;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40rem;
    height: 20rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.cta-bottom-pt-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.cta-bottom-pt-title .gold {
    background: linear-gradient(to right, #FFD700, #E6C200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-bottom-pt-text {
    font-size: var(--text-lg);
    color: #9CA3AF;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.cta-bottom-pt-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #060B14;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    color: #6B7280;
    font-size: var(--text-sm);
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #6B7280;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: #4B5563;
    font-size: var(--text-sm);
    line-height: 1.8;
}

.footer-disclaimer {
    color: #4B5563;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   SEO CONTENT
   ========================================================================== */

.seo-content-pt {
    padding: 4rem 0;
    background: #0A0F1C;
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
    color: #6B7280;
    font-size: var(--text-sm);
    line-height: 1.8;
}

.seo-text p + p {
    margin-top: 1rem;
}

/* ==========================================================================
   PAGE HERO (internal pages)
   ========================================================================== */

.page-hero-pt {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #0A0F1C 0%, #111827 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.page-hero-pt .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: var(--text-sm);
    color: #6B7280;
}

.page-hero-pt .breadcrumb a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-hero-pt .breadcrumb a:hover {
    color: #FFD700;
}

.page-hero-pt .breadcrumb-sep {
    color: #374151;
}

.page-hero-pt h1 {
    font-size: clamp(1.875rem, 3vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.page-hero-pt p {
    color: #9CA3AF;
    max-width: 48rem;
    margin: 0 auto;
    font-size: var(--text-lg);
}

/* ==========================================================================
   ARTICLE CARDS
   ========================================================================== */

.article-pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-pt-card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.article-pt-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
    color: inherit;
}

.article-pt-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #0A0F1C;
}

.article-pt-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-pt-card-title {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-pt-card:hover .article-pt-card-title {
    color: #FFD700;
}

.article-pt-card-meta {
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: auto;
    padding-top: 0.75rem;
}

/* ==========================================================================
   ARTICLE PAGE
   ========================================================================== */

.article-body-pt {
    background: #0A0F1C;
    padding: 3rem 0;
}

.article-body-pt .article-content-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #FFFFFF;
    margin: 1.5em 0 0.75em;
    font-weight: var(--font-bold);
    line-height: 1.3;
}

.article-content p {
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 1em;
}

.article-content a {
    color: #FFD700;
    text-decoration: underline;
}

.article-content a:hover {
    color: #E6C200;
}

.article-content ul,
.article-content ol {
    color: #D1D5DB;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.article-content li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 3px solid #FFD700;
    padding-left: 1.5rem;
    color: #9CA3AF;
    font-style: italic;
    margin: 1.5rem 0;
}

.article-content code {
    background: #1A1F2E;
    color: #FFD700;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-content pre {
    background: #1A1F2E;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content th {
    background: #1A1F2E;
    color: #FFD700;
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.article-content td {
    color: #D1D5DB;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-content tr:nth-child(even) td {
    background: rgba(26, 31, 46, 0.5);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-pt {
    padding: 4rem 0;
    background: #0A0F1C;
}

.contact-pt-card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.contact-pt label {
    display: block;
    color: #D1D5DB;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
}

.contact-pt input,
.contact-pt textarea,
.contact-pt select {
    width: 100%;
    background: #0A0F1C;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color var(--transition-fast);
    appearance: none;
}

.contact-pt input:focus,
.contact-pt textarea:focus,
.contact-pt select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-pt textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-pt .form-group {
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.page-404-pt {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0A0F1C;
    padding: 4rem 0;
}

.page-404-pt-number {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    background: linear-gradient(to right, #FFD700, #E6C200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.page-404-pt h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.page-404-pt p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    max-width: 36rem;
}

/* ==========================================================================
   MODAL (keyword popup)
   ========================================================================== */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--z-modal-backdrop);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 640px);
    max-height: 80vh;
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    z-index: var(--z-modal);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.1), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal.active {
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    color: #FFFFFF;
}

.modal-close {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: #FFD700;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    color: #D1D5DB;
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* ==========================================================================
   OVERRIDES FOR OLD CSS COMPATIBILITY
   ========================================================================== */

/* Fix old section-title that uses --color-secondary (now dark) */
.section-title {
    color: #FFFFFF;
}

.section-subtitle {
    color: #9CA3AF;
}

/* Old card styles - override with dark theme */
.card {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.12);
    transform: translateY(-3px);
}

.card-title {
    color: #FFFFFF;
}

.card-title a {
    color: #FFFFFF;
    text-decoration: none;
}

.card-title a:hover {
    color: #FFD700;
}

/* Old breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: var(--text-sm);
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #9CA3AF;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #FFD700;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: #374151;
}

/* Tags */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-full);
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Sidebar */
.sidebar-widget {
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* Article tags section */
.article-tags-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.article-tags-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.article-tags-icon svg {
    width: 1rem;
    height: 1rem;
    fill: #FFD700;
}

.article-tags-title {
    font-size: 0.9rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    color: #D1D5DB;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.article-tag:hover {
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
}

/* Toast notifications */
.toast-notification {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #1A1F2E;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: var(--z-tooltip);
    max-width: 380px;
}

.toast-success {
    border-color: rgba(34, 197, 94, 0.3);
}

.toast-error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast-content {
    flex: 1;
}

.toast-content strong {
    display: block;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.toast-content span {
    font-size: 0.85rem;
    color: #9CA3AF;
}

.toast-close {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.toast-close svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================================================
   MISC UTILITIES
   ========================================================================== */

.main {
    padding-top: 25px;
    padding-bottom: 25px;
}

.main-home {
    padding-top: 0;
}

/* Divider */
.pt-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,215,0,0.3), transparent);
    margin: 0;
}

/* Scroll animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {
    .nav-main {
        display: none;
    }

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

    .header-cta-desktop {
        display: none;
    }

    .categories-pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-pt-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .services-pt-grid,
    .why-pt-grid {
        grid-template-columns: 1fr;
    }

    .journey-pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-pt {
        padding: 100px 0 60px;
    }

    .section-pt,
    .section-pt-alt,
    .journey-pt {
        padding: 3rem 0;
    }

    .article-pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-pt-grid {
        grid-template-columns: 1fr;
    }

    .journey-pt-grid {
        grid-template-columns: 1fr;
    }

    .categories-pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-pt-grid {
        grid-template-columns: 1fr;
    }

    .hero-pt-title {
        font-size: 2rem;
    }

    .cta-bottom-pt-title {
        font-size: 1.75rem;
    }
}
