/* ===================================
   Angajări Videochat - Main Stylesheet
   Version: 3.0 | 2026 - PHP/MySQL CMS
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd9;
    --secondary: #9c27b0;
    --accent: #ff4081;
    
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-900: #212121;
    --gray-800: #424242;
    --gray-700: #616161;
    --gray-600: #757575;
    --gray-500: #9e9e9e;
    --gray-400: #bdbdbd;
    --gray-300: #e0e0e0;
    --gray-200: #eeeeee;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --navbar-height: 70px;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    padding-top: var(--navbar-height); /* IMPORTANT: Space for fixed navbar */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}

.logo-text strong {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray-300);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-light);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: var(--gradient-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(233,30,99,0.1)"/></svg>');
    background-size: 30px 30px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ===================================
   Page Hero (for inner pages)
   =================================== */
.page-hero {
    background: var(--gradient-dark);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(233,30,99,0.1)"/></svg>');
    background-size: 30px 30px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero .page-subtitle {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Breadcrumbs (SEO Helpers) */
.breadcrumbs {
    background: var(--gray-100);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    list-style: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gray-800);
    font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--gray-400);
}

/* ===================================
   Platform Hero
   =================================== */
.platform-hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.platform-hero .container {
    position: relative;
    z-index: 1;
}

.platform-hero .platform-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.platform-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.platform-hero .platform-tagline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.platform-hero .platform-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.platform-hero .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.platform-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: var(--primary-dark);
}

/* ===================================
   Content Section
   =================================== */
.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    align-items: start;
}

.main-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.main-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--gray-800);
}

.main-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.main-content ul, .main-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.main-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.main-content ul li {
    list-style: disc;
}

.main-content ol li {
    list-style: decimal;
}

.main-content strong {
    color: var(--gray-900);
}

/* ===================================
   Sidebar
   =================================== */
.sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + 1.5rem);
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.sidebar-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-card ul li a {
    display: block;
    padding: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.sidebar-card ul li a:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.sidebar-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar-card.highlight h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.3);
}

.sidebar-card.highlight p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.sidebar-card.highlight .btn {
    background: var(--white);
    color: var(--primary);
    width: 100%;
}

/* Info Card */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.info-card h4 {
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: var(--gray-900);
}

/* ===================================
   CTA Box
   =================================== */
.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-box .btn:hover {
    background: var(--gray-100);
}

/* ===================================
   Platforms Section
   =================================== */
.platforms-section {
    padding: 4rem 0;
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.platform-card.featured {
    border: 2px solid var(--primary);
}

.platform-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.platform-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.platform-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 1rem;
    background: var(--dark);
    padding: 8px 15px;
    border-radius: var(--radius-md);
}

.platform-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.platform-stat {
    text-align: center;
}

.platform-stat .label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.platform-stat .value {
    font-weight: 700;
    color: var(--gray-900);
}

.platform-features {
    margin-bottom: 1.5rem;
}

.platform-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.platform-actions {
    display: flex;
    gap: 0.75rem;
}

.platform-actions .btn {
    flex: 1;
    font-size: 0.9rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

/* ===================================
   Legal Pages
   =================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--gray-900);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }

/* ===================================
   Sticky CTA Banner
   =================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0.75rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-cta.visible {
    transform: translateY(0);
}
.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}
.cta-emoji {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.cta-message {
    font-size: 0.95rem;
}
.sticky-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.btn-sticky-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    animation: glow 2s infinite alternate;
}
@keyframes glow {
    from { box-shadow: 0 0 10px rgba(233,30,99,0.5); }
    to { box-shadow: 0 0 20px rgba(233,30,99,0.8); }
}
.btn-sticky-cta:hover {
    transform: scale(1.05);
    color: white;
}
.sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}
.sticky-cta-close:hover {
    color: white;
}

/* Footer Trust Badges */
.footer-trust {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.trust-badge {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}
.footer-logo .logo-icon { font-size: 1.5rem; }
.footer-logo .logo-text { color: white; }
.footer-logo .logo-text strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight-link {
    color: var(--primary) !important;
    font-weight: 600;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--navbar-height);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .platform-hero {
        padding: 60px 0;
    }
    
    .platform-hero .platform-stats {
        gap: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .platform-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-actions {
        flex-direction: column;
    }
    
    .cta-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden { display: none !important; }

/* ===================================
   Platform Full Article Styles
   =================================== */
.platform-full-article {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.platform-full-article .platform-section {
    margin-bottom: 2rem;
}

.platform-full-article h2 {
    color: var(--dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.platform-full-article h3 {
    color: var(--gray-800);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.platform-full-article p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.platform-full-article ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.platform-full-article ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.platform-full-article ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.platform-full-article ul li strong {
    color: var(--gray-800);
}

.platform-full-article strong {
    color: var(--dark);
}

/* Section backgrounds for visual variety */
.platform-full-article .platform-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.03) 0%, rgba(156, 39, 176, 0.03) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem -1.5rem;
}

@media (max-width: 768px) {
    .platform-full-article h2 {
        font-size: 1.5rem;
    }
    
    .platform-full-article h3 {
        font-size: 1.2rem;
    }
    
    .platform-full-article .platform-section:nth-child(odd) {
        margin: 1.5rem -0.5rem;
        padding: 1rem;
    }
}
