:root {
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --secondary-color: #6b7280;
    --success-color: #dc2626;
    --error-color: #dc2626;
    --text-primary: #000000;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --background-alt: #f3f4f6;
    --border-color: #d1d5db;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

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

.navbar {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.btn-primary {
    color: white;
}

.nav-menu a.btn-primary:hover {
    color: white;
}

.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.hero {
    background: #e5e7eb;
    color: #000000;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-logo {
    height: 50px;
    object-fit: contain;
}

.search-section {
    margin: 2rem 0 1.5rem;
}

.search-form {
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    gap: 0.75rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    transition: border-color 0.2s;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    outline: none;
}

.search-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-button:hover {
    background: var(--primary-hover);
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.category-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 6px 6px 0 0;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
    border-bottom: none;
    position: relative;
    bottom: -2px;
}

.category-tab:hover {
    color: var(--primary-color);
    background: var(--background-alt);
}

.category-tab.active {
    color: var(--primary-color);
    background: white;
    border-color: var(--border-color);
    border-bottom: 2px solid white;
}

.contracts-header {
    margin: 2rem 0 1.5rem;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contracts-stats {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.contracts-stats strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contracts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0 0 2rem 0;
}

.contract-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contract-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contract-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contract-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.contract-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #475569;
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

.auth-form {
    max-width: 450px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.auth-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: -2px;
    transition: all 0.2s;
}

.auth-tab:hover {
    color: var(--primary-color);
    background: var(--background-alt);
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.required {
    color: var(--error-color);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.detail-hero {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.detail-description {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
}

.detail-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.detail-content {
    margin-bottom: 4rem;
}

.form-intro {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.form-intro h2 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.form-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .detail-title {
        font-size: 2rem;
    }
    
    .detail-description {
        font-size: 1.1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-meta {
        font-size: 0.85rem;
    }
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state h2 {
    margin-bottom: 1rem;
}

.contract-header {
    margin-bottom: 2rem;
}

.contract-header h1 {
    margin-bottom: 0.5rem;
}

.contract-intro {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.contract-form {
    max-width: 700px;
    margin: 0 auto;
}

.checkout-container,
.payment-container {
    max-width: 900px;
    margin: 0 auto;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.checkout-section {
    margin-bottom: 2rem;
}

.checkout-section h3 {
    margin-bottom: 1rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.pricing-card:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.05);
}

.pricing-card input[type="radio"] {
    margin-right: 1rem;
}

.pricing-content h4 {
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.order-summary {
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-badge {
    background: var(--success-color);
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.payment-method-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: border-color 0.2s;
}

.payment-method-card:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.05);
}

.test-mode-banner {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #1f2937;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    border: 2px solid #d1d5db;
}

.payment-amount {
    text-align: center;
    font-size: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 8px;
}

.success-container {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.success-message {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.certificate-info {
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.certificate-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    margin-top: 0.5rem;
}

.download-section {
    margin: 2rem 0;
}

.info-text {
    color: var(--text-secondary);
    margin-top: 2rem;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

.account-main {
    min-width: 0;
}

.account-sidebar {
    min-width: 0;
}

.account-section {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.account-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.account-section h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.account-info {
    padding: 0;
    background: transparent;
}

.badge-member {
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.profile-form {
    margin-top: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-contracts {
    margin-top: 2rem;
}

.contracts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contract-item {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.contract-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.contract-item-header h3 {
    margin: 0;
}

.contract-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contract-item-body {
    margin-bottom: 1rem;
}

.contract-item-body p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.contract-item-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.edit-contract-header {
    margin-bottom: 2rem;
}

.edit-contract-header h1 {
    margin-bottom: 0.5rem;
}

.certificate-badge {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.edit-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 1rem;
    background: var(--background-alt);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-top: 1rem;
}

.admin-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.admin-section {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.admin-item-actions {
    display: flex;
    gap: 0.5rem;
}

.text-muted {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.upload-form {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 6px;
}

.domain-list {
    margin-top: 2rem;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.domain-tag {
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

.admin-form {
    max-width: 700px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: -2px;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

.add-field-form {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.fields-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.field-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
}

.badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.badge-required {
    background: var(--error-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-page {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.pricing-intro {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-option {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-option.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    background: var(--background-alt);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-body {
    padding: 2rem;
    flex: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row.highlighted {
    background: rgba(220, 38, 38, 0.05);
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
}

.price-label {
    font-weight: 500;
}

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

.price-savings {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin-top: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.workflow-steps {
    margin-top: 2rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.info-box h3 {
    margin-bottom: 1rem;
}

.info-box ol {
    margin-left: 1.5rem;
    line-height: 2;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.cta-box .btn-primary:hover {
    background: var(--background-alt);
}

.footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .contracts-grid {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Multi-Step Form Styles */
.multistep-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 3rem;
    position: relative;
}

.multistep-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.progress-step.completed .step-number::after {
    content: '✓';
}

.progress-step.completed .step-label {
    color: var(--text-primary);
}

.form-step {
    animation: fadeIn 0.3s ease-in;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.multistep-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    background: var(--background-alt);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .multistep-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .multistep-progress::before {
        display: none;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .multistep-navigation {
        flex-direction: column;
    }
    
    .multistep-navigation button {
        width: 100%;
        justify-content: center;
    }
}
