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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    font-size: 1.5rem;
    font-weight: 700;
    gap: 0.75rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.branded-name {
    display: inline-block;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
}

.service-text {
    color: #764ba2;
}

.wizard-text {
    color: #1e3a8a;
}

/* Branded name in hero section (white text context) */
.hero .service-text {
    color: #a78bfa;
}

.hero .wizard-text {
    color: #60a5fa;
}

/* Branded name in section headers */
.section-header .service-text {
    color: #764ba2;
}

.section-header .wizard-text {
    color: #1e3a8a;
}

/* Branded name in download section (dark background) */
.download .service-text {
    color: #a78bfa;
}

.download .wizard-text {
    color: #60a5fa;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 2rem;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.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: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
}

.btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.8rem;
    font-weight: 400;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* App Showcase */
.app-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: 600px;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.primary-phone {
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.secondary-phone {
    z-index: 2;
    animation: float 3s ease-in-out infinite 1.5s;
    transform: scale(0.9);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
}

.phone-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: 3px solid #333;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.floating-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.floating-card small {
    color: #6b7280;
    font-size: 0.8rem;
}

.pricing-card {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.confidence-card {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.pricing-card i {
    color: #059669;
}

.confidence-card i {
    color: #10b981;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.app-interface {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.camera-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.app-header h3 {
    color: #333;
    font-weight: 600;
}

.photo-preview {
    flex: 1;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 15px;
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.surface-image {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e2e8f0"/><circle cx="30" cy="30" r="8" fill="%23cbd5e1"/><circle cx="70" cy="40" r="12" fill="%23cbd5e1"/><rect x="20" y="60" width="60" height="8" fill="%23cbd5e1" rx="4"/></svg>');
    background-size: cover;
}

.ai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.analysis-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.analysis-dots span {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.analysis-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.analysis-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.results-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
}

.surface-type {
    font-size: 0.8rem;
    color: #6b7280;
}

.cleaning-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

/* What Is ServiceWizard Section */
.what-is {
    padding: 6rem 0;
    background: white;
}

.what-is-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-is-description {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.what-is-note {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
}

.footer-bottom .legal-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #374151;
    text-align: center;
}

.footer-bottom .legal-info p {
    margin: 0.5rem 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom .legal-info strong {
    color: white;
    font-size: 1rem;
}

.footer-bottom .legal-info a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom .legal-info a:hover {
    text-decoration: underline;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.feature-screenshot {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-screenshot:hover {
    transform: scale(1.05);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

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

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

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

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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

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

.step-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #2563eb;
    font-size: 1.5rem;
}

/* Pricing Section */
/* Pricing Section - Completely Rebuilt */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing .section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: white;
}

/* Freemium Banner */
.freemium-banner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 0 auto 3rem;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
}

.freemium-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.freemium-content i {
    font-size: 3rem;
    color: #ffd700;
    flex-shrink: 0;
}

.freemium-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.freemium-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Pricing Cards Container */
.pricing-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: baseline;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
    align-self: flex-end;
    margin-bottom: 0.2rem;
}

.price-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.price-savings {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
}

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

.pricing-features i {
    margin-right: 0.75rem;
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-features strong {
    color: white;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.trial-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Pricing Benefits */
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 1000px;
}

.benefit-item {
    text-align: center;
    color: white;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* App Screenshots Section */
.app-screenshots {
    padding: 6rem 0;
    background: white;
}

.screenshots-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.screenshot-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    background: #f1f5f9;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.screenshot-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.screenshot-card.reverse .screenshot-image {
    order: 2;
}

.screenshot-card.reverse .screenshot-content {
    order: 1;
}

.screenshot-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.screenshot-image:hover {
    transform: scale(1.05);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

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

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

.screenshot-features {
    list-style: none;
}

.screenshot-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.screenshot-features i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.download-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.contact-info p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #6b7280;
    margin: 0;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 2px solid #10b981;
}

.form-success i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.footer-logo .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo .branded-name {
    display: inline-block;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
}

.footer-logo .service-text {
    color: #764ba2;
}

.footer-logo .wizard-text {
    color: #1e3a8a;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        padding: 0 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* App Showcase */
    .app-showcase {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        padding: 12px;
    }

    .secondary-phone {
        display: none;
    }

    .floating-elements {
        display: none;
    }

    /* Features */
    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-screenshot {
        height: 180px;
        margin-bottom: 1rem;
    }

    /* How It Works */
    .how-it-works {
        padding: 4rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* App Screenshots */
    .app-screenshots {
        padding: 4rem 0;
    }

    .screenshots-grid {
        gap: 2rem;
    }

    .screenshot-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }

    .screenshot-card.reverse .screenshot-image {
        order: 1;
    }

    .screenshot-card.reverse .screenshot-content {
        order: 2;
    }

    .screenshot-content h3 {
        font-size: 1.5rem;
    }

    .screenshot-content p {
        font-size: 1rem;
    }

    /* Pricing */
    /* Pricing Section Mobile */
    .pricing {
        padding: 4rem 0;
    }

    .pricing-wrapper {
        padding: 0 15px;
    }

    .pricing .section-header {
        margin-bottom: 2rem;
    }

    .freemium-banner {
        padding: 1.2rem 1.5rem;
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .freemium-content {
        gap: 1rem;
    }

    .freemium-content i {
        font-size: 2.5rem;
    }

    .freemium-text h3 {
        font-size: 1.3rem;
    }

    .freemium-text p {
        font-size: 0.9rem;
    }

    .pricing-cards-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        min-width: 100%;
        max-width: 100%;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-card .price .amount {
        font-size: 2.8rem;
    }

    .pricing-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    /* Download */
    .download {
        padding: 4rem 0;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .download-buttons {
        gap: 1rem;
    }

    /* Contact */
    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom .legal-info {
        text-align: center;
        padding: 0 15px;
    }

    .footer-bottom .legal-info p {
        font-size: 0.85rem;
    }

    /* What Is Section */
    .what-is {
        padding: 4rem 0;
    }

    .what-is-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .what-is-note {
        font-size: 0.95rem;
        padding: 1.2rem;
        margin: 0 15px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 35px;
    }

    .branded-name {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 70px;
        min-height: 100vh;
    }

    .hero-container {
        padding: 1rem 10px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        padding: 0 5px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 5px;
        line-height: 1.4;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        max-width: 260px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
        padding: 0 5px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* App Showcase */
    .app-showcase {
        gap: 1rem;
        padding: 1rem 0;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
        padding: 10px;
    }

    /* Features */
    .features {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-screenshot {
        height: 160px;
        margin-bottom: 0.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* How It Works */
    .how-it-works {
        padding: 3rem 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    /* App Screenshots */
    .app-screenshots {
        padding: 3rem 0;
    }

    .screenshots-grid {
        gap: 1.5rem;
    }

    .screenshot-card {
        padding: 1.2rem;
    }

    .screenshot-content h3 {
        font-size: 1.3rem;
    }

    .screenshot-content p {
        font-size: 0.9rem;
    }

    /* Pricing */
    /* Pricing Section Small Mobile */
    .pricing {
        padding: 3rem 0;
    }

    .pricing-wrapper {
        padding: 0 10px;
    }

    .freemium-banner {
        padding: 1rem 1.2rem;
        margin: 0 auto 1.5rem;
    }

    .freemium-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .freemium-content i {
        font-size: 2rem;
    }

    .freemium-text h3 {
        font-size: 1.2rem;
    }

    .freemium-text p {
        font-size: 0.85rem;
    }

    .pricing-cards-container {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
        min-width: 100%;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .pricing-card .price .amount {
        font-size: 2.5rem;
    }

    .pricing-card .price-description {
        font-size: 0.85rem;
    }

    .pricing-card .price-savings {
        font-size: 0.85rem;
    }

    .pricing-card .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .pricing-card .trial-info {
        font-size: 0.75rem;
    }

    .pricing-benefits {
        margin-top: 2rem;
        padding-top: 1.5rem;
        gap: 1.2rem;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonial {
        padding: 1.2rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    /* Download */
    .download {
        padding: 3rem 0;
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .download-content p {
        font-size: 1rem;
    }

    /* Contact */
    .contact {
        padding: 3rem 0;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-bottom .legal-info {
        padding: 0 10px;
    }

    .footer-bottom .legal-info p {
        font-size: 0.8rem;
    }

    /* What Is Section */
    .what-is {
        padding: 3rem 0;
    }

    .what-is-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .what-is-note {
        font-size: 0.9rem;
        padding: 1rem;
        margin: 0 10px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        max-width: 240px;
    }

    .phone-mockup {
        width: 160px;
        height: 320px;
        padding: 8px;
    }

    .feature-card,
    .testimonial,
    .contact-form,
    .pricing-card {
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Extra small pricing */
    /* Pricing Extra Small Mobile */
    .pricing-wrapper {
        padding: 0 8px;
    }

    .pricing-cards-container {
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.2rem 0.8rem;
        min-width: 100%;
    }

    .pricing-card .pricing-header h3 {
        font-size: 1.2rem;
    }

    .pricing-card .price .amount {
        font-size: 2.2rem;
    }

    .pricing-card .price-description {
        font-size: 0.8rem;
    }

    .pricing-card .price-savings {
        font-size: 0.8rem;
    }

    .pricing-card .btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .pricing-card .trial-info {
        font-size: 0.7rem;
    }

    .pricing-benefits {
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0;
    }

    .benefit-item i {
        font-size: 1.8rem;
    }

    .benefit-item h4 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
    }
}

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

.feature-card,
.step,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Button Active States */
.btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.btn:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}
