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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #fff9e6;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6e6e73;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #007AFF;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: #f5f5dc;
    color: #1d1d1f;
    border: 2px solid #d4af37;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff9e6 0%, #f5f5dc 100%);
    padding: 100px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 20px;
    color: #1d1d1f;
}

.hero-subtitle {
    color: #6e6e73;
    margin-bottom: 60px;
    font-weight: 400;
}

/* App Showcase */
.app-showcase {
    margin: 60px 0;
}

.showcase-intro {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-intro h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.showcase-intro p {
    color: #6e6e73;
    font-size: 0.95rem;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.screenshot-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-item.featured {
    transform: scale(1.1);
}

.screenshot-frame {
    background: transparent;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #d4af37;
}

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

.screenshot-frame img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.screenshot-frame video,
.demo-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.screenshot-caption h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.screenshot-caption p {
    color: #6e6e73;
    font-size: 1rem;
    line-height: 1.5;
}

.key-features-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px;
    background: linear-gradient(135deg, #f5f5dc 0%, #fff9e6 100%);
    border-radius: 16px;
    margin-top: 40px;
    border: 2px solid #d4af37;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #007AFF;
    color: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 122, 255, 0.2);
    font-weight: 500;
    transition: transform 0.2s ease;
}

.feature-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Problem Preview in Hero */
.problem-preview {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f5f5dc 0%, #fff9e6 100%);
    border-radius: 16px;
}

.problem-preview-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 30px;
}

.problem-scenario-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 25px;
}

.fake-notes-small {
    background: #fff9e6;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid #d4af37;
}

.notes-header-tiny {
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.notes-text-small {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #1d1d1f;
}

.thought-bubbles-small {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.thought-bubble-small {
    background: #f2f2f7;
    border-radius: 15px 15px 15px 3px;
    padding: 10px 15px;
    position: relative;
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
}

.thought-bubble-small:nth-child(1) {
    animation-delay: 0s;
}

.thought-bubble-small:nth-child(2) {
    align-self: flex-end;
    animation-delay: 0.5s;
}

.thought-bubble-small:nth-child(3) {
    animation-delay: 1s;
}

.thought-bubble-small span {
    color: #6e6e73;
    font-style: italic;
    font-weight: 500;
}

.problem-statement-small {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.problem-statement-small p {
    margin-bottom: 10px;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .problem-scenario-mini {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fake-notes-small {
        max-width: 250px;
    }
    
    .thought-bubble-small {
        max-width: 180px;
    }
}

.comparison-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.comparison-side {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.phone-mockup {
    background: #1d1d1f;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.notes-app, .jimnotes-app {
    background: white;
    border-radius: 20px;
    padding: 20px;
    min-height: 300px;
    font-size: 14px;
}

.notes-header, .jimnotes-header {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e7;
    margin-bottom: 20px;
}

.notes-title, .jimnotes-title {
    font-weight: 600;
    font-size: 16px;
}

.notes-content {
    text-align: left;
    font-family: 'SF Mono', Monaco, monospace;
    color: #1d1d1f;
    line-height: 1.5;
}

.jimnotes-content {
    text-align: left;
}

.workout-entry {
    background: #f2f2f7;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

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

.pr-badge {
    background: #30d158;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.sets {
    color: #6e6e73;
    font-size: 13px;
}

.progress-chart {
    margin-top: 15px;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 60px;
    gap: 4px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.bar {
    flex: 1;
    background: #007AFF;
    border-radius: 2px;
    min-height: 8px;
    transition: all 0.3s ease;
}

.bar.highlight {
    background: #30d158;
    animation: pulse 2s infinite;
}

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

.comparison-arrow {
    color: #007AFF;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.comparison-label {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 1.1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #6e6e73;
    margin-bottom: 40px;
}

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

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    color: #30d158;
    font-weight: 600;
    font-size: 1rem;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #f5f5dc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1d1d1f;
}

.problem-scenario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.fake-notes {
    background: #fff9e6;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid #d4af37;
}

.notes-header-small {
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.notes-text {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #1d1d1f;
}

.thought-bubbles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.thought-bubble {
    background: #f2f2f7;
    border-radius: 20px 20px 20px 5px;
    padding: 15px 20px;
    position: relative;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.thought-bubble:nth-child(2) {
    animation-delay: 0.5s;
    align-self: flex-end;
}

.thought-bubble:nth-child(3) {
    animation-delay: 1s;
}

.thought-bubble:nth-child(4) {
    animation-delay: 1.5s;
    align-self: flex-end;
}

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

.thought-bubble span {
    color: #6e6e73;
    font-style: italic;
    font-weight: 500;
}

.problem-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.problem-statement h3 {
    color: #1d1d1f;
    margin-bottom: 20px;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: #007AFF;
    color: white;
}

.solution .section-title {
    color: white;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.step-number {
    background: white;
    color: #667eea;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    color: white;
    margin-bottom: 15px;
}

.step-demo {
    flex: 1;
}

.input-example {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    font-family: 'SF Mono', Monaco, monospace;
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.parsed-workout {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #30d158;
}

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

.exercise-details {
    color: rgba(255, 255, 255, 0.8);
}

.mini-chart {
    text-align: center;
}

.chart-container {
    display: flex;
    align-items: end;
    height: 80px;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.chart-bar {
    width: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.chart-bar.active {
    background: #30d158;
    animation: grow 2s ease-in-out infinite alternate;
}

@keyframes grow {
    from { transform: scaleY(1); }
    to { transform: scaleY(1.1); }
}

.chart-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.qa-example {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
}

.question {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px 15px 15px 5px;
    padding: 12px 16px;
    margin-bottom: 15px;
    display: inline-block;
}

.answer {
    background: #30d158;
    border-radius: 15px 15px 5px 15px;
    padding: 12px 16px;
    margin-left: 40px;
    display: inline-block;
}

.step-arrow {
    text-align: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: #fff9e6;
}

.section-subtitle {
    text-align: center;
    color: #6e6e73;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: #f2f2f7;
    border-radius: 20px;
    padding: 40px;
}

.demo-input {
    margin-bottom: 30px;
}

.demo-input textarea {
    width: 100%;
    min-height: 120px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    padding: 20px;
    font-size: 1.1rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 20px;
    background: white;
}

.demo-input textarea:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.demo-output {
    background: white;
    border-radius: 12px;
    padding: 30px;
    min-height: 150px;
    border: 2px solid #e5e5e7;
}

.demo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    color: #6e6e73;
    font-style: italic;
}

.demo-suggestions {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-suggestions p {
    margin-bottom: 20px;
    color: #6e6e73;
}

.suggestion-pills {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-pill {
    background: #007AFF;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.suggestion-pill:hover {
    background: #0051D5;
    transform: translateY(-2px);
}

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

.comparison-table {
    margin-bottom: 80px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #1d1d1f;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f2f2f7;
    vertical-align: middle;
}

.comparison-table .check {
    color: #30d158;
    font-weight: 600;
}

.comparison-table .cross {
    color: #ff3b30;
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.feature-card h3 {
    color: #1d1d1f;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6e6e73;
}

/* Benefits Section */
.competitive {
    padding: 100px 0;
    background: #fff9e6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    color: #1d1d1f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #6e6e73;
    line-height: 1.6;
    font-size: 1rem;
}

.competitive-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.competitive-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1d1d1f;
    font-style: italic;
    padding: 40px;
    background: #f2f2f7;
    border-radius: 20px;
    border-left: 4px solid #007AFF;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f5f5dc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: #1d1d1f;
    font-weight: 600;
}

.testimonial-author span {
    color: #6e6e73;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff9e6;
}

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

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007AFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question.active {
    background-color: #007AFF;
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 25px 25px 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    color: #6e6e73;
    line-height: 1.6;
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #007AFF;
    font-weight: 600;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: #007AFF;
    color: white;
    text-align: center;
}

.download-content h2 {
    color: white;
    margin-bottom: 20px;
}

.download-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.download-buttons {
    margin-bottom: 40px;
}

.app-store-button img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.download-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-features span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.qr-code {
    max-width: 200px;
    margin: 0 auto;
}

.qr-code img {
    width: 100%;
    border-radius: 12px;
    background: white;
    padding: 20px;
    margin-bottom: 15px;
}

.qr-code p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #a1a1a6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007AFF;
}

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #a1a1a6;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .screenshot-item.featured {
        transform: none;
    }
    
    .key-features-preview {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .feature-highlight {
        justify-content: center;
    }
    
    .comparison-demo {
        flex-direction: column;
        gap: 30px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .problem-scenario {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .download-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .suggestion-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }
    
    .faq-category {
        margin-bottom: 40px;
    }
    
    .faq-category-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .comparison-table,
    .competitive-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .competitive-table th,
    .competitive-table td {
        padding: 15px 10px;
    }
    
    .phone-mockup {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .fake-notes {
        max-width: 300px;
    }
    
    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-container {
        padding: 20px;
    }
    
    .feature-card,
    .testimonial {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}

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

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

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-content > *:nth-child(5) {
    animation-delay: 0.8s;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section-title,
    .feature-card,
    .testimonial,
    .step {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }
    
    .section-title.visible,
    .feature-card.visible,
    .testimonial.visible,
    .step.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.demo-output.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-output.loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e7;
    border-top: 2px solid #007AFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 