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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.app-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-name {
    color: #333;
}

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

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

.nav-links a:hover {
    color: #007AFF;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.download-section {
    margin-top: 40px;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.2s;
    position: relative;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.app-store-badge {
    height: 50px;
    width: auto;
    display: block;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.download-note {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Screenshot Carousel */
.screenshot-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.screenshot-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.screenshot-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

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

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Examples Section */
.examples {
    padding: 80px 0;
    background: #f8f9fa;
}

.examples h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.example-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.example-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-mark {
    color: #007AFF;
    font-size: 2rem;
    font-weight: 700;
}

.example-result {
    color: #28a745;
    font-weight: 500;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
}

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

.video-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.video-placeholder {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
}

.price-tag {
    margin-bottom: 30px;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
}

.cta-button:hover {
    background: #0051D5;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Support Page Styles */
.support-section {
    padding: 60px 0;
    background: white;
}

.support-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #007AFF;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: #007AFF;
    text-decoration: none;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.typeform-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.form-note a {
    color: #007AFF;
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Privacy Page Styles */
.privacy-section {
    padding: 60px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #333;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #555;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #666;
}

.legal-content a {
    color: #007AFF;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.policy-footer p {
    font-weight: 600;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

