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

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #F4F0E8;
    font-size: clamp(1rem, 1vw + 1rem, 1.2rem);
}

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

/* Navigation */
.navbar {
    position: fixed;
  top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    z-index: 1000;
  transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
    color: #6d4ba8;
  text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

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

.brand-text {
    color: #1f2937;
}

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

.nav-link {
    color: #6b7280;
  text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.9rem, 0.5vw + 0.9rem, 1rem);
}

.nav-link:hover {
    color: #6d4ba8;
    background: rgba(109, 75, 168, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #6d4ba8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 20px;
}

.nav-cta {
    display: flex;
    gap: 0.75rem;
}

.nav-store-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(109, 75, 168, 0.3);
}

.nav-store-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(109, 75, 168, 0.4);
}

.nav-store-button i {
    font-size: 1rem;
}

.nav-store-button span {
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    color: white;
  border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(1rem, 0.5vw + 1rem, 1.2rem);
  cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(109, 75, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(109, 75, 168, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #6d4ba8;
    border: 2px solid #6d4ba8;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #6d4ba8;
    color: #6d4ba8;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #F4F0E8;
    position: relative;
    overflow: hidden;
    font-size: clamp(1rem, 0.5vw + 1rem, 1.2rem);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(109, 75, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 107, 177, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(109, 75, 168, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(109, 75, 168, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

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

  .hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
    gap: 0.5rem;
    background: rgba(109, 75, 168, 0.1);
    color: #6d4ba8;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(109, 75, 168, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.15);
}

.hero-title {
    font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

  .hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.hero-social-proof {
  display: flex;
    align-items: center;
  gap: 1rem;
}

.social-proof-item {
  display: flex;
  align-items: center;
    gap: 0.5rem;
}

.stars {
  display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.social-proof-item span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

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

.chat-interface {
  padding: 1.5rem;
    height: 100%;
  display: flex;
  flex-direction: column;
    gap: 1rem;
}

.chat-message {
  display: flex;
    align-items: flex-start;
  gap: 0.75rem;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.user .message-bubble {
    background: #6d4ba8;
    color: white;
    margin-left: auto;
}

.ai-avatar {
    width: 32px;
    height: 32px;
  border-radius: 50%;
    background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
    font-size: 1rem;
    color: #6d4ba8;
}

.ai-avatar i {
    font-size: 1rem;
}

.message-bubble {
    background: #f3f4f6;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.typing-indicator {
  display: flex;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border-radius: 18px;
    width: fit-content;
    margin-left: 44px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #F4F0E8;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(109, 75, 168, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 107, 177, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.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;
}



.feature-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6d4ba8, #8b6bb1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(109, 75, 168, 0.15),
        0 0 0 1px rgba(109, 75, 168, 0.1);
    border-color: rgba(109, 75, 168, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #6d4ba8;
    background: rgba(109, 75, 168, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(109, 75, 168, 0.1), rgba(139, 107, 177, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

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

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #F4F0E8;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(109, 75, 168, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 107, 177, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.25);
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(109, 75, 168, 0.35);
}

.step-circle.final {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
}


.step-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-connector {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, #6d4ba8, rgba(109, 75, 168, 0.3));
    margin-top: 1rem;
    border-radius: 2px;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6d4ba8, #8b6bb1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-icon-container {
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(109, 75, 168, 0.1) 0%, rgba(139, 107, 177, 0.05) 100%);
    color: #6d4ba8;
    transition: all 0.3s ease;
}

.step-icon.processing {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: #3b82f6;
}

.step-icon.chat {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    color: #10b981;
}

.step-icon.mastery {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    color: #f59e0b;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-icon i {
    font-size: 1.75rem;
}

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

.step-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(109, 75, 168, 0.08);
    color: #6d4ba8;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(109, 75, 168, 0.15);
    transform: translateY(-1px);
}

.feature-tag i {
    font-size: 0.875rem;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.how-it-works-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 75, 168, 0.03) 0%, rgba(139, 107, 177, 0.01) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

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

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

.step-screenshot {
    margin-top: 0;
    text-align: center;
}

.screenshot-placeholder {
    width: 100%;
    height: 250px;
    background: #F4F0E8;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(109, 75, 168, 0.02) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(109, 75, 168, 0.02) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.step-card:hover .screenshot-placeholder {
    border-color: #6d4ba8;
    background: linear-gradient(135deg, rgba(109, 75, 168, 0.05) 0%, rgba(139, 107, 177, 0.05) 100%);
    transform: scale(1.02);
}

.screenshot-placeholder i {
    font-size: 2.5rem;
    color: #6d4ba8;
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.screenshot-placeholder span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.step-card:hover .screenshot-placeholder i {
    opacity: 0.8;
    transform: scale(1.1);
}







/* FAQ */
.faq {
    padding: 80px 0;
    background: #F4F0E8;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.1);
    border-color: rgba(109, 75, 168, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.faq-question:hover {
    background: rgba(109, 75, 168, 0.02);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #6d4ba8;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(109, 75, 168, 0.05);
    border-bottom: 1px solid rgba(109, 75, 168, 0.1);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0 120px;
    background: #F4F0E8;
    position: relative;
}

/* App Download */
.app-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.download-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.store-button:hover::before {
    left: 100%;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.store-button i {
    font-size: 2rem;
}

.store-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-button span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.store-button strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-store-button {
    background: rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-store-button:hover {
    background: rgba(31, 41, 55, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}



/* Footer */
.footer {
    color: #6b7280;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.footer-brand .brand-logo {
    width: 35px;
    height: 35px;
    border-radius: 6px;
}

.footer-brand .brand-text {
    color: #1f2937;
}

.footer-brand p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
}

.link-group {
    display: flex;
    gap: 1.5rem;
}

.link-group h4 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 1px;
}

.link-group a {
    display: block;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-radius: 4px;
    position: relative;
}

.link-group a:hover {
    color: #6d4ba8;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-main {
    background: #F4F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-icon-header {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.contact-intro {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card-simple {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(109, 75, 168, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-card-simple:hover {
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.1);
    transform: translateY(-2px);
}

.contact-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.contact-icon-simple {
    width: 60px;
    height: 60px;
    background: rgba(109, 75, 168, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d4ba8;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-simple h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6d4ba8;
    margin: 0 0 1rem;
}

.contact-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.response-time-box {
    background: rgba(109, 75, 168, 0.05);
    border: 1px solid rgba(109, 75, 168, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.response-time-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem;
}

.response-time-box p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Original contact page styles (for compatibility) */
.page-content {
    padding: 120px 0 80px;
    background: #F4F0E8;
    min-height: 100vh;
}

.page-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d4ba8;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #8b6bb1;
    transform: translateX(-4px);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6d4ba8 0%, #8b6bb1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

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

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.content-section {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(109, 75, 168, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.1);
    transform: translateY(-2px);
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(109, 75, 168, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d4ba8;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6d4ba8;
    margin: 0 0 1rem;
}

.contact-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.info-box {
    background: rgba(109, 75, 168, 0.05);
    border: 1px solid rgba(109, 75, 168, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.info-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem;
}

.info-box p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    border: 1px solid rgba(109, 75, 168, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.resource-card:hover {
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.1);
    transform: translateY(-2px);
    border-color: rgba(109, 75, 168, 0.2);
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource-icon {
    width: 48px;
    height: 48px;
    background: rgba(109, 75, 168, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d4ba8;
}

.resource-icon svg {
    width: 24px;
    height: 24px;
}

.resource-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.resource-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d4ba8;
    font-weight: 500;
    font-size: 0.9rem;
}

.resource-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-link svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    gap: 3rem;
  text-align: center;
    }
    
    .hero-title {
    font-size: 3rem;
    }
    

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        gap: 0.5rem;
    }
    
    .nav-store-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .nav-store-button span {
        display: none;
    }
    
    .nav-store-button i {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
         .features,
     .how-it-works {
         padding: 60px 0;
     }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
         .process-step {
         flex-direction: column;
         align-items: center;
         text-align: center;
         gap: 1.5rem;
         margin-bottom: 2rem;
     }
     
     .step-connector {
         width: 80px;
         height: 3px;
         background: linear-gradient(to right, #6d4ba8, rgba(109, 75, 168, 0.3));
         margin: 1rem 0;
         border-radius: 2px;
     }
     
     .step-card {
         padding: 2rem;
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .step-features {
         justify-content: center;
     }
    
    
    
    .download-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
  flex-direction: column;
        gap: 1rem;
    }
    
    /* Contact page mobile styles */
    .contact-main {
        padding: 1rem;
    }
    
    .contact-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-icon-header {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .contact-card-simple {
        padding: 2rem;
    }
    
    .contact-card-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
    }
    
    /* Legacy styles for compatibility */
    .page-content {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
} 

/* Google Play Coming Soon styles */
.store-button.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
    overflow: initial;
}

.store-button.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b35;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-store-button.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.nav-store-button.coming-soon::after {
    content: "Soon";
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff6b35;
    color: white;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-store-button.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
    overflow: initial;
}

.hero-store-button.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b35;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} 

/* Legal pages specific styles */
.last-updated {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.page-sections {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content .content-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(109, 75, 168, 0.1);
}

.legal-content .content-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(109, 75, 168, 0.1);
}

.legal-content .content-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-content .content-section p:last-child {
    margin-bottom: 0;
}

.legal-content .content-section ul {
    color: #4b5563;
    line-height: 1.7;
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.legal-content .content-section li {
    margin-bottom: 0.75rem;
}

.legal-content .content-section li:last-child {
    margin-bottom: 0;
}

.legal-content .content-section strong {
    color: #1f2937;
    font-weight: 600;
} 

/* Hero image styles */
.hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(109, 75, 168, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(109, 75, 168, 0.25);
} 

/* Step image styles */
.step-image {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 36px;
    box-shadow: 0 8px 25px rgba(109, 75, 168, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(109, 75, 168, 0.2);
} 

/* Feature icon image styles */
.feature-icon-image {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 8px;
} 

/* Hero badge image styles */
.hero-badge-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
} 