:root {
    --primary: #ff2d55;
    --primary-hover: #d81b43;
    --secondary: #e11d48;
    --bg-light: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
    --font-main:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.dark {
    background-color: var(--text-dark);
    color: var(--white);
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary);
    color: var(--white);
    padding: 150px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.geometric-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    width: 0;
    height: 0;
    border-left: 300px solid transparent;
    border-right: 300px solid transparent;
    border-bottom: 500px solid #fff;
    opacity: 0.1;
    bottom: -100px;
    right: -100px;
    transform: rotate(15deg);
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #000;
    opacity: 0.1;
    top: -150px;
    right: 300px;
    transform: rotate(45deg);
}

/* Content blocks */
.content {
    font-size: 1.2rem;
    max-width: 800px;
}

.content p {
    margin-bottom: 20px;
}

.highlight-block {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.highlight-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.styled-list {
    list-style-type: none;
    margin: 30px 0;
}

.styled-list li {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.styled-list li::before {
    content: "►";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.summary-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
    font-size: 2rem;
    color: var(--primary);
}

/* Tables & Stats */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.data-table th,
.data-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background-color: var(--bg-light);
    font-size: 1.2rem;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.stat-label {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-light);
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.stat-desc {
    display: block;
    font-size: 1rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.selected {
    border-color: var(--primary);
    background: #fff0f3;
}

.pricing-card h3 {
    font-size: 2rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    margin-top: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pricing-card ul li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.pricing-actions {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
}

.pricing-actions p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-actions .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    text-align: center;
    background-color: var(--bg-light);
}

.footer-links {
    margin: 40px 0;
}

.copyright {
    color: var(--text-light);
}

/* DASHBOARD STYLES */
.dashboard-body {
    display: flex;
    height: 100vh;
    background-color: #f8f9fa;
    overflow: hidden;
}

.sidebar {
    width: 250px;
    background-color: var(--white);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.sidebar .logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s;
}

.menu-item:hover,
.menu-item.active {
    color: var(--text-dark);
}

.dashboard-main {
    flex: 1;
    padding: 40px 60px;
    overflow-y: auto;
}

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

.btn-new-project {
    background-color: #f8a5c2;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.card-large {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.card-large h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-textarea {
    width: 100%;
    height: 120px;
    background-color: #f5f6f8;
    border: none;
    border-radius: 12px;
    padding: 20px;
    font-size: 1rem;
    resize: none;
    font-family: inherit;
    margin-bottom: 20px;
}

.project-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(248, 165, 194, 0.5);
}

.project-actions {
    display: flex;
    gap: 15px;
}

.btn-tag {
    background-color: #fce7ed;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
}

.recent-projects h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.projects-grid {
    display: flex;
    gap: 20px;
}

.project-card-blank {
    width: 200px;
    height: 150px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .market-stats {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
    .dashboard-body {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px;
    }
    .menu {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .dashboard-main {
        padding: 20px;
    }
}
