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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-logo-image {
    height: 28px;
    width: auto;
    object-fit: contain;
    /* Remove filter to show original logo colors */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 1;
}

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

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

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

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
}

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

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-bottom: 2rem;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hero-features-list li {
    font-size: 1.1rem;
    color: #1e40af;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.hero-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.free-access-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.video-container {
    position: relative;
    width: 125%;
    height: 0;
    padding-bottom: 70.31%; /* 16:9 aspect ratio scaled by 125% (56.25% * 1.25) */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-left: -12.5%; /* Center the enlarged video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}

.ipad-mockup {
    width: 480px;
    height: 360px;
    background: #1a1a1a;
    border-radius: 1.5rem;
    padding: 0.375rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.ipad-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.ipad-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 1.125rem;
    overflow: hidden;
}

.app-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    font-size: 1rem;
    color: #6b7280;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-arrow {
    color: #3b82f6;
    font-weight: bold;
    cursor: pointer;
}

.current-date {
    font-weight: 600;
    color: #22c55e;
    font-size: 0.8rem;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
}

.view-btn.active {
    background: #3b82f6;
    color: white;
}

/* Main Content */
.app-main {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.tasks-section {
    flex: 1;
    padding: 1rem;
    background: white;
    overflow-y: auto;
}

.tasks-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.task-category {
    margin-bottom: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #f3f4f6;
}

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

.category-name {
    font-weight: 500;
    color: #374151;
    font-size: 0.7rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.7rem;
}

.task-checkbox {
    width: 0.875rem;
    height: 0.875rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.125rem;
    flex-shrink: 0;
}

.task-checkbox.checked {
    background: #22c55e;
    border-color: #22c55e;
    position: relative;
}

.task-checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 1px;
    color: white;
    font-size: 0.6rem;
}

.task-text {
    flex: 1;
    color: #374151;
}

.task-text.completed {
    text-decoration: line-through;
    color: #9ca3af;
}

.task-tag {
    background: #ddd6fe;
    color: #7c3aed;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.6rem;
    font-weight: 500;
}

.task-tag.today {
    background: #ddd6fe;
    color: #7c3aed;
}

/* Logs Section */
.logs-section {
    width: 200px;
    background: #f9fafb;
    padding: 1rem;
    border-left: 1px solid #e5e7eb;
}

.logs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.logs-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.logs-actions {
    display: flex;
    gap: 0.25rem;
}

.refresh-icon,
.add-icon {
    color: #6b7280;
    cursor: pointer;
    font-size: 0.8rem;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e5e7eb;
}

.log-icon {
    font-size: 0.8rem;
}

.log-content {
    flex: 1;
}

.log-title {
    font-size: 0.65rem;
    font-weight: 500;
    color: #374151;
}

.log-value {
    font-size: 0.6rem;
    color: #6b7280;
}

.log-delete {
    color: #ef4444;
    font-size: 0.7rem;
    cursor: pointer;
}

/* Bottom Section */
.app-bottom {
    display: flex;
    height: 120px;
    border-top: 1px solid #e5e7eb;
}

.events-section {
    flex: 1;
    padding: 0.75rem;
    background: white;
    border-right: 1px solid #e5e7eb;
}

.events-section h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 0.65rem;
    color: #6b7280;
    width: 3rem;
    flex-shrink: 0;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 0.7rem;
    font-weight: 500;
    color: #1f2937;
}

.event-location {
    font-size: 0.6rem;
    color: #6b7280;
}

.event-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-dot.purple {
    background: #8b5cf6;
}

.event-dot.blue {
    background: #3b82f6;
}

.notes-section {
    flex: 1;
    padding: 0.75rem;
    background: #fffbeb;
    overflow-y: auto;
}

.notes-section h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.note-content {
    font-size: 0.65rem;
    color: #374151;
    line-height: 1.4;
}

.note-content p {
    margin-bottom: 0.5rem;
}

.note-content ul {
    margin-left: 1rem;
}

.note-content li {
    margin-bottom: 0.25rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: white;
}

/* Story Section */
.story {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

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

.story-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

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

.badge-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
}

.story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.2;
}

.story-intro {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.story-problem,
.story-solution {
    margin-bottom: 2rem;
}

.story-problem h3,
.story-solution h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.story-problem p,
.story-solution p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-problem strong,
.story-solution strong {
    color: #1f2937;
    font-weight: 600;
}

.story-problem em {
    color: #ef4444;
    font-style: italic;
}

.story-vision {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #6366f1;
    margin-top: 2rem;
}

.story-vision blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    quotes: """ """ "'" "'";
}

.story-vision blockquote::before {
    content: open-quote;
    font-size: 1.5em;
    color: #6366f1;
}

.story-vision blockquote::after {
    content: close-quote;
    font-size: 1.5em;
    color: #6366f1;
}

.story-vision cite {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    font-style: normal;
}

.story-future {
    margin-top: 2rem;
}

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

.story-future p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-future strong {
    color: #1f2937;
    font-weight: 600;
}

.vision-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.vision-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vision-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #92400e;
    font-style: italic;
}

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

.planner-evolution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.evolution-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 200px;
}

.evolution-step:hover {
    transform: translateY(-5px);
}

.evolution-step.highlight {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: scale(1.05);
}

.evolution-step.highlight:hover {
    transform: scale(1.08) translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.step-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    opacity: 0.8;
}

.evolution-arrow {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: bold;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
}

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

.feature-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

/* Screenshots Section */
.screenshots {
    padding: 6rem 2rem;
    background: #f8fafc;
}

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

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-prev {
    margin-left: -25px;
}

.carousel-next {
    margin-right: -25px;
}

/* Screenshots Carousel */
.screenshots-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    scroll-behavior: smooth;
    transition: transform 0.5s ease;
    width: 100%;
}

.screenshot-card {
    flex: 0 0 100%;
    position: relative;
    background: white;
    transition: transform 0.5s ease;
}

.screenshot-content {
    position: relative;
    overflow: hidden;
}

.screenshot-content img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border-radius: 1rem;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-card:hover .screenshot-content img {
    transform: scale(1.05);
}

.screenshot-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #6366f1;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #8b5cf6;
    transform: scale(1.1);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .screenshot-content img {
        width: 300px;
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        margin-left: -20px;
    }
    
    .carousel-next {
        margin-right: -20px;
    }
    
    .screenshot-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .screenshot-overlay h3 {
        font-size: 1.25rem;
    }
    
    .screenshot-overlay p {
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .screenshot-content img {
        width: 250px;
        height: 250px;
    }
    
    .carousel-container {
        margin: 0 0.5rem;
    }
}

.placeholder-content {
    text-align: center;
    color: #64748b;
}

/* User Guide Page Styles */
.user-guide-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.user-guide-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.user-guide-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.user-guide-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.guide-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.guide-nav-item {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.guide-nav-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.guide-section {
    padding: 5rem 2rem;
}

.guide-section:nth-child(even) {
    background: #f8fafc;
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    text-align: center;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-content ul {
    color: #64748b;
    line-height: 1.7;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
}

.app-requirements {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f1f5f9;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
}

.req-icon {
    font-size: 1.5rem;
}

.tip-box, .warning-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-box {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.tip-icon, .warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-content, .warning-content {
    flex: 1;
}

.tip-content strong, .warning-content strong {
    color: #1e40af;
}

.warning-content strong {
    color: #92400e;
}

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

.layout-card, .filter-item, .tracker-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.layout-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.layout-icon, .filter-icon, .tracker-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.layout-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.layout-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.feature-highlight {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.highlight-content p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.permissions-list {
    margin-top: 1.5rem;
}

.permission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.perm-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.perm-details strong {
    color: #1e293b;
    font-size: 1.1rem;
}

.perm-details p {
    color: #64748b;
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
}

.sync-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.sync-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 1rem;
    min-width: 80px;
}

.device-icon {
    font-size: 2rem;
}

.sync-arrow {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: bold;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.get-help-section {
    padding: 5rem 2rem;
    text-align: center;
}

.help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.help-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.help-option {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.help-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.help-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.help-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.help-details p {
    color: #64748b;
    margin: 0;
    text-align: left;
}

/* Navigation active state for user guide */
.nav-links a.active {
    color: #3b82f6;
    font-weight: 600;
}

/* Responsive Design for User Guide */
@media (max-width: 768px) {
    .user-guide-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .user-guide-header h1 {
        font-size: 2rem;
    }
    
    .user-guide-header p {
        font-size: 1rem;
    }
    
    .guide-nav {
        gap: 0.5rem;
    }
    
    .guide-nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .guide-section {
        padding: 3rem 1rem;
    }
    
    .guide-content h2 {
        font-size: 2rem;
    }
    
    .guide-step {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }
    
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        align-self: flex-start;
    }
    
    .app-requirements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        font-size: 2.5rem;
    }
    
    .help-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .help-details p {
        text-align: center;
    }
    
    .sync-devices {
        gap: 0.5rem;
    }
    
    .sync-device {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .device-icon {
        font-size: 1.5rem;
    }
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: white;
}

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

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
}

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

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

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.collaboration-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.collab-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.collab-text {
    flex: 1;
}

.collab-main {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.collab-sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.newsletter-signup {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.newsletter-text p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    font-size: 1.25rem;
    width: 2rem;
    text-align: center;
}

.benefit-text {
    color: #475569;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.newsletter-email-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.newsletter-email-input:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-btn {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn svg {
    width: 16px;
    height: 16px;
}

.form-note {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: inherit;
}

.contact-item-clickable {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.contact-item-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.contact-item-clickable:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item-clickable:hover .contact-arrow {
    transform: translateX(4px);
}

.contact-arrow {
    margin-left: auto;
    color: #6366f1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4f46e5;
}


/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .newsletter-signup {
        padding: 2rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

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

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-cta {
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
}

.footer-app-btn {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    border: none;
}

.footer-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.footer-app-btn svg {
    transition: transform 0.3s ease;
}

.footer-app-btn:hover svg {
    transform: translateX(4px);
}

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

/* Contact Section Three-Column Layout */
.contact .contact-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
    max-width: none;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 200px;
}

.contact-card-clickable {
    cursor: pointer;
}

.contact-card-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.contact-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-card .contact-details p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-card .contact-details a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-card .contact-details a:hover {
    text-decoration: underline;
}

.contact-arrow-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.contact-card-clickable:hover .contact-arrow-top {
    color: #667eea;
    transform: translate(2px, -2px);
}

/* Newsletter Link Styles */
.newsletter-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
    text-align: center;
}

.newsletter-link:hover {
    transform: translateY(-2px);
}

.newsletter-link .newsletter-btn {
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.newsletter-link:hover .newsletter-btn {
    transform: translateX(2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.newsletter-link .form-note {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Desktop Contact Section - Ensure 3 columns */
@media (min-width: 769px) {
    .contact .contact-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        display: grid !important;
        flex-direction: unset !important;
    }
}

/* Force grid layout on all screen sizes for debugging */
.contact .contact-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: unset !important;
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .contact-card {
        min-height: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-card .contact-icon {
        font-size: 2rem;
    }
    
    .contact-card .contact-details h4 {
        font-size: 1.125rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .video-container {
        width: 100%;
        margin-left: 0;
        padding-bottom: 56.25%; /* Reset to standard 16:9 on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .free-access-badge {
        text-align: center;
    }
    
    .badge-text {
        font-size: 0.9rem;
        padding: 0.625rem 1.25rem;
    }
    
    .ipad-mockup {
        width: 400px;
        height: 300px;
        transform: none;
    }
    
    .ipad-mockup:hover {
        transform: scale(1.02);
    }
    
    .features,
    .story,
    .screenshots,
    .about,
    .cta {
        padding: 4rem 1rem;
    }
    
    .story-content {
        max-width: 100%;
        padding: 0 1rem;
        text-align: left;
    }
    
    .story h2 {
        font-size: 2rem;
    }
    
    .story-intro {
        font-size: 1.125rem;
    }
    
    .story-problem h3,
    .story-solution h3 {
        font-size: 1.25rem;
    }
    
    .story-problem p,
    .story-solution p {
        font-size: 1rem;
    }
    
    .story-vision blockquote {
        font-size: 1.125rem;
    }
    
    .story-future h3 {
        font-size: 1.25rem;
    }
    
    .story-future p {
        font-size: 1rem;
    }
    
    .vision-highlight {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .vision-text {
        font-size: 1rem;
    }
    
    .planner-evolution {
        flex-direction: row;
        gap: 1rem;
    }
    
    .evolution-step {
        min-width: 150px;
        padding: 1rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-label {
        font-size: 1rem;
    }
    
    .evolution-arrow {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .waitlist-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        width: 100%;
        max-width: 300px;
    }
    
    .collaboration-note {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .collab-main {
        font-size: 0.9rem;
    }
    
    .collab-sub {
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features-list li {
        font-size: 1rem;
        padding-left: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .ipad-mockup {
        width: 320px;
        height: 240px;
    }
    
    .app-interface {
        font-size: 0.65rem;
    }
    
    .logs-section {
        width: 160px;
    }
    
    .app-bottom {
        height: 100px;
    }
    
    .planner-evolution {
        flex-direction: column;
        gap: 1rem;
    }
    
    .evolution-step {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 8rem 2rem 4rem;
    background: white;
    min-height: 100vh;
}

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

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.legal-body {
    line-height: 1.7;
}

.legal-body .section {
    margin-bottom: 3rem;
}

.legal-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-body p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-body ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-body li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.legal-body a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-body a:hover {
    color: #1d4ed8;
}

.friendly-note {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.friendly-note strong {
    color: #0c4a6e;
}

.thank-you {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #bae6fd;
    text-align: center;
}

.thank-you h2 {
    color: #0c4a6e;
    border-bottom: none;
    margin-bottom: 1rem;
}

.thank-you p {
    color: #075985;
    font-size: 1.125rem;
}

.gratitude-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.gratitude-icon {
    font-size: 1.5rem;
}

.gratitude-text {
    font-size: 1rem;
    font-weight: 600;
    color: #0c4a6e;
    font-style: italic;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 1rem 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body h2 {
        font-size: 1.5rem;
    }
    
    .legal-body h3 {
        font-size: 1.125rem;
    }
    
    .legal-body p,
    .legal-body li {
        font-size: 0.95rem;
    }
    
    .gratitude-note {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }
    
    .legal-body ul {
        margin-left: 1rem;
    }
    
    .friendly-note,
    .thank-you {
        padding: 1rem;
    }
}

/* Force Contact Cards Grid Layout - Override any conflicting styles */
section#contact .contact-cards,
.contact .contact-cards,
.contact-content .contact-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: none !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
}

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

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

.hero-content,
.feature-card,
.screenshot-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
