/* Design System Variables */
:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --radius: 0.5rem;
}

.dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--background)), hsl(var(--background) / 0.95));
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.text-primary {
    color: hsl(var(--primary));
}

.text-foreground {
    color: hsl(var(--foreground));
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

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

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

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

.btn-outline:hover {
    background-color: hsl(var(--accent));
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary) / 0.9);
}

/* Header Styles */
.header {
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
    margin-bottom: 30px;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-buttons {
    display: flex;
}

.logo-image img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

/* Hero Styles */
.hero {
    position: relative;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 9999px;
    border: 1px solid hsl(var(--primary) / 0.2);
    width: fit-content;
}

.badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.hero-features {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.feature-dot.green {
    background-color: #10b981;
}

.feature-dot.blue {
    background-color: #3b82f6;
}

.feature-dot.purple {
    background-color: #8b5cf6;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.heatmap-container {
    aspect-ratio: 1;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--primary) / 0.05));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid hsl(var(--primary) / 0.2);
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.25rem;
    height: 100%;
}

.grid-item {
    border-radius: 0.125rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.grid-item:hover {
    transform: scale(1.1);
}

.grid-item.green {
    background-color: #10b981;
}

.grid-item.yellow {
    background-color: #f59e0b;
}

.grid-item.orange {
    background-color: #ea580c;
}

.grid-item.red {
    background-color: #dc2626;
}

.grid-item.gray {
    background-color: #d1d5db;
}

.heatmap-label {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 1.5rem;
    background-color: hsl(var(--card) / 0.3);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

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

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

.feature-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border) / 0.5);
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: hsl(var(--primary) / 0.5);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon.primary {
    background-color: hsl(var(--primary) / 0.1);
}

.feature-icon.blue {
    background-color: rgb(59 130 246 / 0.1);
}

.feature-icon.green {
    background-color: rgb(16 185 129 / 0.1);
}

.feature-icon.purple {
    background-color: rgb(139 92 246 / 0.1);
}

.feature-icon.orange {
    background-color: rgb(234 88 12 / 0.1);
}

.feature-icon.red {
    background-color: rgb(220 38 38 / 0.1);
}

.icon-square {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.125rem;
}

.feature-icon.primary .icon-square {
    background-color: hsl(var(--primary));
}

.feature-icon.blue .icon-square {
    background-color: #3b82f6;
}

.feature-icon.green .icon-square {
    background-color: #10b981;
}

.feature-icon.purple .icon-square {
    background-color: #8b5cf6;
}

.feature-icon.orange .icon-square {
    background-color: #ea580c;
}

.feature-icon.red .icon-square {
    background-color: #dc2626;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: hsl(var(--muted-foreground));
}

/* Pricing Section */
.pricing {
    padding: 5rem 1.5rem;
}

.pricing-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

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

.pricing-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

.pricing-card {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--primary) / 0.1));
    border-radius: 1rem;
    border: 1px solid hsl(var(--primary) / 0.2);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 0.5rem;
    font-weight: 600;
}

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

.pricing-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    color: hsl(var(--muted-foreground));
    margin-left: 0.5rem;
}

.pricing-description {
    color: hsl(var(--muted-foreground));
}

.pricing-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

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

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

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

.pricing-button {
    padding: 1rem 3rem;
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* CTA Section */
.cta {
    padding: 5rem 1.5rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    border-top: 1px solid hsl(var(--border) / 0.5);
    margin-top: 30px;
    padding: 2rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.footer-logo-image {
    height: 1.5rem;
    width: auto;
}

.footer-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.footer-copyright {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}






[v-cloak] {
    display: none;
}

/*
UTILITIES
 */
.fs-7 {
    font-size: 0.875rem;
}


/*
FORMS
 */
.form-group {
    margin-bottom: 20px;
    .col-form-label {
        text-align: right;
    }
}

