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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.5;
}

/* Skip Link for Accessibility */
.skip-link:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 999999;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FA8643;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B35;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: #ffffff;
}

/* Navigation Styles */
.navbar {
    display: flex;
    height: 80px;
    padding: 0 60px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #F1F5F9;
    background: #ffffff;
}

.nav-content {
    display: flex;
    width: 100%;
    max-width: 1320px;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #374151;
}

.nav-link.active {
    color: #FA8643;
    font-weight: 600;
}

.cta-button {
    display: flex;
    height: 40px;
    padding: 8px 20px;
    align-items: center;
    border-radius: 10px;
    background: #FA8643;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background: #FF6B35;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.2s;
}

.mobile-menu-button:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero-section {
    display: flex;
    padding: 40px 60px 80px 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
    background: linear-gradient(225deg, #FA8643 14.64%, #FF6B35 85.36%);
    position: relative;
    overflow: visible;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    padding-top: 50px;
    min-height: 500px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding-top: 50px;
}

.hero-right {
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    margin-top: -150px;
}

.hero-badge {
    display: flex;
    padding: 12px 24px;
    align-items: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
}

.badge-text {
    color: #FA8643;
    font-size: 14px;
    font-weight: 600;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

h1.hero-title {
    color: #ffffff;
    text-align: left;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    color: #FFE4D6;
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

/* Hero Form */
.hero-form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(200px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Waitlist Section */
.waitlist-section {
    display: flex;
    padding: 100px 60px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background: #ffffff;
}

.waitlist-content {
    display: flex;
    width: 100%;
    max-width: 1320px;
    align-items: flex-start;
    gap: 80px;
}

.waitlist-text {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.waitlist-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.section-title {
    color: #111827;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle {
    color: #FA8643;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.check-icon {
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #FFF3EC;
}

.benefit-text {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

/* Waitlist Form */
.waitlist-form-container {
    display: flex;
    width: 50%;
    max-width: 560px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 20px;
    background: #F8FAFC;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.08);
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

h2.form-title {
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.form-description {
    color: #6B7280;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.form-description.additional-info {
    font-size: 14px;
    color: #9CA3AF;
    margin-top: 8px;
    line-height: 1.4;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

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

.form-input {
    display: flex;
    height: 56px;
    padding: 16px 20px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-input:focus {
    outline: none;
    border-color: #FA8643;
    box-shadow: 0 0 0 3px rgba(250, 134, 67, 0.1);
}

.waitlist-button {
    display: flex;
    height: 64px;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 16px;
    background: #FA8643;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 8px 24px 0 rgba(250, 134, 67, 0.19);
}

.waitlist-button:hover {
    background: #FF6B35;
}

.form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.privacy-text {
    color: #9CA3AF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.waiting-count {
    color: #FA8643;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

/* Platform Section */
.platform-section {
    display: flex;
    padding: 240px 60px 100px 60px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background: #F8FAFC;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.section-title-dark {
    color: #111827;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.section-description-dark {
    color: #6B7280;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.platform-demo {
    display: flex;
    width: 100%;
    max-width: 1320px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.navigation-tabs {
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
}

.tab {
    display: flex;
    height: 48px;
    padding: 16px 24px;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab:hover {
    background: #F8FAFC;
}

.tab.active {
    background: #FA8643;
}

.tab.active .tab-text {
    color: #ffffff;
    font-weight: 600;
}

.tab.active svg path {
    stroke: white;
}

.tab-text {
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.preview-content {
    display: flex;
    min-height: 700px;
    height: 700px;
    width: 100%;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.08);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.preview-image {
    width: 100%;
    height: 700px;
    max-height: 700px;
    object-fit: cover;
    object-position: left top;
    border-radius: 12px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    width: 100%;
}

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

.mockup-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #FA8643;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.chart-area {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.chart-placeholder p {
    color: #6B7280;
    font-size: 16px;
    margin-top: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    height: 120px;
    margin-bottom: 16px;
}

.bar {
    width: 24px;
    background: linear-gradient(180deg, #FA8643 0%, #FF6B35 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

/* Customers Mockup */
.customers-mockup {
    width: 100%;
}

.add-button {
    background: #FA8643;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-button:hover {
    background: #FF6B35;
}

.customer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.customer-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    gap: 16px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: #FA8643;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.customer-location {
    font-size: 14px;
    color: #6B7280;
}

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

.customer-status.active {
    background: #F0FDF4;
    color: #10B981;
}

.customer-status.pending {
    background: #FEF3C7;
    color: #F59E0B;
}

/* Services Mockup */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #FA8643;
    margin-bottom: 8px;
}

.service-rating {
    font-size: 14px;
    color: #6B7280;
}

/* Messages Mockup */
.message-filter {
    display: flex;
    gap: 8px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #E5E7EB;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active {
    background: #FA8643;
    color: white;
    border-color: #FA8643;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 12px;
    gap: 12px;
    transition: background-color 0.2s;
}

.message-item:hover {
    background: #F1F5F9;
}

.message-item.unread {
    background: #FFF3EC;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: #FA8643;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.message-content {
    flex: 1;
}

.message-sender {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.message-preview {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.message-time {
    font-size: 12px;
    color: #9CA3AF;
}

.message-badge {
    background: #FA8643;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

/* Profile Mockup */
.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: #F8FAFC;
    border-radius: 12px;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    background: #FA8643;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 8px;
}

.profile-rating {
    font-size: 14px;
    color: #F59E0B;
    font-weight: 600;
}

.edit-button {
    background: transparent;
    border: 2px solid #FA8643;
    color: #FA8643;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.edit-button:hover {
    background: #FA8643;
    color: white;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.profile-stat {
    text-align: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #FA8643;
    margin-bottom: 8px;
}

.stat-name {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.profile-skills h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: #FFF3EC;
    color: #FA8643;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.preview-placeholder {
    text-align: center;
    color: #6B7280;
}

.preview-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.preview-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.preview-subtitle {
    font-size: 14px;
    font-weight: 400;
}

/* Why Choose Section */
.why-choose-section {
    display: flex;
    padding: 100px 60px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background: #ffffff;
}

.features-grid {
    display: flex;
    width: 100%;
    max-width: 1320px;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.feature-card {
    display: flex;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 20px;
    background: #F8FAFC;
}

.feature-icon {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.feature-icon.orange {
    background: #FFF3EC;
}

.feature-icon.green {
    background: #F0FDF4;
}

.feature-icon.yellow {
    background: #FEF3C7;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.feature-title {
    color: #111827;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.feature-description {
    color: #6B7280;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

/* How It Works Section */
.how-it-works-section {
    display: flex;
    padding: 100px 60px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background: #F8FAFC;
}

.steps-container {
    display: flex;
    width: 100%;
    max-width: 1320px;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.step {
    display: flex;
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.step-number {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #FA8643;
}

.step-text {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.step-title {
    color: #111827;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.step-description {
    color: #6B7280;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.step-icon {
    display: flex;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.step-icon.orange {
    background: #FFF3EC;
}

.step-icon.green {
    background: #F0FDF4;
}

.step-icon.yellow {
    background: #FEF3C7;
}

/* Final CTA Section */
.final-cta-section {
    display: flex;
    padding: 100px 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: #FA8643;
}

.cta-content {
    display: flex;
    width: 100%;
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cta-title {
    color: #ffffff;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.cta-subtitle {
    color: #FFE4D6;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-primary-button {
    display: flex;
    height: 64px;
    padding: 20px 40px;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: #ffffff;
    color: #FA8643;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.13);
}

.cta-primary-button:hover {
    background: #f9f9f9;
}

/* Notification Popup */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid #E5E7EB;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hidden {
    display: none;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
}

.notification-icon {
    flex-shrink: 0;
}

.notification-icon svg {
    display: none;
}

.notification.success #notification-icon-success {
    display: block;
}

.notification.error #notification-icon-error {
    display: block;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.notification.success .notification-title {
    color: #10B981;
}

.notification.error .notification-title {
    color: #EF4444;
}

.notification-message {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #F3F4F6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 30px;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .hero-section {
        padding: 20px 30px 60px 30px;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
        padding-top: 5px;
        min-height: 320px;
    }

    .hero-left {
        align-items: center;
        justify-content: flex-start;
        padding-top: 0;
    }

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

    h1.hero-title {
        font-size: 48px;
        text-align: center;
    }

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

    .hero-right {
        position: relative;
        top: auto;
        right: auto;
        flex: none;
        width: 100%;
        margin-top: -30px;
    }

    .hero-form-container {
        padding: 24px;
        transform: translateY(120px);
    }

    .platform-section {
        padding: 160px 30px 80px 30px;
    }

    .waitlist-section,
    .platform-section,
    .why-choose-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 80px 30px;
    }

    .waitlist-content {
        flex-direction: column;
        gap: 60px;
    }

    .waitlist-text,
    .waitlist-form-container {
        width: 100%;
        max-width: 600px;
    }

    .features-grid,
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .step {
        max-width: 500px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .navbar {
        position: relative;
    }

    .nav-menu.mobile-menu-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
        border-top: 1px solid #F1F5F9;
        z-index: 1000;
    }

    .nav-menu.mobile-menu-open .nav-link {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #F1F5F9;
        width: 100%;
    }

    .nav-menu.mobile-menu-open .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-menu.mobile-menu-open .cta-button {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
        height: 48px;
        font-size: 16px;
    }

    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .hero-section {
        padding: 15px 20px 40px 20px;
    }

    .hero-content {
        gap: 15px;
        padding-top: 0px;
        min-height: 280px;
    }

    h1.hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-right {
        position: relative;
        top: auto;
        right: auto;
        margin-top: -20px;
    }

    .hero-form-container {
        padding: 20px;
        transform: translateY(80px);
    }

    .waitlist-section,
    .why-choose-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 60px 20px;
    }

    .platform-section {
        padding: 120px 20px 60px 20px;
    }

    .section-title,
    .section-title-dark,
    .cta-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .waitlist-form-container {
        padding: 30px;
    }

    .navigation-tabs {
        flex-wrap: wrap;
        gap: 4px;
        padding: 6px;
    }

    .tab {
        padding: 12px 16px;
        height: auto;
        flex: 1;
        min-width: calc(50% - 2px);
        justify-content: center;
    }

    .tab-text {
        display: none;
    }

    .tab {
        min-width: auto;
        width: auto;
        padding: 12px;
        justify-content: center;
    }

    .preview-content {
        padding: 0;
        min-height: 450px;
        height: 450px;
    }

    .preview-image {
        height: 450px;
        max-height: 450px;
        object-position: left top;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .customer-item {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .customer-info {
        width: 100%;
        margin: 8px 0;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .profile-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Mobile optimizations for better spacing and focus */
    .hero-section {
        padding: 60px 20px;
    }

    h1.hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .waitlist-section,
    .platform-section,
    .why-choose-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 60px 20px;
    }

    .section-title,
    .section-title-dark,
    .cta-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .waitlist-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}



@media (max-width: 480px) {
    .navbar {
        height: 65px;
        padding: 0 15px;
    }

    .logo-image {
        height: 30px;
        max-width: 100px;
    }

    .hero-section {
        padding: 50px 15px;
    }

    h1.hero-title {
        font-size: 28px;
    }

    .section-title,
    .section-title-dark,
    .cta-title {
        font-size: 28px;
    }

    .waitlist-section,
    .platform-section,
    .why-choose-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 50px 15px;
    }

    .waitlist-form-container {
        padding: 20px;
    }

    .form-input {
        height: 48px;
        padding: 12px 16px;
    }

    .waitlist-button {
        height: 56px;
        font-size: 16px;
    }

    .cta-primary-button {
        height: 56px;
        padding: 16px 32px;
        font-size: 16px;
    }

    .navigation-tabs {
        padding: 4px;
    }

    .tab {
        padding: 8px 12px;
        min-width: calc(50% - 2px);
    }

    .tab svg {
        width: 16px;
        height: 16px;
    }

    .tab-text {
        display: none;
    }

    .tab {
        min-width: auto;
        width: auto;
        padding: 8px;
        justify-content: center;
    }

    .preview-content {
        padding: 0;
        min-height: 250px;
        height: 250px;
    }

    .preview-image {
        height: 250px;
        max-height: 250px;
        object-position: left top;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }
}
