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

:root {
    --primary-color: #F05537;
    --secondary-color: #3791F0;
    --text-dark: #000000;
    --text-gray: #525152;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-gray: #F8F9FA;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.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 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.btn-download {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-download.ios {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-download.android {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 85, 55, 0.9) 0%, rgba(55, 145, 240, 0.8) 100%);
    z-index: 1;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--text-light);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

.hero-demo {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Interactive Demo Styling */
.interactive-demo {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.demo-phone {
    position: relative;
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 40px 80px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.demo-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Demo Map Section */
.demo-map {
    height: 120px;
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(20%) brightness(0.9);
}

/* Demo Location Header */
.demo-location {
    padding: 12px 20px;
    background: #ffffff;
    border-bottom: 2px solid var(--primary-color);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.demo-location h3 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Demo Events Section */
.demo-events {
    flex: 1;
    background: #ffffff;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.demo-events::-webkit-scrollbar {
    display: none; /* WebKit */
}

.events-day {
    margin-bottom: 20px;
}

.day-header {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(240, 85, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.event-item {
    display: flex;
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    align-items: center;
}

.event-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 85, 55, 0.2);
}

.event-image {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    flex-shrink: 0;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.event-img-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.event-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-info {
    display: flex;
    flex-direction: column;
}

.event-details h5 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.event-time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.event-venue {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin: 0;
    text-align: right;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    position: relative;
}

.app-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* iPhone mockup styling */
.iphone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 10px 10px rgba(0, 0, 0, 0.3),
        0 10px 10px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* iPhone notch */
.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

/* iPhone home indicator */
.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 10;
}

/* Stacked iPhone frames for solution section */
.iphone-gallery {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 40px auto;
    perspective: 1000px;
}

.iphone-gallery .iphone-frame {
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition);
    cursor: pointer;
}

.iphone-gallery .iphone-frame:nth-child(1) {
    transform: translateZ(0px) rotateY(-5deg);
    z-index: 1;
}

.iphone-gallery .iphone-frame:nth-child(2) {
    transform: translateZ(-20px) rotateY(-2deg) translateY(10px);
    z-index: 2;
}

.iphone-gallery .iphone-frame:nth-child(3) {
    transform: translateZ(-40px) rotateY(2deg) translateY(20px);
    z-index: 3;
}

.iphone-gallery .iphone-frame:hover {
    transform: translateZ(20px) rotateY(0deg) scale(1.05);
    z-index: 10;
}

/* Timed carousel */
.iphone-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 40px 0;
    overflow: hidden;
    perspective: 1000px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.iphone-carousel-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.iphone-carousel-slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iphone-carousel-slide .iphone-frame {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    opacity: 0.7;
    scale: 0.9;
}

.iphone-carousel-slide.active .iphone-frame {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    opacity: 1;
    scale: 1;
}

.iphone-carousel-slide.prev .iphone-frame {
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateX(-50px);
    opacity: 0.5;
    scale: 0.8;
}

.iphone-carousel-slide.next .iphone-frame {
    transform: perspective(1000px) rotateY(15deg) rotateX(-5deg) translateX(50px);
    opacity: 0.5;
    scale: 0.8;
}

/* Carousel indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(240, 85, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(240, 85, 55, 0.2);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.problem-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-light);
    font-size: 2rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.problem-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--bg-gray);
}

.solution-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1400px) {
    .solution-content {
        max-width: 1400px;
    }
}

.solution-text {
    min-width: 500px;
    flex: 0 0 500px;
    padding-right: 20px;
}

.solution-images {
    flex: 1;
    max-width: calc(100% - 560px);
}

.solution-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.solution-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #4ba3f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-light);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--bg-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.member-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.member-linkedin:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Traction Section */
.traction {
    padding: 100px 0;
    background: var(--bg-light);
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.traction-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
    border-radius: var(--border-radius);
    color: var(--text-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.traction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.traction-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.traction-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.traction-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.traction-apps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-link img {
    height: 60px;
    width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.app-link img.android-badge {
    object-fit: fill;
}

.app-link:hover img {
    transform: scale(1.05);
}

/* Business Model Section */
.business {
    padding: 100px 0;
    background: var(--bg-gray);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.business-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--text-light);
    font-size: 1.6rem;
}

.business-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.business-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-comparison {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.business-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.business-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
}

.business-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.business-feature span {
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.business-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.business-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.comparison {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-light);
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 48px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(240, 85, 55, 0.3);
}

.contact-email:hover {
    background: #ff6b4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 85, 55, 0.4);
}

.contact-email i {
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-gray);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
}

.cta-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--text-dark);
    color: var(--text-light);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-text p {
    margin-bottom: 4px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-demo {
        order: -1;
    }
    
    .demo-phone {
        width: 250px;
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .solution-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .solution-text {
        min-width: auto;
        flex: none;
        padding-right: 0;
    }
    
    .solution-images {
        max-width: 100%;
    }
    
    .iphone-carousel {
        height: 600px;
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .app-screenshot {
        transform: none;
    }
    
    .app-screenshot:hover {
        transform: scale(1.02);
    }
    
    .iphone-frame {
        width: 250px;
        height: 500px;
    }
    
    .iphone-carousel {
        height: 600px;
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .iphone-carousel-slide .iphone-frame {
        transform: none;
        opacity: 1;
        scale: 1;
    }
    
    .iphone-carousel-slide.prev .iphone-frame,
    .iphone-carousel-slide.next .iphone-frame {
        transform: none;
        opacity: 0.7;
        scale: 0.9;
    }
    
    /* Fix mobile layout centering */
    .container {
        padding: 0 20px;
    }
    
    .problem-grid,
    .features-grid,
    .team-grid,
    .traction-grid,
    .business-grid {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .iphone-frame {
        width: 200px;
        height: 400px;
    }
    
    .iphone-carousel {
        height: 550px;
        padding: 50px 15px;
    }
    
    .iphone-carousel-slide .iphone-frame {
        width: 200px;
        height: 400px;
    }
    
    .demo-phone {
        width: 200px;
        height: 400px;
    }
    
    .demo-map {
        height: 80px;
    }
    
    .demo-location {
        padding: 10px 15px;
    }
    
    .demo-location h3 {
        font-size: 0.9rem;
    }
    
    .demo-logo {
        width: 20px;
        height: 20px;
    }
    
    .event-item {
        padding: 8px 15px;
    }
    
    .event-image {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .event-details h5 {
        font-size: 0.85rem;
    }
    
    .event-time {
        font-size: 0.75rem;
    }
    
    .event-venue {
        font-size: 0.7rem;
    }
    
    .demo-logo {
        width: 18px;
        height: 18px;
    }
    
    /* Ensure proper centering on small screens */
    .hero-container,
    .solution-content {
        padding: 0 15px;
    }
    
    .section-title {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.hero-content,
.hero-image,
.problem-item,
.feature-card,
.team-member,
.traction-card,
.business-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-image {
    animation-delay: 0.2s;
}

.problem-item:nth-child(2) {
    animation-delay: 0.1s;
}

.problem-item:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}
