/*
Theme Name: Technophere App
Description: テクノフィアのアプリケーション紹介サイト用テーマ
Version: 1.0.0
Author: Technophere
Author URI: https://technophere.com
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.site-header {
    background: rgba(248, 250, 252, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #111827;
    padding: 1rem 0;
    position: sticky;
    top: 12px;
    z-index: 100;
    transition: padding 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    margin: 0 20px;
    width: calc(100% - 40px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 -1px 0 rgba(15, 23, 42, 0.03) inset;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #111827;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-title:hover { opacity: 0.8; }

/* Header on scroll */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 0.6rem 0;
    top: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 10px 40px rgba(15, 23, 42, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.6) inset,
        0 -1px 0 rgba(15, 23, 42, 0.04) inset;
    transform: translateY(-1px);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-navigation-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation-menu a:hover { 
    color: #111827; 
}

/* Enhanced hover underline effect */
.main-navigation-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.main-navigation-menu a:hover::after {
    width: 100%;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: relative;
}

/* Desktop navigation - hide mobile menu */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .main-navigation-menu {
        display: flex !important;
        position: static;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        gap: 1.5rem;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .main-navigation-menu li {
        width: auto;
    }
    
    .main-navigation-menu a {
        display: inline;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        border-bottom: none;
        text-align: left;
    }
    
    .main-navigation-menu a::after {
        display: block;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #111827;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Main content */
.site-main {
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Hero section */
.hero-section {
    color: #ffffff;
    padding: 8rem 2rem 4rem 2rem;
    text-align: center;
    position: relative;
    margin-top: -100px;
    padding-top: calc(8rem + 100px);
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Hero background slides */
.hero-background-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}

/* First slide starts visible */
.hero-slide:nth-child(1) {
    opacity: 1;
    transform: scale(1.1);
}

/* Fade and zoom animation for first slide (starts visible) */
@keyframes fadeAndZoomFirst {
    0% { 
        transform: scale(1.1); 
        opacity: 1; 
    }
    23% { 
        transform: scale(1.0); 
        opacity: 1; 
    }
    25% { 
        opacity: 0; 
    }
    100% { 
        transform: scale(1.0); 
        opacity: 0; 
    }
}

/* Fade and zoom animation for other slides */
@keyframes fadeAndZoom {
    0% { 
        transform: scale(1.1); 
        opacity: 0; 
    }
    2% { 
        opacity: 1; 
    }
    23% { 
        transform: scale(1.0); 
        opacity: 1; 
    }
    27% { 
        opacity: 0; 
    }
    100% { 
        transform: scale(1.0); 
        opacity: 0; 
    }
}

/* Individual fade animations with proper timing */
.hero-slide:nth-child(1) { 
    animation: fadeAndZoomFirst 16s infinite 0s ease-out;
}

.hero-slide:nth-child(2) { 
    animation: fadeAndZoom 16s infinite 3.5s ease-out;
}

.hero-slide:nth-child(3) { 
    animation: fadeAndZoom 16s infinite 7.5s ease-out;
}

.hero-slide:nth-child(4) { 
    animation: fadeAndZoom 16s infinite 11.5s ease-out;
}

/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2);
    letter-spacing: 0.025em;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #f1f5f9;
    margin-bottom: 2.25rem;
    font-weight: 500;
    line-height: 1.7;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

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

.hero-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.hero-button.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.hero-button.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #475569;
    border: 1px solid #cbd5e1;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #94a3b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}



/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.125rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    margin: 0.2rem auto 0;
    border-radius: 2px;
}

.section-subtitle { 
    font-size: 1.0625rem; 
    color: #64748b; 
    font-weight: 500; 
    opacity: 0.9;
}

/* Apps section */
.apps-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}



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

.app-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
}

.app-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1), 0 4px 10px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
}

.app-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover::before {
    opacity: 1;
}

.app-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card:hover .app-card-image img { transform: none; }

.app-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.app-status.planning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #475569;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-1px);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 48, 79, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.app-card-content {
    padding: 2rem;
}

.app-card h3 {
    color: #111827;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.app-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.app-card-footer {
    margin-top: 1.5rem;
}

.app-link {
    display: inline-block;
    background-color: #04304F;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.app-link:hover {
    background-color: #064e7a;
    color: white;
}

.app-link.disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.7;
}

/* About section */
.about-section {
    padding: 6rem 0;
    background-color: #ffffff;
}



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



.about-lead {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.7;
}

.about-details {
    display: grid;
    gap: 1.5rem;
}

.about-item h3 {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-item p {
    color: #6b7280;
    line-height: 1.7;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features section */
.features-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}



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

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover { transform: translateY(-2px); border-color: #d1d5db; }

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

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

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

/* Tech Stack section */
.tech-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}



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

.tech-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1), 0 4px 10px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.tech-card:hover::before {
    opacity: 1;
}

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

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

.tech-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact section */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}



.contact-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.contact-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.contact-button.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.contact-button.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.contact-button.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #475569;
    border: 1px solid #cbd5e1;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.contact-button.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #94a3b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #e2e8f0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}



.footer-content {
    padding: 4rem 0 2rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    opacity: 0.9;
    max-width: 400px;
    text-align: left;
    margin: 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.footer-nav a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-nav a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p,
.footer-powered p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.footer-powered a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-powered a:hover {
    color: #8b5cf6;
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about-lead {
        font-size: 1.125rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .app-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* App pages responsive for tablet */
    .hero-content-wrapper {
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .app-title {
        font-size: 3rem;
    }
    
    .hero-info-card {
        margin-top: 1.5rem;
    }
    
    .features-grid-improved {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 1.5rem;
    }

    /* Footer responsive for tablet */
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-content {
        padding: 3.5rem 0 2rem 0;
    }

    .footer-description {
        max-width: 350px;
    }

    /* Page title and subtitle responsive for 1024px */
    .page-title {
        font-size: 2.25rem !important;
    }

    .page-subtitle {
        font-size: 0.95rem !important;
    }

    /* Privacy and Terms section responsive for 1024px */
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    /* Header responsive */
    .site-header {
        margin: 0 10px;
        width: calc(100% - 20px);
        padding: 0.75rem 0;
    }
    
    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .main-navigation {
        gap: 0;
    }
    
    .main-navigation-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
    }
    
    .main-navigation-menu.active {
        display: flex;
    }
    
    .main-navigation-menu li {
        width: 100%;
    }
    
    .main-navigation-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        text-align: center;
    }
    
    .main-navigation-menu li:last-child a {
        border-bottom: none;
    }
    
    .main-navigation-menu a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero section responsive */
    .hero-section {
        padding: 6rem 1rem 4rem 1rem;
        margin-top: -80px;
        padding-top: calc(6rem + 80px);
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    

    
    /* Apps section responsive */
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .app-card-image {
        height: 200px;
    }
    
    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content .about-image {
        order: -1;
    }
    

    
    .about-lead {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .about-item h3 {
        font-size: 1.125rem;
    }
    
    .about-item p {
        font-size: 0.95rem;
    }
    
    /* Features section responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Tech section responsive */
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-card {
        padding: 2rem;
    }
    
    .tech-card h3 {
        font-size: 1.125rem;
    }
    
    .tech-card p {
        font-size: 0.95rem;
    }
    
    /* Contact section responsive */
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-content h2 {
        font-size: 1.875rem;
    }
    
    .contact-content p {
        font-size: 0.95rem;
    }
    
    .app-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Footer responsive */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-content {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-description {
        margin: 0 auto;
        text-align: center;
    }
    
    /* Section titles responsive */
    .section-title {
        font-size: 1.625rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-content h2 {
        font-size: 1.875rem;
    }

    /* Page content responsive styles */
    .page-content {
        padding: 3rem 1rem 2rem 1rem;
    }

    .page-header {
        padding-bottom: 1.5rem;
        margin: 1.5rem 0 2rem 0;
        text-align: left;
    }

    .page-title {
        font-size: 2rem !important;
    }

    .page-subtitle {
        font-size: 0.9rem !important;
    }

    .page-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }

    .page-body h3 {
        font-size: 1.25rem;
    }

    .page-body p {
        font-size: 1rem;
    }

    /* Privacy and Terms section responsive for 768px */
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.375rem !important;
    }
    
    /* Container responsive */
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Header responsive for small screens */
    .site-header {
        margin: 0 5px;
        width: calc(100% - 10px);
        padding: 0.5rem 0;
        top: 8px;
    }
    
    .site-header .container {
        padding: 0 0.5rem;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .main-navigation {
        gap: 0;
    }
    
    .main-navigation-menu {
        margin-top: 0.25rem;
        padding: 0.75rem 0;
    }
    
    .main-navigation-menu a {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-toggle {
        width: 22px;
        height: 22px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    /* Hero section responsive for small screens */
    .hero-section {
        padding: 4rem 1rem 3rem 1rem;
        margin-top: -60px;
        padding-top: calc(4rem + 60px);
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    

    
    /* Apps section responsive for small screens */
    .apps-grid {
        gap: 1.5rem;
    }
    
    .app-card {
        max-width: 100%;
    }
    
    .app-card-image {
        height: 180px;
    }
    
    .app-card-content {
        padding: 1.5rem;
    }
    
    .app-card-content p {
        font-size: 0.95rem;
    }
    
    .app-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .app-card h3 {
        font-size: 1.125rem;
    }
    
    /* About section responsive for small screens */
    .about-content {
        gap: 1.5rem;
    }
    
    .about-lead {
        font-size: 0.9rem;
    }
    
    .about-item h3 {
        font-size: 1rem;
    }
    
    .about-item p {
        font-size: 0.9rem;
    }
    
    /* Features section responsive for small screens */
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    /* Tech section responsive for small screens */
    .tech-card {
        padding: 1.5rem;
    }
    
    .tech-card h3 {
        font-size: 1.125rem;
    }
    
    .tech-card p {
        font-size: 0.9rem;
    }
    
    .tech-icon {
        font-size: 2rem;
    }
    
    /* Contact section responsive for small screens */
    .contact-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
    
    /* Footer responsive for small screens */
    .footer-content {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-heading {
        font-size: 0.9rem;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        max-width: none;
        margin: 0 auto;
        text-align: center;
    }
    
    .legal-documents p {
        font-size: 0.85rem;
    }
    
    .legal-link {
        font-size: 0.85rem;
    }
    
    .legal-link::after {
        font-size: 0.9rem;
    }
    
    /* Section titles responsive for small screens */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-content h2 {
        font-size: 1.875rem;
    }
    
    /* Container responsive for small screens */
    .container {
        padding: 0 1rem;
    }
    

    
    /* Section padding for small screens */
    .apps-section,
    .about-section,
    .tech-section,
    .contact-section {
        padding: 4rem 0;
    }

    /* Page content responsive styles for small screens */
    .page-content {
        padding: 3rem 1rem 1.5rem 1rem;
    }

    .page-header {
        padding-bottom: 1rem;
        margin: 1.5rem 0 1.5rem 0;
        text-align: left;
    }

    .page-title {
        font-size: 1.75rem !important;
    }

    .page-subtitle {
        font-size: 0.85rem !important;
    }

    .page-body h2 {
        font-size: 1.375rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .page-body h3 {
        font-size: 1.125rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .page-body p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .page-body ul {
        margin: 1rem 0 1.25rem 1rem;
    }

    .page-body li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .contact-info {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }

    /* Privacy and Terms section responsive for 480px */
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.25rem !important;
    }
}

/* Page styles - Full width content */
.page-content {
    max-width: 1800px;
    margin: 0;
    padding: 4rem 0 2rem 0;
}

.page-header {
    text-align: left;
    margin: 2rem 0 3rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 400;
}

.page-body {
    background: #ffffff;
    padding: 0;
    text-align: left;
}

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

.page-body h2:first-child {
    margin-top: 0;
}

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

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

.page-body ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.page-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.feature-card h3 {
    color: #04304F;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Tech specs */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-item {
    background: #f8fafc;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.tech-item h3 {
    color: #04304F;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.tech-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Download section */
.download-section {
    background-color: #04304F;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.download-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Support section */
.support-section {
    background: #f8fafc;
    padding: 3rem 2rem;
    margin-top: 3rem;
    border: 1px solid #e5e7eb;
}

.support-info {
    background: white;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid #e5e7eb;
}

/* Terms and Privacy specific styles */
.terms-section h2,
.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

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

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

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

/* App Page specific styles */

/* App Hero Section */
.app-hero-section {
    position: relative;
    min-height: 60vh;
    padding: 8rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -100px;
    padding-top: calc(8rem + 100px);
    overflow: hidden;
}



.app-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.app-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.app-hero-content {
    text-align: left;
    max-width: 800px;
    padding: 0 1rem 0 0;
    margin-left: 0rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-icon {
    font-size: 1rem;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.app-subtitle {
    display: block;
    font-size: 1.75rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.app-description {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    margin-top: 2rem;
}

.hero-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    z-index: -1;
}

.hero-info-card .info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Small screen optimization for info list */
@media (max-width: 480px) {
    .hero-info-card .info-list {
        gap: 0.5rem;
    }
    
    .hero-info-card .info-item {
        padding: 0.5rem;
        min-height: auto;
    }
}

.hero-info-card .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-info-card .info-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-info-card .info-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-info-card .info-value {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}



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

.overview-content {
    display: block;
    width: 100%;
}

.overview-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.key-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.point-icon {
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.point-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.point-content strong {
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
}

.point-content span {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.overview-sidebar {
    position: sticky;
    top: 2rem;
}

.info-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 120px;
}

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

.info-value {
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
}

/* App Features Section */
.app-features-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title-simple {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.1);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    font-size: 1.5rem;
}

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

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.25rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* App Tech Section */
.app-tech-section {
    padding: 4rem 0;
    background: #ffffff;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item-simple {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.tech-item-simple h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.tech-item-simple p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* App Download Section */
.app-download-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.download-header {
    text-align: left;
    margin-bottom: 3rem;
}

.download-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.download-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

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

.store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge img {
    height: 60px;
    width: auto;
}

/* App Support Section */
.app-support-section {
    padding: 4rem 0;
    background: #ffffff;
}

.support-header {
    text-align: left;
    margin-bottom: 3rem;
}

.support-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.support-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

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

.support-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.1);
}

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

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

.support-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-block;
    background: #6366f1;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.support-link:hover {
    background: #5b5bd6;
}



/* Responsive for App Pages */
@media (max-width: 768px) {
    .app-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem 0;
        margin-top: -80px;
        padding-top: calc(6rem + 80px);
    }
    
    .app-hero-section .container {
        padding: 0 1rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .app-hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .hero-info-card {
        max-width: 400px;
        margin: 2rem auto 0;
        align-self: center;
        padding: 1.25rem;
    }
    
    .hero-info-card .info-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .app-title {
        font-size: 2.5rem;
    }
    
    .app-subtitle {
        font-size: 1.25rem;
    }
    
    .app-description {
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* App overview section responsive */
    .app-overview-section {
        padding: 3rem 0;
    }
    
    .overview-main h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .overview-description {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .key-points {
        flex-direction: column;
        gap: 1rem;
    }
    
    .point-item {
        min-width: auto;
    }
    
    /* App features section responsive */
    .app-features-section {
        padding: 3rem 0;
    }
    
    .features-grid-improved {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    /* App tech section responsive */
    .app-tech-section {
        padding: 3rem 0;
    }
    
    .tech-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-item-simple {
        padding: 1rem;
    }
    
    /* App download section responsive */
    .app-download-section {
        padding: 3rem 0;
    }
    
    .download-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .store-badge {
        width: 100%;
        max-width: 200px;
    }
    
    .store-badge img {
        height: 50px;
        width: 100%;
        object-fit: contain;
    }
    
    /* App support section responsive */
    .app-support-section {
        padding: 3rem 0;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .app-hero-section {
        min-height: auto;
        padding: 4rem 0 2rem 0;
        margin-top: -60px;
        padding-top: calc(4rem + 60px);
    }
    
    .app-hero-section .container {
        padding: 0 0.5rem;
    }
    
    .hero-content-wrapper {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .app-hero-content {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-info-card {
        max-width: 320px;
        padding: 0.75rem;
        margin: 1.5rem auto 0;
    }
    
    .hero-info-card .info-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .hero-info-card .info-item {
        padding: 0.5rem;
    }
    
    .hero-info-card .info-label {
        font-size: 0.75rem;
    }
    
    .hero-info-card .info-value {
        font-size: 0.75rem;
    }
    
    .app-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .app-subtitle {
        font-size: 1.125rem;
    }
    
    .app-description {
        font-size: 0.95rem;
    }
    
    .app-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    /* App overview section responsive for small screens */
    .app-overview-section {
        padding: 2rem 0;
    }
    
    .overview-main h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .overview-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .key-points {
        gap: 0.75rem;
    }
    
    .point-item {
        gap: 0.75rem;
    }
    
    .point-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .point-content strong {
        font-size: 0.9rem;
    }
    
    .point-content span {
        font-size: 0.85rem;
    }
    
    /* App features section responsive for small screens */
    .app-features-section {
        padding: 2rem 0;
    }
    
    .features-grid-improved {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .feature-icon-wrapper {
        align-self: center;
    }
    
    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .feature-content h3 {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .feature-content p {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .feature-list {
        gap: 0.25rem;
    }
    
    .feature-list li {
        font-size: 0.8rem;
        padding-left: 1rem;
    }
    
    /* App tech section responsive for small screens */
    .app-tech-section {
        padding: 2rem 0;
    }
    
    .tech-list {
        gap: 0.75rem;
    }
    
    .tech-item-simple {
        padding: 0.75rem;
    }
    
    .tech-item-simple h3 {
        font-size: 1rem;
    }
    
    .tech-item-simple p {
        font-size: 0.8rem;
    }
    
    /* App download section responsive for small screens */
    .app-download-section {
        padding: 2rem 0;
    }
    
    .download-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .download-header p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .download-buttons {
        gap: 0.75rem;
    }
    
    .store-badge {
        max-width: 180px;
    }
    
    .store-badge img {
        height: 45px;
    }
    
    /* App support section responsive for small screens */
    .app-support-section {
        padding: 2rem 0;
    }
    
    .support-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .support-header p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .support-options {
        gap: 1rem;
    }
    
    .support-card {
        padding: 1.25rem;
    }
    
    .support-icon {
        font-size: 2rem;
    }
    
    .support-card h3 {
        font-size: 1.125rem;
    }
    
    .support-card p {
        font-size: 0.9rem;
    }
    
    .support-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Section titles responsive for small screens */
    .section-title-simple {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* Extra small screens for app hero section */
@media (max-width: 320px) {
    .app-hero-section .container {
        padding: 0 0;
    }
    
    .hero-info-card {
        padding: 0.5rem;
        max-width: 280px;
    }
    
    .section-description {
        font-size: 0.95rem;
        text-align: center;
    }

    /* Page title and subtitle responsive for 320px */
    .page-title {
        font-size: 1.5rem !important;
    }

    .page-subtitle {
        font-size: 0.8rem !important;
    }

    /* Privacy and Terms section responsive for 320px */
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.125rem !important;
    }
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Legal Documents Section */
.legal-documents {
    margin-top: 2rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.legal-documents h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.legal-documents p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
    font-size: 0.9rem;
}

.legal-link:hover {
    color: #1f2937;
}

.legal-link::after {
    content: "→";
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.5rem;
} 