:root {
    /* Палитра "Deep Void" */
    --bg-deep: #030014;
    --bg-card: rgba(10, 10, 20, 0.65);
    --bg-card-hover: rgba(20, 20, 35, 0.8);
    
    /* Акцентные цвета */
    --accent-cyan: #00f3ff;
    --accent-purple: #bd00ff;
    --accent-pink: #ff0055;
    --accent-blue: #2563eb;
    
    /* Текст и Границы */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 243, 255, 0.3);
    
    /* Эффекты */
    --glow-primary: 0 0 20px rgba(0, 243, 255, 0.15);
    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Three.js Canvas Background */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7; /* Затемняем звезды для читаемости контента */
}

/* Platform Container */
.space-platform {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

.platform-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px;
}

/* Header */
.dashboard-header {
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 24px;
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.logo-section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.logo-icon {
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
}

.logo-icon img.custom-logo {
    max-height: 50px;
    width: auto;
    animation: none;
    filter: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8)); }
}

.platform-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.header-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-dropdown:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.filter-dropdown select {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    padding-right: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.filter-dropdown:hover select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.filter-dropdown select option {
    background: #0a0a0a;
    color: #fff;
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.metric-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

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

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Glow Effect restored but updated colors */
.metric-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

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

.metric-card:hover .metric-glow { opacity: 1; }

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Updated Colors per Card Type */
.metric-card.primary .metric-icon { color: var(--accent-cyan); box-shadow: 0 0 20px rgba(0, 243, 255, 0.1); }
.metric-card.secondary .metric-icon { color: var(--accent-purple); box-shadow: 0 0 20px rgba(189, 0, 255, 0.1); }
.metric-card.tertiary .metric-icon { color: var(--accent-pink); box-shadow: 0 0 20px rgba(255, 0, 85, 0.1); }
.metric-card.quaternary .metric-icon { color: var(--text-main); box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }

.metric-content { flex: 1; position: relative; z-index: 2; }

.metric-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent-cyan); /* Positive styling */
    font-weight: 500;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.dashboard-card {
    grid-column: span 6;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

/* Delays preserved */
.dashboard-card:nth-child(1) { animation-delay: 0.1s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.3s; }
.dashboard-card:nth-child(4) { animation-delay: 0.4s; }
.dashboard-card:nth-child(5) { animation-delay: 0.5s; }
.dashboard-card:nth-child(6) { animation-delay: 0.6s; }
.dashboard-card:nth-child(7) { animation-delay: 0.7s; }
.dashboard-card:nth-child(8) { animation-delay: 0.8s; }

.dashboard-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.dashboard-card.large { grid-column: span 6; }
.dashboard-card.wide { grid-column: span 6; }
.dashboard-card.analysis { grid-column: span 12; }

/* Subtle gradient border effect on hover */
.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.03), rgba(189, 0, 255, 0.03));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.dashboard-card:hover::before { opacity: 1; }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.card-badge {
    font-size: 11px;
    color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.05);
}

.chart-container {
    position: relative;
    height: 280px;
}

/* Gauge */
.gauge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.gauge-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.gauge-progress {
    transition: stroke-dasharray 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px var(--accent-cyan));
    stroke: var(--accent-cyan);
}

.gauge-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    fill: #fff;
}

.gauge-label {
    font-size: 14px;
    fill: var(--text-muted);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.gauge-description {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
}

/* Analysis */
.analysis-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analysis-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
}

.analysis-text strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

.analysis-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-tag {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-tag:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateY(-2px);
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(6px);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}

.legend-name {
    flex: 1;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.legend-value {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-container {
    background: #080810;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.modal-close {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.modal-close:hover {
    background: rgba(255, 0, 85, 0.1);
    border-color: rgba(255, 0, 85, 0.4);
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-filters {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 1px var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-pill {
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    border-color: #fff;
    color: #fff;
}

.filter-pill.active {
    background: #fff;
    border-color: #fff;
    color: #000;
    font-weight: 600;
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
.modal-content::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
.modal-content::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.company-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.5s ease;
}

.company-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.company-info { flex: 1; }

.company-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.company-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.company-type {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--accent-cyan);
    font-weight: 600;
}

.company-status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    font-weight: 600;
}

.company-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.company-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

.stat-item svg { color: var(--accent-cyan); flex-shrink: 0; }

.company-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.view-details {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #000;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
    text-align: center;
}

.empty-state svg { margin-bottom: 20px; opacity: 0.3; }

.empty-state h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro svg {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
}

.form-intro h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.form-intro p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-group .required {
    color: var(--accent-pink);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group select option {
	color: #000;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-cyan);
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.2);
}

.btn-submit:hover:not(:disabled) {
    background: #00d9e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 243, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit svg {
    flex-shrink: 0;
}

.btn-cancel {
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.form-message.error {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.3);
    color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 1400px) {
    .dashboard-card { grid-column: span 6; }
    .dashboard-card.large, .dashboard-card.wide { grid-column: span 12; }
}

@media (max-width: 768px) {
    .platform-container { padding: 20px; }
    .dashboard-header { padding: 20px; }
    .header-content { flex-direction: column; align-items: flex-start; }
    .platform-title { font-size: 24px; }
    .metrics-row { grid-template-columns: 1fr; }
    .dashboard-card { grid-column: span 12; }
    .companies-grid { grid-template-columns: 1fr; }
    .modal-header, .modal-filters, .modal-content { padding: 20px; }
    .company-stats { grid-template-columns: 1fr; }
    
    /* Form responsive styles */
    .form-intro h3 { font-size: 20px; }
    .form-intro p { font-size: 14px; }
    .form-actions {
        flex-direction: column;
    }
    .btn-submit, .btn-cancel {
        width: 100%;
    }
}