/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--font-md);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: var(--font-5xl);
    font-weight: var(--font-bold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

h2 {
    font-size: var(--font-4xl);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    margin-bottom: var(--space-5);
    color: var(--text-primary);
}

h3 {
    font-size: var(--font-3xl);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

h4 {
    font-size: var(--font-2xl);
    font-weight: var(--font-medium);
    line-height: 1.4;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

h5 {
    font-size: var(--font-xl);
    font-weight: var(--font-medium);
    line-height: 1.4;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

h6 {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    line-height: 1.4;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: var(--font-md);
    font-weight: var(--font-medium);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    min-height: 48px;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    border-color: transparent;
}

.btn-primary:hover {
    background: var(--bg-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-lg);
    min-height: 56px;
}

/* Utility Classes */
.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: var(--space-2);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bg-gradient);
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.subsection-title {
    color: var(--text-primary);
    border-left: 4px solid var(--primary-color);
    padding-left: var(--space-4);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

