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

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

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 120px;
    height: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
}

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

.nav-link {
    text-decoration: none;
    color: #6e6e73;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #1d1d1f;
    background: rgba(0, 122, 255, 0.1);
}





/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: #f5f5f7;
    text-align: center;
}

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

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

.gradient-text {
    color: #1d1d1f;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #6e6e73;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    min-height: 40px;
    min-width: 40px;
}

.btn-primary {
    background: #1d1d1f;
    color: white;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #1d1d1f;
    border: 1px solid #e5e5e7;
}

.btn-secondary:hover {
    background: #f5f5f7;
    transform: translateY(-1px);
}

/* Floating App Cards for Hero */
.hero-visual {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.app-card-hero {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
    text-align: center;
    width: 200px;
}

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

.app-card-hero .icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #f0f0f0;
}

.app-card-hero h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.app-card-hero p {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.4;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 60px auto 0;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1d1d1f;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.app-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 32px 16px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.app-icon-link {
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.app-icon-link:hover {
    transform: scale(1.05);
}

.icon-bg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #f0f0f0;
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Updated gradient backgrounds for the new style */
.gift-pool {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.productivity {
    background: linear-gradient(135deg, #1d1d1f, #5856D6);
}

.lifestyle {
    background: linear-gradient(135deg, #34C759, #30D158);
}

/* Apps Section */
.apps-section {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.app-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e7;
    transition: all 0.2s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.app-visual {
    background: #f5f5f7;
    padding: 32px;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 280px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-image {
    width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.app-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.app-header {
    background: #f5f5f7;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e5e7;
}

.app-icon-large {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.app-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.app-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.app-info p {
    font-size: 14px;
    color: #6e6e73;
}

.app-preview {
    padding: 16px;
    text-align: center;
}

.preview-content p {
    font-size: 14px;
    color: #6e6e73;
    margin-top: 12px;
}

.qr-code-placeholder {
    width: 100px;
    height: 100px;
    background: #f5f5f7;
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8e8e93;
}

.task-list-placeholder {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.task-item {
    width: 160px;
    height: 8px;
    background: #f5f5f7;
    border-radius: 4px;
}

.bird-feeder-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.bird-feeder-placeholder p {
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    color: white;
}

.app-details {
    padding: 32px;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.app-description {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 24px;
}

.app-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.feature-tag {
    background: #f5f5f7;
    color: #6e6e73;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.app-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.app-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
}

.app-actions .btn-secondary {
    background: #1d1d1f;
    color: white;
    border: 1px solid #1d1d1f;
}

.app-actions .btn-secondary:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-1px);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.coming-soon {
    background: #FFF3CD;
    color: #856404;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #f5f5f7;
}

.about-content {
    text-align: center;
    margin-bottom: 60px;
}

.about-description {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-item {
    display: flex;
    align-items: stretch;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e5e5e7;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.25rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

/* Purpose-Driven icon (red) */
.value-item:nth-child(1) .value-icon {
    background: #ffe6e6;
    color: #dc3545;
}

/* Beautiful Design icon (blue) */
.value-item:nth-child(2) .value-icon {
    background: #e6f3ff;
    color: #007bff;
}

/* Performance First icon (green) */
.value-item:nth-child(3) .value-icon {
    background: #e6ffe6;
    color: #28a745;
}

.value-card p {
    color: #6e6e73;
    line-height: 1.5;
    margin: 0;
}

/* Company Stats */
.company-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    transition: all 0.2s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007AFF;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6e6e73;
    font-weight: 500;
    line-height: 1.3;
}

.team-illustration {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments for company stats */
@media (max-width: 768px) {
    .company-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 160px;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0 10px;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.contact-details p {
    color: #6e6e73;
}

.contact-details a {
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #6e6e73;
    padding: 20px 0 20px;
    border-top: 1px solid #e5e5e7;
}

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

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

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.footer-brand p {
    color: #6e6e73;
    font-size: 14px;
}

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

.footer-links a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1d1d1f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e7;
    color: #8e8e93;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.5rem;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        flex-wrap: wrap;
        font-size: 0.97rem;
        padding-top: 0.5rem;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.97rem;
        padding: 0 0.1em;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .app-actions .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        /* flex-direction: column; 
        gap: 20px;*/
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .app-card {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .nav-link {
        font-size: 0.97rem;
        padding: 0 0.1em;
    }

    .iphone-image {
        width: 200px;
        height: auto;
    }
}

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

.app-card {
    animation: fadeInUp 0.6s ease-out;
}

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

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

/* Simple Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hero-illustration {
    text-align: center;
    padding: 40px;
}

.hero-icon {
    width: 100px;
    height: 100px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #1d1d1f;
    font-size: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-icon:hover {
    transform: scale(1.05);
}

.hero-tagline {
    font-size: 1.25rem;
    color: #6e6e73;
    font-weight: 500;
    margin: 0;
} 