/* ==========================================================================
   Technisoft Systems - Modern Premium Style Sheet
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
    
    /* Layout */
    --container-width: 1240px;
    --header-height: 80px;
    
    /* Theme Tokens: Dark Mode (Default) */
    --color-bg: #090d16;
    --color-bg-secondary: #0f172a;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-text-dark: #0f172a;
    
    --color-primary: #139dd8;      /* Brand Cyan */
    --color-primary-rgb: 19, 157, 216;
    --color-secondary: #f89a1c;    /* Brand Orange */
    --color-secondary-rgb: 248, 154, 28;
    --color-tertiary: #8b5cf6;     /* Bright Purple */
    --color-slogan: #7c3680;       /* Brand Purple from Icon */
    
    --gradient-accent: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 50%, var(--color-secondary) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(19, 157, 216, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(248, 154, 28, 0.15) 100%);
    
    --color-card-bg: rgba(15, 23, 42, 0.65);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --color-nav-bg: rgba(9, 13, 22, 0.75);
    --color-input-bg: rgba(15, 23, 42, 0.8);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.3);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

[data-theme="light"] {
    /* Theme Tokens: Light Mode */
    --color-bg: #f8fafc;
    --color-bg-secondary: #f1f5f9;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-text-dark: #0f172a;
    
    --color-primary: #0c83b8;      /* Brand Cyan (Light Contrast) */
    --color-primary-rgb: 12, 131, 184;
    --color-secondary: #d97806;    /* Brand Orange (Light Contrast) */
    --color-secondary-rgb: 217, 120, 6;
    --color-tertiary: #6d28d9;     /* Brand Purple (Light Contrast) */
    --color-slogan: #7c3680;       /* Brand Purple from Icon */
    
    --gradient-accent: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 50%, var(--color-secondary) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(12, 131, 184, 0.08) 0%, rgba(109, 40, 217, 0.08) 50%, rgba(217, 120, 6, 0.08) 100%);
    
    --color-card-bg: rgba(255, 255, 255, 0.75);
    --color-card-border: rgba(15, 23, 42, 0.08);
    --color-nav-bg: rgba(248, 250, 252, 0.8);
    --color-input-bg: rgba(255, 255, 255, 0.9);
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px rgba(15,23,42,0.05), 0 10px 15px rgba(15,23,42,0.05);
    --shadow-lg: 0 10px 25px rgba(15,23,42,0.08), 0 20px 40px rgba(15,23,42,0.04);
    --shadow-glow: 0 0 25px rgba(12, 131, 184, 0.15);
    --shadow-glow-purple: 0 0 25px rgba(109, 40, 217, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: -webkit-fill-available;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.5s ease, color 0.5s ease;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Tech Canvas Background */
#techBgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.9;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

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

a:hover {
    color: var(--color-secondary);
}

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

ul {
    list-style: none;
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

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

.text-success { color: #10b981; }
.text-warning { color: #f59e0b; }
.text-danger { color: #ef4444; }
.text-light { color: var(--color-text); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Section Headers --- */
.section-header {
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.sub-title {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--gradient-accent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--color-bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-card-border);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--color-text);
    color: var(--color-text-dark);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
}

.btn-secondary-outline:hover {
    background: rgba(6, 182, 212, 0.08);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* --- Header / Navigation Bar --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--color-nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-card-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
    transition: var(--transition-smooth);
}

.logo-area:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--color-primary);
}

.accent-text {
    color: var(--color-secondary);
}

.logo-slogan {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    color: var(--color-slogan);
    margin-top: 1px;
    font-weight: 500;
    opacity: 0.95;
    text-align: right;
    align-self: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Theme Toggle button */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-card-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.theme-toggle svg {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Show/hide sun & moon icons based on data-theme */
[data-theme="dark"] .sun-icon {
    transform: translateY(40px);
}
[data-theme="dark"] .moon-icon {
    transform: translateY(0);
}
[data-theme="light"] .sun-icon {
    transform: translateY(0);
}
[data-theme="light"] .moon-icon {
    transform: translateY(-40px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 3rem);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Hero Right Side - Glowing visuals & Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-logo {
    width: 260px;
    height: 260px;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 50px rgba(6, 182, 212, 0.2));
    animation: floatLogo 6s ease-in-out infinite;
}

.visual-glow-sphere {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(10px);
}

/* Floating Glass Cards */
.glass-card {
    position: absolute;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.floating-card-1 {
    top: -10px;
    left: -20px;
    width: 250px;
    font-family: monospace;
    font-size: 0.85rem;
    animation: floatCard1 8s ease-in-out infinite;
}

.card-header-dot {
    display: flex;
    gap: 5px;
    margin-bottom: 0.75rem;
}

.card-header-dot .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.card-header-dot .red { background-color: #ff5f56; }
.card-header-dot .yellow { background-color: #ffbd2e; }
.card-header-dot .green { background-color: #27c93f; }

.code-line {
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}
.code-line .c-purple { color: #c084fc; }
.code-line .c-yellow { color: #fde047; }
.code-line .c-blue { color: #60a5fa; }
.code-line .c-orange { color: #fb923c; }
.code-line .c-green { color: #4ade80; }
.code-line.indent { padding-left: 1rem; }
.code-line.indent-2 { padding-left: 2rem; }

.floating-card-2 {
    bottom: 20px;
    right: -20px;
    width: 200px;
    animation: floatCard2 7s ease-in-out infinite;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.uptime-icon {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0.5rem 0;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-footer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.up-trend {
    color: #10b981;
    font-weight: 700;
}

/* Animations */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(12px) rotate(3deg); }
}

/* Hero scroll mouse indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.mouse:hover {
    opacity: 1;
    border-color: var(--color-primary);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollMouse 1.8s infinite;
}

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

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-info-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.about-info-panel p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
}

.location-highlight {
    display: flex;
    gap: 1.25rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.location-highlight:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.loc-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.loc-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.loc-details p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Pillars Cards Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pillar-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 2.25rem 1.75rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 182, 212, 0.3);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.25rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

/* Service glowing decoration on active/hover */
.service-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.08) 0%, rgba(var(--color-secondary-rgb), 0.02) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover .service-glow-bg, .service-card.active .service-glow-bg {
    opacity: 1;
}

.service-card:hover, .service-card.active {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(var(--color-primary-rgb), 0.25);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.service-bullets li svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* --- Products Section --- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.showcase-content .prod-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.product-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feat-item {
    display: flex;
    gap: 1.25rem;
}

.feat-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feat-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feat-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* HRMS Browser Dashboard Mockup */
.hrms-mockup-browser {
    background: #0b0f19;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    aspect-ratio: 1.45;
}

[data-theme="light"] .hrms-mockup-browser {
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0,0,0,0.1);
}

.browser-header {
    background: #0f1624;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

[data-theme="light"] .browser-header {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
}

[data-theme="light"] .browser-dots .dot {
    background-color: #94a3b8;
}

.browser-address {
    background: #090d16;
    border-radius: 6px;
    padding: 0.25rem 1rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    flex-grow: 1;
    max-width: 320px;
    border: 1px solid rgba(255,255,255,0.05);
}

[data-theme="light"] .browser-address {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #475569;
}

/* Dashboard Body */
.hrms-dashboard-body {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.hrms-sidebar {
    width: 140px;
    background: #0a0e17;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[data-theme="light"] .hrms-sidebar {
    background: #cbd5e1;
    border-color: #94a3b8;
}

.sidebar-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
}

.sidebar-logo svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.sidebar-btn:hover {
    background: rgba(255,255,255,0.03);
    color: var(--color-text);
}

[data-theme="light"] .sidebar-btn:hover {
    background: rgba(0,0,0,0.05);
}

.sidebar-btn.active {
    background: rgba(6, 182, 212, 0.08);
    color: var(--color-primary);
}

.sidebar-btn svg {
    width: 12px;
    height: 12px;
}

/* Dashboard main panels */
.hrms-main-content {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background: #090d16;
}

[data-theme="light"] .hrms-main-content {
    background: #f8fafc;
}

.hrms-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.hrms-tab-panel.active {
    display: block;
}

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

.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.widget {
    background: #0f1624;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .widget {
    background: #ffffff;
    border-color: #e2e8f0;
}

.widget .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
}

.widget .val {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0.15rem 0;
}

.widget .sub {
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.widget .sub svg {
    width: 8px;
    height: 8px;
}

.chart-mockup {
    background: #0f1624;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.85rem;
}

[data-theme="light"] .chart-mockup {
    background: #ffffff;
    border-color: #e2e8f0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 90px;
    padding-top: 10px;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 14%;
}

.bar-fill {
    width: 100%;
    background: var(--gradient-accent);
    border-radius: 3px 3px 0 0;
    height: 0;
    transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar-col span {
    font-size: 0.6rem;
    color: var(--color-text-muted);
}

/* Directory view table */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.panel-header h4 {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.panel-header .badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-primary);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
}

.dashboard-table th, .dashboard-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

[data-theme="light"] .dashboard-table th, [data-theme="light"] .dashboard-table td {
    border-color: #cbd5e1;
}

.dashboard-table th {
    color: var(--color-text-muted);
    font-weight: 700;
}

.status-tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-leave {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Payroll Mockup details */
.payroll-details {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.p-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

[data-theme="light"] .p-row {
    border-color: #cbd5e1;
}

/* Products Grid Cards (Busy, CRM, Influencer, iHMS) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-grid-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 182, 212, 0.2);
}

.prod-card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.75rem;
}

.prod-card-icon svg {
    width: 24px;
    height: 24px;
}

.product-grid-card .prod-title {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-grid-card .prod-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Busy Accounting Special Badges & Lists */
.partner-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.partner-badge svg {
    width: 12px;
    height: 12px;
}

.prod-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.prod-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.prod-bullets li svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* CRM Special waitlist styling */
.soon-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 700;
}

.crm-waitlist-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
}

.crm-waitlist-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    background: var(--color-input-bg);
    border: 1px solid var(--color-card-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.crm-waitlist-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.crm-waitlist-form button {
    padding: 0.75rem 1.25rem;
}

.form-feedback {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Clients Section --- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 2.25rem;
    display: block;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.client-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-icon-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-glow);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.client-icon-placeholder svg {
    width: 24px;
    height: 24px;
}

.client-logo-wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(60%);
    transition: var(--transition-smooth);
}

[data-theme="light"] .client-logo-img {
    filter: grayscale(100%) opacity(75%);
}

.client-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.client-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Hover effects */
.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.client-card:hover .client-icon-placeholder {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: scale(1.1);
}

.client-card:hover .client-logo-img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

/* --- Contact & Map Section --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-item .icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-detail-item .icon-box svg {
    width: 20px;
    height: 20px;
}

.detail-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

.detail-text p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

.detail-text a {
    color: var(--color-text);
}
.detail-text a:hover {
    color: var(--color-primary);
}

/* Premium Map Container */
.map-wrapper {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-header {
    background: var(--color-bg-secondary);
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 1px solid var(--color-card-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
}

.map-header svg {
    width: 14px;
    height: 14px;
}

#leafletMap {
    height: 250px;
    width: 100%;
    z-index: 5;
}

/* Styled map overrides for Leaflet */
.leaflet-container {
    background: var(--color-bg) !important;
}

/* Contact Form UI */
.contact-form-wrapper {
    position: relative;
}

.glass-form-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.glass-form-card h3 {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.glass-form-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.input-group {
    position: relative;
    width: 100%;
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 0.85rem 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-card-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group select {
    cursor: pointer;
    color: var(--color-text-muted);
}

.input-group select option {
    background: var(--color-bg-secondary);
    color: var(--color-text);
}

.input-group label {
    position: absolute;
    left: 0.5rem;
    top: 0.85rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

/* Floating labels magic */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Custom Highlight Bar */
.bar-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
}

.input-group input:focus ~ .bar-highlight,
.input-group textarea:focus ~ .bar-highlight,
.input-group select:focus ~ .bar-highlight {
    width: 100%;
}

/* Feedback Overlay */
.form-feedback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 15;
}

.form-feedback-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.feedback-content {
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-feedback-overlay.active .feedback-content {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.5rem auto;
}

.success-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.feedback-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feedback-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* --- Footer --- */
.main-footer {
    background: #070d1e; /* Premium Dark Navy Blue */
    border-top: 1px solid var(--color-card-border);
    padding-top: 5rem;
    position: relative;
    z-index: 10;
}

[data-theme="light"] .main-footer {
    background: #070d1e;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 5rem;
    padding-bottom: 4rem;
}

.footer-brand .footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 1.25rem 0 1.75rem 0;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

/* Footer menu grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   TechnisoftHRMS Product Page Specific Styles
   ========================================================================== */
.hrms-detail-page {
    overflow-x: hidden;
}

.hrms-main-wrapper {
    padding-top: var(--header-height);
}

.hrms-hero-section {
    position: relative;
    padding: 6rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hrms-hero-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hrms-hero-content .compliance-badge {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.showcase-visual-wrapper {
    position: relative;
    width: 100%;
}

.mockup-browser-container {
    background: #0b0f19;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .mockup-browser-container {
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0,0,0,0.1);
}

.browser-header-mock {
    background: #0f1624;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

[data-theme="light"] .browser-header-mock {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.mock-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

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

.mock-dots .red { background-color: #ff5f56; }
.mock-dots .yellow { background-color: #ffbd2e; }
.mock-dots .green { background-color: #27c93f; }

.mock-address {
    background: #090d16;
    border-radius: 6px;
    padding: 0.25rem 1rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    flex-grow: 1;
    max-width: 380px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[data-theme="light"] .mock-address {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #475569;
}

.mockup-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Alternate Rows for Detailed Features */
.features-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.feature-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-detail-row.reverse .feat-detail-info {
    grid-column: 2;
}

.feature-detail-row.reverse .feat-detail-visual,
.feature-detail-row.reverse .feat-detail-visual-box {
    grid-column: 1;
    grid-row: 1;
}

.icon-header-box {
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.icon-header-box svg {
    width: 24px;
    height: 24px;
}

.feat-detail-info h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.feat-detail-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.detail-feat-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
}

.detail-feat-list li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Glass Detail Cards (Interactive Mock elements) */
.glass-detail-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-detail-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-card-border);
    padding-bottom: 0.75rem;
}

.attendance-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attendance-stat-row .a-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--color-card-border);
}

[data-theme="light"] .attendance-stat-row .a-stat {
    background: rgba(255, 255, 255, 0.5);
}

.a-stat .lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.a-stat .val {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

.biometric-log {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.biometric-log .log-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.biometric-log .log-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* Appraisal Score review card */
.review-meter {
    margin-bottom: 1.5rem;
}

.meter-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .meter-bar {
    background: rgba(0,0,0,0.08);
}

.meter-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
}

.review-meter .score {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
}

.appraisal-comments {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

[data-theme="light"] .appraisal-comments {
    background: rgba(255, 255, 255, 0.5);
}

.appraisal-comments .comment {
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.appraisal-comments .author {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 700;
}

/* Recruitment Pipeline Kanban Mockup */
.recruitment-pipeline-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pipeline-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.pipeline-column {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid var(--color-card-border);
}

[data-theme="light"] .pipeline-column {
    background: rgba(0, 0, 0, 0.03);
}

.pipeline-column.active-column {
    border-color: var(--color-primary);
    background: rgba(19, 157, 216, 0.03);
}

.column-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.candidate-card {
    background: var(--color-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 6px;
    padding: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.candidate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

[data-theme="light"] .candidate-card {
    background: #ffffff;
}

.candidate-card.pulse-border {
    border-color: #f89a1c;
    position: relative;
}

.candidate-card.success-border {
    border-color: #10b981;
}

.candidate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.candidate-header .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.match-badge {
    font-size: 0.65rem;
    background: rgba(19, 157, 216, 0.1);
    color: var(--color-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.status-indicator {
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(248, 154, 28, 0.1);
    color: #f89a1c;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.status-indicator.live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f89a1c;
    animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.offered-badge {
    font-size: 0.65rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.candidate-meta {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.interviewer-avatars {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
}

.avatar-sm {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.avatar-sm:last-child {
    background: var(--color-secondary);
}

/* Creator Profile Card and Demographics (InfluencerBoosterX) */
.creator-profile-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.creator-profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.creator-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3680 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.creator-identity {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.creator-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.creator-name-row h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.verified-tag {
    font-size: 0.65rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 700;
}

.verified-tag svg {
    width: 10px;
    height: 10px;
}

.creator-handle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.fit-score {
    font-size: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 800;
}

.creator-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    padding: 1rem 0;
}

.demographics-panel h5 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.demographics-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-row {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.demo-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

[data-theme="light"] .demo-bar {
    background: rgba(0,0,0,0.08);
}

.demo-fill {
    height: 100%;
    background: linear-gradient(90deg, #a78bfa 0%, #7c3680 100%);
    border-radius: 4px;
}

/* Compliance Section styling */
.compliance-section {
    background: radial-gradient(circle at 10% 20%, rgba(19, 157, 216, 0.05) 0%, rgba(0, 0, 0, 0) 60%), var(--color-bg-secondary);
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
}

.compliance-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.compliance-card {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.compliance-card .comp-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance-card .comp-icon-box svg {
    width: 18px;
    height: 18px;
}

.compliance-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.compliance-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Sandbox Calculator Card */
.calc-table {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--color-card-border);
}

.calc-row.header {
    font-weight: 700;
    color: var(--color-primary);
    border-bottom-style: solid;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.calc-row.total {
    font-size: 1.1rem;
    font-weight: 800;
    border-bottom: none;
    padding-top: 0.5rem;
    border-top: 2px solid var(--color-card-border);
}

.calc-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.calc-disclaimer svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Custom CTA card */
.cta-card {
    background: var(--gradient-accent);
    border-radius: var(--border-radius-lg);
    padding: 5rem 2.5rem;
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.cta-card p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card .btn-secondary:hover {
    background: #ffffff;
    color: var(--color-text-dark);
}

/* --- Media Queries (Fully Responsive Layouts) --- */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Product detailed page responsive grid */
    .hrms-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hrms-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .feature-detail-row.reverse .feat-detail-info {
        grid-column: 1;
    }

    .feature-detail-row.reverse .feat-detail-visual,
    .feature-detail-row.reverse .feat-detail-visual-box {
        grid-column: 1;
        grid-row: auto;
    }

    .icon-header-box {
        margin-left: auto;
        margin-right: auto;
    }

    .detail-feat-list {
        align-items: center;
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .compliance-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .features-detail-layout {
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    /* Mobile Menu */
    .mobile-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-bg);
        border-top: 1px solid var(--color-card-border);
        padding: 3rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 999;
    }
    
    .navbar.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    /* Toggle active bar transformations */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .glass-form-card {
        padding: 2.5rem 1.5rem;
    }

    /* Hide hero floating cards on mobile to avoid overflow and clean up view */
    .floating-card-1, .floating-card-2 {
        display: none;
    }
    
    .hero-main-logo {
        width: 180px;
        height: 180px;
    }
    
    .tech-card-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Tabbed/Horizontal Layout for HRMS Mockup Dashboard on small screens */
@media (max-width: 580px) {
    .pipeline-board {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hrms-mockup-browser {
        aspect-ratio: auto;
        height: 380px;
    }
    
    .hrms-dashboard-body {
        flex-direction: column;
    }
    
    .hrms-sidebar {
        width: 100%;
        padding: 0.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-right: none;
        border-bottom: 1px solid var(--color-card-border);
        gap: 0.5rem;
    }
    
    .sidebar-logo {
        display: none;
    }
    
    .sidebar-nav {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        gap: 0.25rem;
    }
    
    .sidebar-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        justify-content: center;
    }
    
    .hrms-main-content {
        padding: 0.75rem;
    }
    
    .dashboard-widgets {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }

    /* Stack hero buttons vertically to prevent clipping */
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

    /* Scale down header logo area on small screens */
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .logo-slogan {
        font-size: 0.6rem;
    }
    
    .logo-area {
        gap: 0.5rem;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
    
    .theme-toggle svg {
        width: 16px;
        height: 16px;
    }

    /* Adjust page paddings for mobile */
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Product Page mobile optimizations */
    .glass-detail-card {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.85rem;
    }

    .cta-card p {
        font-size: 1rem;
    }

    .attendance-stat-row {
        grid-template-columns: 1fr;
    }

    /* Pricing responsive */
    .pricing-cards-grid { grid-template-columns: 1fr; }
    .pricing-quote-grid { grid-template-columns: 1fr; }
    .pricing-product-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .pricing-card-featured { order: -1; }
}

/* ==========================================================================
   NAV DROPDOWN (Pricing)
   ========================================================================== */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    transform: translateX(-50%) translateY(-6px);
    z-index: 500;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.dropdown-item:hover {
    background: var(--gradient-glow);
    color: var(--color-text);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    background: var(--color-bg);
}

/* Product Block (HRMS) */
.pricing-product-block {
    margin-bottom: 4rem;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

.pricing-product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.pricing-product-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    background: var(--gradient-glow);
    border: 1px solid var(--color-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-product-icon i { width: 26px; height: 26px; }

.pricing-product-title {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.pricing-product-sub {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pricing-product-header .btn {
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

/* HRMS Teaser Banner */
.hrms-pricing-teaser {
    background: linear-gradient(135deg, rgba(19,157,216,0.08) 0%, rgba(139,92,246,0.08) 100%);
    border: 1px solid rgba(19,157,216,0.25);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

.teaser-badge i { width: 14px; height: 14px; }

.hrms-pricing-teaser p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.97rem;
    line-height: 1.7;
}

.hrms-pricing-teaser a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.teaser-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.teaser-perks span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.teaser-perks i {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    position: relative;
    background: var(--color-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(160deg, rgba(19,157,216,0.06) 0%, rgba(139,92,246,0.06) 100%);
    box-shadow: var(--shadow-glow);
}

.pricing-best-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pricing-best-badge i { width: 12px; height: 12px; }

.pricing-tier-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.pricing-billing-cycle {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.25rem 0;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.pricing-billing-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    width: fit-content;
    border: 1px solid var(--color-card-border);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0.5rem 0 1rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-features li i {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Quote Cards Grid */
.pricing-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pricing-quote-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.pricing-quote-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.pricing-quote-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-quote-icon i { width: 22px; height: 22px; }

.pricing-quote-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pricing-quote-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.pricing-quote-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    margin-bottom: 0.5rem;
}

.pricing-quote-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.pricing-quote-bullets li i {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Soon pill badge */
.soon-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(248,154,28,0.15);
    color: var(--color-secondary);
    border: 1px solid rgba(248,154,28,0.3);
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    vertical-align: middle;
}

/* Light mode adjustments */
[data-theme="light"] .pricing-product-block {
    background: rgba(255,255,255,0.8);
}

[data-theme="light"] .pricing-card {
    background: #fff;
}

[data-theme="light"] .pricing-card-featured {
    background: linear-gradient(160deg, rgba(12,131,184,0.05) 0%, rgba(109,40,217,0.05) 100%);
}

[data-theme="light"] .pricing-billing-note {
    background: rgba(0,0,0,0.04);
}

[data-theme="light"] .hrms-pricing-teaser {
    background: linear-gradient(135deg, rgba(12,131,184,0.07) 0%, rgba(109,40,217,0.07) 100%);
}

[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

