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

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

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

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1d1d1f;
    text-decoration: none;
}

.logo-image {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.logo-subtext {
    font-size: 0.75em;
    color: #6e6e73;
    font-weight: 400;
    margin-left: 0.25em;
}

.maker-gully-logo {
    height: 32px;
    width: auto;
    margin-left: 0.5rem;
    transition: opacity 0.2s ease;
    border-radius: 6px;
}

.maker-gully-logo:hover {
    opacity: 1;
}

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

.nav-link {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #007AFF;
}

/* Main Content */
.main {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e5e7;
}

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

.hero-text {
    color: #1d1d1f;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #007AFF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.25rem;
}

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

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

.btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #007AFF;
    color: white;
}

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Phone Mockup */
.phone-mockup {
    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);
}

/* Overview Section */
.overview {
    padding: 4rem 0;
    background: #ffffff;
}

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

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

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

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

.overview-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    text-align: center;
    transition: all 0.2s ease;
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #007AFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.overview-card p {
    color: #6e6e73;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f5f5f7;
}

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

.feature-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: #007AFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
}

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

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1d1d1f;
    font-size: 0.875rem;
}

.detail-item i {
    color: #007AFF;
    width: 16px;
}

/* Analysis Section */
.analysis {
    padding: 4rem 0;
    background: #ffffff;
}

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

.analysis-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    transition: all 0.2s ease;
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.analysis-icon {
    width: 50px;
    height: 50px;
    background: #007AFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.analysis-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1d1d1f;
}

.analysis-item p {
    color: #6e6e73;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.analysis-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-bar {
    flex: 1;
    height: 6px;
    background: #e5e5e7;
    border-radius: 3px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: #007AFF;
    border-radius: 3px;
    transition: width 1s ease;
}

.score-text {
    font-weight: 600;
    color: #007AFF;
    font-size: 0.875rem;
}

/* Download Section */
.download {
    padding: 4rem 0;
    background: #f5f5f7;
    text-align: center;
}

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

.download-content p {
    font-size: 1.125rem;
    color: #6e6e73;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

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

.download-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

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

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

/* Footer */
.footer {
    background: #888D92;
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    font-size: 0.97rem;
    border-top: 1px solid #b0b8c1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    max-width: 100vw;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
    padding: 0;
    transition: color 0.2s, text-decoration 0.2s;
    border-radius: 0;
    background: none;
}

.footer-link:hover,
.footer-link:focus {
    color: #b7c1c8;
    text-decoration: underline;
    background: none;
}

.footer-bottom {
    margin-top: 1.5rem;
    text-align: center;
    color: #e0e6ef;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
}

@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center; /* Center all footer content on mobile */
        gap: 1.2rem;
    }
    .footer-links {
        flex-direction: row;
        gap: 1.2rem;
        margin-top: 0.5rem;
        align-items: center;
        padding: 0 16px;
        text-align: center; /* Ensure links are centered */
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 1rem;
        padding: 0 8px;
        margin: 0 auto;
    }
}

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

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .iphone-image {
        width: 240px;
        height: auto;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
    
    .download-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    .hero-buttons {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .analysis-item {
        padding: 1.5rem;
    }
    
    .iphone-image {
        width: 200px;
        height: auto;
    }
    .footer-links {
        flex-direction: row;
        gap: 1rem;
        margin-top: 0.5rem;
        align-items: center;
        padding: 0 8px;
        text-align: center;
    }
} 

/* Carousel Styles for Analysis Factors */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    position: relative;
}
.analysis-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.analysis-carousel::-webkit-scrollbar {
    display: none;
}
.carousel-track {
    display: flex;
    gap: 2.5rem;
}
.analysis-item {
    min-width: 260px;
    max-width: 320px;
    flex: 0 0 auto;
    background: #f8f8fa;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    border-radius: 16px;
    border: none;
    box-shadow: none;
    font-size: 1.08rem;
    text-align: center;
    margin: 0;
}
/* Carousel Button Styling */
.carousel-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 50%;
    border: 2px solid #e0e6ef;
    background: #f8fafd;
    color: #007AFF;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
    padding: 0;
}
.carousel-btn:hover, .carousel-btn:focus {
    background: #007AFF;
    color: #fff;
    border-color: #007AFF;
    box-shadow: 0 4px 16px rgba(0,122,255,0.10);
}
.carousel-btn:active {
    background: #005bb5;
    color: #fff;
    border-color: #005bb5;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e6ef;
    transition: background 0.2s, transform 0.2s;
}
.carousel-indicator.active {
    background: #007AFF;
    transform: scale(1.25);
}
@media (max-width: 900px) {
    .carousel-track {
        gap: 1.2rem;
    }
    .analysis-item {
        min-width: 220px;
        max-width: 260px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    .carousel-track {
        gap: 0.7rem;
    }
    .analysis-item {
        min-width: 170px;
        max-width: 200px;
        padding: 1rem 0.5rem 0.8rem 0.5rem;
    }
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}
/* Remove grid for analysis */
.analysis-grid { display: none !important; } 

/* Icon Circle Style (shared with Features and Analysis Factors) */
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e6f0ff;
    color: #007AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.1rem auto;
    box-shadow: none;
}

.analysis-item h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-align: center;
}

.analysis-item p {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 0;
}

/* Remove grid/column styles for analysis section */
.analysis-grid, .analysis-item .analysis-icon, .analysis-score, .score-bar, .score-fill, .score-text {
    display: none !important;
} 

@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem 0;
  }
  .hero-content {
    align-items: center;
  }
  .hero-image {
    margin: 0 auto;
    max-width: 320px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .analysis-carousel {
    padding-bottom: 8px;
  }
  .carousel-track {
    gap: 1.2rem;
  }
  .analysis-item {
    min-width: 220px;
    max-width: 260px;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1rem;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2.2rem 0 1.2rem 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image {
    max-width: 200px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature {
    padding: 1.1rem 0.7rem;
  }
  .analysis-item {
    min-width: 170px;
    max-width: 210px;
    padding: 1rem 0.5rem 0.8rem 0.5rem;
  }
  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .footer {
    font-size: 0.95rem;
    padding: 1.2rem 0;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}

/* Make carousel touch-scrollable on mobile */
.analysis-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.analysis-carousel::-webkit-scrollbar {
  display: none;
}

/* Ensure cards and images are fluid */
.hero-image img, .feature img, .analysis-item img {
  max-width: 100%;
  height: auto;
  display: block;
} 