/* ========================================
   PRICEMONK - STATIC WEBSITE STYLES
   ======================================== */

/* === CSS Variables === */
:root {
    --pm-primary: #2fd2be;
    --pm-dark: #0d2f2e;
    --pm-light: #cafbf0;
    --pm-gray: #f3f4f6;
    --white: #ffffff;
    --black: #000000;
    
    --font-family: 'Montserrat', sans-serif;
    
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.7s ease;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.75;
    color: #1f2937;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--pm-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--pm-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #25a091;
}

/* Selection Color */
::selection {
    background: var(--pm-primary);
    color: var(--pm-dark);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--pm-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    text-decoration: none;
    color: inherit;
}

/* === Utility Classes === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

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

.text-gradient {
    background: linear-gradient(to right, var(--pm-primary), var(--pm-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* === Grid Layouts === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--pm-primary);
    color: var(--pm-dark);
}

.btn-primary:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pm-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* === Sections === */
.section {
    padding: 5rem 0;
}

.section.bg-white {
    background: var(--white);
}

.section.bg-gray {
    background: var(--pm-gray);
}

.section.bg-dark {
    background: linear-gradient(to bottom right, var(--pm-dark), #0a2524);
    color: var(--white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.title-underline {
    width: 5rem;
    height: 4px;
    background: var(--pm-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* === Icons === */
.icon-xs {
    width: 10px;
    height: 10px;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-xl {
    width: 32px;
    height: 32px;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: var(--transition-base);
    padding: 1rem 0;
    background: var(--pm-dark);
}

.navbar.scrolled {
    background: var(--pm-dark);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 2rem;
    width: auto;
}

@media (min-width: 768px) {
    .logo {
        height: 2.5rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

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

.desktop-menu {
    display: none;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--pm-primary);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon,
.close-icon {
    width: 32px;
    height: 32px;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--pm-primary);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--pm-gray);
    animation: fadeIn 0.3s ease;
}

.mobile-link {
    color: var(--pm-dark);
    font-weight: 600;
    font-size: 1.125rem;
}

.mobile-link:hover {
    color: var(--pm-primary);
}

.mobile-demo-btn {
    margin-top: 0.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--pm-dark), #0a2524);
    color: var(--white);
}

.hero-bg-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: 25%;
    right: 0;
    width: 600px;
    height: 600px;
    background: var(--pm-primary);
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    animation: pulse-slow 8s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: #3b82f6;
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-text {
    animation: fadeIn 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(47, 210, 190, 0.1);
    border: 1px solid rgba(47, 210, 190, 0.3);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pm-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Dashboard Preview */
.hero-dashboard {
    position: relative;
    animation: fadeInDelay 1.5s ease;
    display: none;
}

@media (min-width: 768px) {
    .hero-dashboard {
        display: block;
    }
}

.dashboard-container {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.dashboard-container:hover {
    box-shadow: 0 20px 60px rgba(47, 210, 190, 0.2);
}

.dashboard-header {
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: rgba(239, 68, 68, 0.8);
}

.dot-yellow {
    background: rgba(234, 179, 8, 0.8);
}

.dot-green {
    background: rgba(34, 197, 94, 0.8);
}

.dashboard-title {
    flex: 1;
    text-align: center;
    font-size: 0.6875rem;
    color: var(--pm-primary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 900;
}

.btn-recalculate {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.5625rem;
    font-weight: 700;
    background: var(--pm-primary);
    color: var(--pm-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-recalculate:hover:not(:disabled) {
    background: var(--white);
    transform: scale(0.95);
}

.btn-recalculate:disabled {
    background: rgba(47, 210, 190, 0.2);
    color: var(--pm-primary);
    cursor: not-allowed;
}

.btn-recalculate.calculating {
    animation: pulse 2s ease-in-out infinite;
}

.spin-icon {
    display: none;
}

.btn-recalculate.calculating .spin-icon {
    display: block;
    animation: spin 1s linear infinite;
}

.btn-recalculate.calculating .zap-icon {
    display: none;
}

/* Scanline */
.scanline {
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, transparent, var(--pm-primary), transparent);
    box-shadow: 0 0 25px var(--pm-primary);
    z-index: 20;
    display: none;
}

.scanline.active {
    display: block;
    animation: scanline 10s linear infinite;
}

/* Dashboard Body */
.dashboard-body {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #134e4b, var(--pm-dark));
    min-height: 580px;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stat-icon-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(47, 210, 190, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--pm-primary);
}

.stat-bar {
    height: 12px;
    width: 5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.margin-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    border: 1px solid rgba(47, 210, 190, 0.3);
    background: rgba(47, 210, 190, 0.1);
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--pm-primary);
    transition: var(--transition-slow);
}

.margin-badge.high {
    background: rgba(47, 210, 190, 0.4);
    border-color: var(--pm-primary);
    box-shadow: 0 0 20px rgba(47, 210, 190, 0.4);
    transform: scale(1.05);
}

.margin-badge svg {
    animation: bounce 1s ease-in-out;
}

/* Target Panel */
.target-panel {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: var(--border-radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.target-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.target-price {
    font-size: 3rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.05em;
    transition: var(--transition-slow);
}

.target-price.highlight {
    color: var(--pm-primary);
    transform: scale(1.05);
}

.profit-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 1s ease;
}

.profit-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.profit-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pm-primary);
    background: rgba(47, 210, 190, 0.2);
    padding: 0.375rem 1rem;
    border-radius: var(--border-radius-full);
    animation: bounce 1s ease-in-out;
}

/* Products Table */
.products-table {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: var(--border-radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 0.5rem;
    font-size: 0.5rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

.table-header div:not(:first-child) {
    text-align: right;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-code {
    font-size: 0.4375rem;
    color: #9ca3af;
    font-family: 'Courier New', monospace;
}

.product-base {
    text-align: right;
    font-family: 'Courier New', monospace;
    font-size: 0.625rem;
    color: #9ca3af;
}

.product-price {
    text-align: right;
    font-family: 'Courier New', monospace;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-fast);
}

.table-row.locked .product-price {
    color: var(--pm-primary);
    transform: scale(1.1);
}

.product-margin {
    text-align: right;
    position: relative;
}

.margin-value {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.5625rem;
    font-weight: 900;
    min-width: 42px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row.locked .margin-value {
    background: var(--pm-primary);
    color: #0d2f2e !important;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(47, 210, 190, 0.4);
    border-color: var(--pm-primary);
    animation: margin-pop 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ping-effect {
    display: none !important;
}

.table-row.locked .ping-effect {
    display: none !important;
}

.row-flash {
    display: none !important;
}

.table-row.locked .row-flash {
    display: none !important;
}

/* Dashboard Glow */
.dashboard-glow {
    position: absolute;
    inset: -2.5rem;
    background: rgba(47, 210, 190, 0.2);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: all 1s ease;
}

.dashboard-glow.active {
    opacity: 1;
    transform: scale(1.25);
}

/* Wave Divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */
.audience-card {
    padding: 2rem;
    border-radius: var(--border-radius-2xl);
    border: 1px solid #e5e7eb;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: var(--transition-base);
}

.audience-card:hover {
    border-color: var(--pm-primary);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-0.5rem);
}

.audience-icon-wrapper {
    display: inline-flex;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(202, 251, 240, 0.5);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.audience-card:hover .audience-icon-wrapper {
    background: var(--pm-light);
}

.audience-icon {
    width: 3rem;
    height: 3rem;
    stroke: var(--pm-primary);
    fill: none;
    stroke-width: 2;
}

.audience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.75rem;
}

.audience-desc {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.625;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDelay {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.15;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes scanline {
    0% {
        top: 2.5rem;
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    98% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes rowFlash {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes margin-pop {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    30% {
        transform: scale(1.7);
        filter: brightness(2) drop-shadow(0 0 20px var(--pm-primary));
    }
    60% {
        transform: scale(0.9);
        filter: brightness(1.1);
    }
    85% {
        transform: scale(1.05);
        filter: brightness(1.05);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes ping-once {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--pm-primary);
    color: var(--pm-dark);
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 40;
    opacity: 0;
    transform: translateY(2.5rem);
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top-btn:hover {
    transform: scale(1.1) translateY(0);
    background: var(--white);
    color: var(--pm-primary);
}

/* ========================================
   MODALS
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    max-width: 32rem;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.modal-header {
    background: var(--pm-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    padding: 0;
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(2rem) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Demo Modal Form */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid #d1d5db;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pm-primary);
    box-shadow: 0 0 0 3px rgba(47, 210, 190, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Video Modal */
.video-modal {
    max-width: 56rem;
    background: #18181b;
    border: 1px solid #27272a;
}

.video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
}

.video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: var(--black);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-base);
}

.video-play-btn:hover .video-thumbnail {
    opacity: 1;
}

.play-icon {
    position: relative;
    z-index: 10;
    width: 5rem;
    height: 5rem;
    background: rgba(47, 210, 190, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(47, 210, 190, 0.5);
    transition: var(--transition-base);
}

.video-play-btn:hover .play-icon {
    transform: scale(1.1);
}

.play-icon svg {
    width: 2rem;
    height: 2rem;
    fill: var(--pm-dark);
    margin-left: 4px;
}

#videoIframe {
    position: absolute;
    inset: 0;
}

.video-footer {
    background: #18181b;
    border-top: 1px solid #27272a;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .video-footer {
        flex-direction: row;
    }
}

.video-footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
}

.video-youtube-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pm-primary);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
    white-space: nowrap;
}

.video-youtube-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.video-youtube-link svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding-top: 6rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: var(--transition-base);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--pm-primary);
}

.pain-card:hover .pain-detail {
    display: block !important;
}

.pain-card:hover p:not(.pain-detail) {
    display: none;
}

.pain-detail {
    position: static;
    transform: none;
}

/* ========================================
   FEATURE TABS
   ======================================== */
.feature-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-2xl);
    border: 2px solid transparent;
    background: var(--pm-gray);
    color: #6b7280;
    cursor: pointer;
    transition: var(--transition-slow);
    text-align: left;
}

.feature-tab:hover {
    border-color: rgba(47, 210, 190, 0.2);
    background: var(--white);
}

.feature-tab.active {
    background: var(--pm-dark);
    color: var(--white);
    box-shadow: var(--shadow-2xl);
    border-color: var(--pm-dark);
    transform: scale(1.02);
    z-index: 10;
}

.feature-tab-icon {
    padding: 0.75rem;
    border-radius: var(--border-radius-xl);
    background: #e5e7eb;
    color: #9ca3af;
    transition: var(--transition-slow);
}

.feature-tab.active .feature-tab-icon {
    background: var(--pm-primary);
    color: var(--pm-dark);
}

.feature-tab-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.feature-tab-name {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
}

.feature-tab-number {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 0.25rem;
}

.feature-tab.active .feature-tab-number {
    color: rgba(47, 210, 190, 0.8);
}

.feature-content {
    background: var(--pm-gray);
    border-radius: 2.5rem;
    padding: 3.5rem;
    min-height: 560px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: var(--border-radius-2xl);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    border: 1px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(47, 210, 190, 0.3);
}

.pricing-card.premium {
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--pm-primary);
    transform: scale(1.05);
    z-index: 10;
}

.premium-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--pm-primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-tier-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pm-dark);
}

.pricing-tier-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.5rem;
    min-height: 2.5rem;
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--pm-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-feature span {
    font-size: 1rem;
    color: #374151;
}

.pricing-cta {
    margin-top: auto;
}

/* Pricing card buttons on light background */
.pricing-card .btn-secondary {
    background: transparent;
    color: var(--pm-dark);
    border: 2px solid var(--pm-dark);
}

.pricing-card .btn-secondary:hover {
    background: var(--pm-dark);
    color: var(--white);
    border-color: var(--pm-dark);
}

.pricing-card.premium .btn-primary {
    background: var(--pm-primary);
    color: var(--white);
}

.pricing-card.premium .btn-primary:hover {
    background: var(--pm-dark);
}

/* ========================================
   IMPLEMENTATION SECTION
   ======================================== */
.implementation-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-bottom: 5rem;
}

@media (max-width: 767px) {
    .implementation-timeline {
        grid-template-columns: 1fr;
    }
}

.implementation-timeline::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .implementation-timeline::before {
        display: block;
    }
}

.timeline-step {
    position: relative;
    text-align: center;
}

@media (max-width: 767px) {
    .timeline-step {
        text-align: left;
    }
}

.timeline-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--pm-dark);
    border: 4px solid var(--pm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 15px rgba(47, 210, 190, 0.4);
    transition: var(--transition-base);
}

@media (max-width: 767px) {
    .timeline-circle {
        margin: 0 0 1.5rem 0;
    }
}

.timeline-step:hover .timeline-circle {
    background: var(--pm-primary);
    color: var(--pm-dark);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.timeline-desc {
    font-size: 1rem;
    color: #9ca3af;
}

.implementation-services {
    margin-top: 5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-2xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .implementation-services {
        flex-direction: row;
    }
}

/* ========================================
   PARTNERS CAROUSEL
   ======================================== */
.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    z-index: 10;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--pm-gray), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--pm-gray), transparent);
}

@media (min-width: 768px) {
    .partners-carousel::before,
    .partners-carousel::after {
        width: 10rem;
    }
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    padding: 2rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #9ca3af;
    font-size: 1.125rem;
    text-align: center;
    transition: var(--transition-base);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 210, 190, 0.3);
    color: var(--pm-dark);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonial-card {
    background: var(--pm-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl);
    border-top: 4px solid var(--pm-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.05;
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fbbf24;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    font-weight: 500;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    color: var(--pm-primary);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pm-primary);
    position: relative;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
}

.author-role {
    font-size: 0.75rem;
    color: var(--pm-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
    background: var(--pm-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(47, 210, 190, 0.1);
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    margin-top: 0.75rem;
    color: rgba(202, 251, 240, 0.4);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(202, 251, 240, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(202, 251, 240, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--pm-primary);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(202, 251, 240, 0.6);
    transition: color 0.3s ease;
    position: relative;
    top: 6px;
}

.footer-social:hover {
    color: var(--pm-primary);
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-right {
        align-items: flex-end;
    }
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--pm-primary);
    margin-bottom: 1.5rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: var(--pm-primary);
    color: var(--white);
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-email {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-products {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-products-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-products-title {
        text-align: left;
    }
}

.product-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0.8;
    transition: var(--transition-base);
}

@media (min-width: 768px) {
    .product-logos {
        justify-content: flex-start;
        gap: 3rem;
    }
}

.product-logos:hover {
    opacity: 1;
}

.product-logo {
    display: block;
    transition: var(--transition-base);
}

.product-logo:hover {
    transform: translateY(-4px);
}

.product-logo img {
    height: 2.5rem;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

@media (min-width: 768px) {
    .product-logo img {
        height: 2.5rem;
    }
}

.product-logo:hover img {
    filter: none;
}

/* ============================================
   MONK BAR (MonkSuite Workflow in Footer)
   ============================================ */
.monk-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.monk-bar-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.monk-bar-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.monk-bar-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2rem;
}

.monk-bar-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.monk-bar-step-desc {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.monk-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.monk-bar-item:hover {
    background: #fff;
    border-color: var(--pm-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 210, 190, 0.3);
}

.monk-bar-item-active {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
    box-shadow: 0 4px 15px rgba(47, 210, 190, 0.4);
}

.monk-bar-item-active:hover {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 210, 190, 0.5);
}

.monk-bar-logo {
    height: 1.25rem;
    width: auto;
    transition: all 0.3s ease;
}

.monk-bar-item-active .monk-bar-logo {
    filter: brightness(0) invert(1);
}

.monk-bar-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    height: 44px;
}

.monk-bar-cta {
    color: var(--pm-primary);
    font-size: 0.95rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .monk-bar-flow {
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .monk-bar-arrow {
        display: none;
    }
    
    .monk-bar-flow {
        gap: 0.75rem;
    }
    
    .monk-bar-item {
        padding: 0.5rem 1rem;
    }
    
    .monk-bar-logo {
        height: 1rem;
    }
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(202, 251, 240, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(202, 251, 240, 0.3);
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #6b7280;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========================================
   PAGE VIEWS (ABOUT, SECURITY, TERMS, PRIVACY)
   ======================================== */
.page-hero {
    background: linear-gradient(to bottom right, var(--pm-dark), #0a2524);
    color: var(--white);
    padding: 8rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--pm-dark), #0a2524);
    z-index: 0;
}

.page-hero > * {
    position: relative;
    z-index: 10;
}

.page-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(47, 210, 190, 0.1);
    border: 1px solid rgba(47, 210, 190, 0.3);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pm-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .page-hero p {
        font-size: 1.5rem;
    }
}

.page-section {
    padding: 5rem 0;
}

.page-section.bg-gray {
    background: var(--pm-gray);
}

.page-section.bg-dark {
    background: linear-gradient(to bottom, var(--pm-dark), #0a2524);
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-full);
    background: rgba(47, 210, 190, 0.1);
    color: var(--pm-primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-card {
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid #e5e7eb;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--pm-primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.625;
}

.security-feature {
    padding: 2rem;
    border-radius: var(--border-radius-2xl);
    border: 1px solid #e5e7eb;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.security-feature:hover {
    box-shadow: var(--shadow-xl);
}

.security-icon {
    width: 2rem;
    height: 2rem;
    stroke: var(--pm-primary);
    margin-bottom: 1.5rem;
}

.security-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.75rem;
}

.security-feature p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.625;
}

.legal-content {
    max-width: 56rem;
    margin: 0 auto;
    color: #6b7280;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
}

.legal-footer p {
    margin-bottom: 0.5rem;
}

/* ========================================
   UTILITY ADDITIONS
   ======================================== */
@media (min-width: 768px) {
    .stat-divider {
        display: block !important;
    }
}

/* Ensure animations work */
@keyframes fadeInDelay {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   NEW SECTIONS - MATCHMONK STYLE STRUCTURE
   ======================================== */

/* === Context Section === */
#context {
    padding: 4rem 0;
}

.context-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.context-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.context-text:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--pm-dark);
}

/* === Who It's For Section === */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
    transition: var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--pm-primary);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-light);
    border-radius: var(--border-radius-md);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--pm-primary);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* === What It Does Section === */
.features-simple {
    max-width: 56rem;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-number {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-dark);
    color: var(--pm-primary);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--border-radius-md);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* === Typical Use Case Section === */
.use-case-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .use-case-flow {
        flex-direction: row;
        align-items: stretch;
        gap: 0.5rem;
    }
}

.use-case-step {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.use-case-step.highlight {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
}

.use-case-step.highlight p {
    color: var(--pm-dark);
    font-weight: 600;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pm-primary);
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.use-case-step.highlight .step-number {
    background: var(--pm-dark);
    color: var(--pm-primary);
}

.use-case-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.use-case-arrow {
    color: var(--pm-primary);
    font-size: 1.5rem;
    display: none;
}

@media (min-width: 1024px) {
    .use-case-arrow {
        display: flex;
        align-items: center;
    }
}

/* === How It Fits Section === */
.how-it-fits-content {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.fits-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.fits-text a {
    color: var(--pm-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fits-text a:hover {
    color: var(--pm-dark);
}

.monk-suite-visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--pm-gray);
    border-radius: var(--border-radius-xl);
}

.monk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.monk-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
}

.monk-logo-link:hover {
    border-color: var(--pm-primary);
    box-shadow: var(--shadow-md);
}

.monk-logo-link.current {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
}

.monk-logo-link img {
    height: 1.5rem;
    width: auto;
}

.monk-logo-link.current img {
    filter: brightness(0) invert(1);
}

.monk-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.monk-arrow {
    color: #9ca3af;
    font-size: 1.5rem;
}

@media (max-width: 600px) {
    .monk-arrow {
        display: none;
    }
}

/* === Stage Signal Section === */
.stage-signal-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

.quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--pm-primary);
    line-height: 1;
    opacity: 0.6;
}

.quote-mark-left {
    align-self: flex-start;
}

.quote-mark-right {
    align-self: flex-end;
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--pm-primary);
    opacity: 0.5;
}

.stage-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--pm-dark);
    margin: 0;
}

@media (max-width: 767px) {
    .stage-signal-content {
        gap: 1rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .stage-quote {
        font-size: 1rem;
    }
}

/* === CTA Section === */
.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

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

.btn-outline:hover {
    background: var(--pm-dark);
    color: var(--white);
}

/* === Pricing Grid Updates === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-note {
    margin-top: 3rem;
    text-align: center;
}

.pricing-note p {
    font-size: 1rem;
    color: #9ca3af;
}

.pricing-note a {
    color: var(--pm-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* === Implementation Services === */
.implementation-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .implementation-services {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.implementation-services h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pm-primary);
    margin-bottom: 0.5rem;
}

.implementation-services > div:first-child p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.services-price {
    text-align: center;
}

@media (min-width: 768px) {
    .services-price {
        text-align: right;
    }
}

.services-price .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.services-price .price-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* === Page Content Styles (subpages) === */
.navbar-dark-static {
    background: var(--pm-dark);
    position: relative;
}

.navbar-dark-static .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-dark-static .logo-img {
    height: 2rem;
}

.navbar-dark-static .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-dark-static .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition-base);
}

.navbar-dark-static .nav-link:hover {
    color: var(--pm-primary);
}

.page-content {
    padding-top: 4rem;
    min-height: calc(100vh - 400px);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.page-body {
    max-width: 48rem;
    margin: 0 auto;
}

.page-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-body h2:first-child {
    margin-top: 0;
}

.page-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.page-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-body li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.page-body a {
    color: var(--pm-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-body a:hover {
    color: var(--pm-dark);
}

/* === Section Helpers === */
.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 1rem auto 0;
}

.bg-gray {
    background: var(--pm-gray);
}


/* ========================================
   DASHBOARD COMPLETE STATE
   ======================================== */

/* Global stats highlight when complete */
.dashboard-container.complete .target-price {
    color: var(--pm-primary);
}

/* Pulse glow animation */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Smooth transition for highlight state */
.table-row .product-price,
.table-row .product-base,
.table-row .product-info,
.table-row .margin-value {
    transition: all 0.5s ease;
}


/* === Benefit Card with Title === */
.benefit-card h4.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.25rem;
}

.benefit-card > div:last-child {
    flex: 1;
}


/* ========================================
   AUDIENCE CARDS - Dark Style
   ======================================== */
.audience-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .audience-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.audience-card {
    background: var(--pm-dark);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(13, 47, 46, 0.3);
}

.audience-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-primary);
    border-radius: var(--border-radius-md);
}

.audience-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--pm-dark);
}

.audience-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

