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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-image {
    width: 100%;
    height: 70px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #7b8f76, #6b7f66);
    color: white;
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #6a7a65;
    box-shadow: 0 4px 12px rgba(123, 143, 118, 0.3);
    transition: all 0.3s ease;
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: #7b8f76;
    border: 2px solid #7b8f76;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #7b8f76;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f0f9ff 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #7b8f76, #9ba896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.app-mockup {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.app-mockup:hover {
    transform: rotate(2deg) scale(1.02);
}

.app-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideInRight 2s ease-out;
}

.mockup-notification {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-icon {
    font-size: 20px;
}

.notification-title {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

.notification-subtitle {
    font-size: 10px;
    color: #6b7280;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #f0fdf4;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    border: 1px solid #a7f3d0;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

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

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Calendar Demo Large */
.calendar-demo-large {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.calendar-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav span {
    width: 30px;
    height: 30px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: #6b7280;
}

.calendar-nav span:hover {
    background: #2563eb;
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.calendar-day {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 8px;
}

.calendar-date {
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-date:hover {
    background: #f3f4f6;
}

.calendar-date.event-day {
    background: #dbeafe;
    color: #2563eb;
    font-weight: 600;
    position: relative;
}

.calendar-date.event-day::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #2563eb;
    border-radius: 50%;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-event-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.event-dot.blue {
    background: #2563eb;
}

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

/* Chat Demo Large */
.chat-demo-large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.chat-header {
    background: #f8fafc;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #7b8f76;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.chat-user-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.chat-user-status {
    font-size: 12px;
    color: #10b981;
}

.chat-actions {
    display: flex;
    gap: 12px;
}

.chat-actions span {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.chat-actions span:hover {
    opacity: 1;
}

.chat-messages {
    padding: 16px;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 80%;
}

.chat-message.received {
    align-self: flex-start;
}

.chat-message.sent {
    align-self: flex-end;
}

.message-content {
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 4px;
}

.chat-message.sent .message-content {
    background: #7b8f76;
    color: white;
}

.message-photos {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.photo-placeholder {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.message-time {
    font-size: 11px;
    color: #9ca3af;
    text-align: right;
}

.chat-message.received .message-time {
    text-align: left;
}

.chat-input {
    padding: 12px 16px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.chat-input input:focus {
    border-color: #2563eb;
}

.chat-input button {
    background: #7b8f76;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

/* Artisan Section */
.artisan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.artisan-benefit {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.artisan-benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
}

.benefit-icon.free {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-icon.professional {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.benefit-icon.chat {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-icon.schedule {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-icon.payment {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.benefit-icon.documents {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.benefit-icon.peace {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.benefit-icon.dashboard {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.artisan-benefit h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.artisan-benefit p {
    color: #6b7280;
    line-height: 1.6;
}

.artisan-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.artisan-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.artisan-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #f0fdf4;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
}

.progress-bar-demo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 2s ease;
}

.chat-demo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-message {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    padding: 8px 12px;
    border-radius: 20px;
    border-bottom-left-radius: 4px;
}

.chat-avatar {
    width: 24px;
    height: 24px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.chat-content {
    font-size: 12px;
    color: #1f2937;
    font-weight: 500;
}

.calendar-demo {
    background: white;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;
}

.calendar-event {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-time {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
}

.event-title {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.event-status {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    align-self: flex-start;
}

.event-status.confirmed {
    background: #dcfce7;
    color: #166534;
}

.solution-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solution-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.solution-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    width: 16px;
    height: 16px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, #2563eb, #8b5cf6);
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-visual {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.form-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.form-field input {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

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

.artisan-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.artisan-avatar {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.artisan-info {
    flex: 1;
}

.artisan-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.artisan-trade {
    font-size: 12px;
    color: #6b7280;
}

.artisan-status {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.artisan-status.invited {
    background: #fef3c7;
    color: #92400e;
}

.artisan-status.active {
    background: #dcfce7;
    color: #166534;
}

.dashboard-demo {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.project-card-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.status.in-progress {
    background: #fef3c7;
    color: #92400e;
}

.progress-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recent-updates {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.update-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.update-time {
    color: #9ca3af;
}

.update-text {
    color: #374151;
    font-weight: 500;
}

.completion-demo {
    display: flex;
    justify-content: center;
}

.completion-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #10b981;
    max-width: 300px;
}

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

.completion-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.completion-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.completion-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-small:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* Examples Section */
.examples-section {
    padding: 80px 0;
    background: white;
}

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

.example-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.example-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.example-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
}

.example-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.example-duration,
.example-budget {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.example-duration {
    background: #dbeafe;
    color: #1d4ed8;
}

.example-budget {
    background: #dcfce7;
    color: #166534;
}

.example-image {
    margin: 1rem 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-content {
    padding: 0 1.5rem 1.5rem;
}

.example-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.example-content strong {
    color: #374151;
    font-weight: 600;
}

.example-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

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

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.result-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f8fafc;
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.demo-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    position: relative;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-button {
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.demo-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.demo-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-checklist span:last-child {
    color: #374151;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-icon.client {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.feature-icon.artisan {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.manager {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.feature-testimonial {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.feature-testimonial p {
    font-style: italic;
    color: #374151;
    margin-bottom: 0.5rem;
}

.feature-testimonial cite {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

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

.services-section {
  margin-top: 4rem;
  text-align: center;
}

.services-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

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

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #7b8f76;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #6a7a65;
}

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

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: #7b8f76;
  margin-bottom: 1.5rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #7b8f76;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7b8f76, #6b7f66);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #7b8f76;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.pricing-guarantee {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.pricing-faq {
    margin-top: 4rem;
    text-align: center;
}

.pricing-faq h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background-color: #7b8f76;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-details small {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

.contact-cta {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.contact-cta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-cta p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f0f9ff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-form-container {
    position: relative;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.success-message {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #9ca3af;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.early-access-banner {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.early-access-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.early-access-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.early-access-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.close {
    color: #6b7280;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1f2937;
}

.modal-body {
    padding: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.profile-selection {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.profile-option:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.profile-option.selected {
    border-color: #2563eb;
    background: #dbeafe;
}

.profile-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.profile-option h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-option p {
    color: #6b7280;
    font-size: 0.875rem;
}

.plan-selection {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.plan-option.selected {
    border-color: #2563eb;
    background: #dbeafe;
}

.plan-option.recommended {
    border-color: #7b8f76;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #7b8f76;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-option h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7b8f76;
    margin-bottom: 1rem;
}

.plan-option ul {
    list-style: none;
}

.plan-option li {
    padding: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.plan-option li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.form-navigation button {
    flex: 1;
}

/* Hero Value Proposition */
.hero-value-prop {
    margin-bottom: 2rem;
}

.hero-value-prop h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.time-saving {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.time-saving p {
    margin: 0;
    color: #92400e;
    font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #fef2f2;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
    border: 1px solid #fecaca;
}

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

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.problem-item p {
    color: #6b7280;
    line-height: 1.6;
}

.problem-conclusion {
    text-align: center;
    margin-top: 3rem;
}

.problem-conclusion h3 {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.problem-conclusion h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

/* Solution Content */
.solution-conclusion {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 12px;
    text-align: center;
}

.solution-conclusion p {
    margin: 0;
    color: #166534;
    font-size: 1.1rem;
}

/* Chat Section */
.chat-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

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

.chat-feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    border: 1px solid #c7d2fe;
}

.chat-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.chat-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.chat-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.litigation-protection {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.litigation-protection h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.litigation-protection p {
    font-size: 1.25rem;
    color: #dc2626;
    margin: 0;
}

/* Journal Section */
.journal-section {
    padding: 80px 0;
    background: #f0fdf4;
}

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

.journal-feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    border: 1px solid #a7f3d0;
}

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

.journal-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.journal-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.journal-benefits {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.journal-benefits p {
    font-size: 1.25rem;
    color: #059669;
    margin: 0;
}

/* Profiles Section */
.profiles-section {
    padding: 80px 0;
    background: white;
}

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

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card .profile-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.profile-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.profile-card.master {
    border: 2px solid #2563eb;
}

.profile-card.master h3 {
    color: #2563eb;
}

.profile-card.artisan {
    border: 2px solid #10b981;
}

.profile-card.artisan h3 {
    color: #10b981;
}

.profile-card.client {
    border: 2px solid #8b5cf6;
}

.profile-card.client h3 {
    color: #8b5cf6;
}

.profile-card ul {
    list-style: none;
    text-align: left;
}

.profile-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.profile-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Early Access Offer */
.early-access-offer {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #7b8f76, #9ba896);
    border-radius: 20px;
}

.early-access-offer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 2rem;
}

/* Competitive Section */
.competitive-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.competitive-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.competitive-item:hover {
    transform: translateY(-5px);
}

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

.competitive-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.competitive-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

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

.roadmap-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.roadmap-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #7b8f76;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.roadmap-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1rem 0 0.5rem;
}

.roadmap-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Renovation Section */
.renovation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.renovation-content {
    margin-top: 3rem;
}

.renovation-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.renovation-intro h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.renovation-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

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

.renovation-benefit {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.renovation-benefit:hover {
    transform: translateY(-5px);
}

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

.renovation-benefit h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.renovation-benefit p {
    color: #6b7280;
    line-height: 1.6;
}

.renovation-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.renovation-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.renovation-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7b8f76, #6b7f66);
}

.urgency-section .section-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
}

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

.urgency-benefit {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    border: 2px solid #fbbf24;
}

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

.urgency-benefit h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.urgency-benefit p {
    color: #6b7280;
    line-height: 1.6;
}

.urgency-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
.footer-map {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-map img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.footer-map-info {
    padding: 16px;
    text-align: center;
}

.footer-map-info h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.footer-map-info p {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .solution-item,
    .solution-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-step {
        grid-template-columns: 30px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mb-2 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}
.footer-section .logo-image {
width: 100%;
height: 100%;
}
