/* assets/css/style.css */

:root {
    --primary: #FF9B50;
    --primary-dark: #FF8533;
    --primary-light: #FFB380;
    --orange-50: #FFF4ED;
    --orange-100: #FFE5D1;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Quick Links Bar */
.top-bar {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 1.5rem;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.top-link:hover {
    color: var(--primary-light);
}

.top-link svg {
    width: 16px;
    height: 16px;
}

.top-download {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.download-text {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.store-badge-mini {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.store-badge-mini:hover {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 41px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 50%, var(--orange-50) 100%);
    transition: padding-top 0.3s ease;
}

body.scrolled .hero {
    padding-top: 140px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Download Section */
.download-section {
    margin-bottom: 2rem;
}

.download-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-900);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid var(--gray-900);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.store-button svg {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1.125rem;
    font-weight: 600;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 155, 80, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--orange-50);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-image {
    position: relative;
}

.app-mockup {
    width: 380px;
    height: 620px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 155, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.app-mockup:hover {
    transform: rotate(3deg) scale(1.05);
}

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

/* App Screenshots Showcase Section */
.screenshots-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--orange-50) 100%);
    overflow: hidden;
}

.screenshots-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--orange-100);
    -webkit-overflow-scrolling: touch;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: var(--orange-100);
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.screenshot-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.3s ease;
}

.phone-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: var(--white);
}

.screenshot-caption {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: center;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-card p {
    font-size: 1.25rem;
    color: var(--gray-700);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--orange-100);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 155, 80, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
}


/* Features Detail Page */
.features-detail {
    padding: 80px 0;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-bottom: 3rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--orange-100);
    transition: all 0.3s;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(255, 155, 80, 0.15);
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-info p {
    color: var(--gray-600);
}

.features-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(255, 155, 80, 0.3);
}


.card-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.card-icon {
    color: var(--primary);
    margin: 0 auto 1rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--gray-600);
}

.content-card {
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--orange-100) 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.content-card h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}



/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-download {
    margin-top: 2.5rem;
}

.cta-download h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.store-button-white {
    display: inline-block;
    transition: all 0.3s;
    filter: brightness(0) invert(1);
}

.store-button-white:hover {
    transform: translateY(-5px) scale(1.05);
}

.store-button-white img {
    height: 50px;
    width: auto;
}

/* Page Header */
.page-header {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 100%);
    transition: padding-top 0.3s ease;
}

body.scrolled .page-header {
    padding-top: 140px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Privacy Policy Page */
.privacy-content {
    padding: 80px 0;
}

.privacy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.privacy-card h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.privacy-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0 1rem;
}

.privacy-card p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-card ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.privacy-card ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
}

.privacy-card ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1.4;
}

.contact-card {
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 100%);
    border: 2px solid var(--orange-100);
}

.contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--orange-50);
    border-radius: 12px;
    border: 1px solid var(--orange-100);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    color: var(--white);
}

.method-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-content p {
    color: var(--gray-600);
}

.social-contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--gray-900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 155, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--white) 100%);
    border-radius: 16px;
    border: 2px solid var(--orange-100);
}

.success-message svg {
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Additional Features Section */
.additional-features {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--orange-100);
}

.additional-features h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.small-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--orange-100);
    transition: all 0.3s;
}

.small-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 155, 80, 0.15);
}

.small-feature svg {
    color: var(--primary);
    margin-bottom: 1rem;
}

.small-feature h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.small-feature p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.sidebar-download {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.sidebar-download h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.sidebar-stores {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.sidebar-stores a {
    display: block;
    transition: all 0.3s;
}

.sidebar-stores a:hover {
    transform: translateY(-3px);
}

/* About Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    background: var(--orange-50);
    border-radius: 12px;
    border: 1px solid var(--orange-100);
}

.value-item h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin: 0;
}

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

.content-type {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--orange-100);
    transition: all 0.3s;
}

.content-type:hover {
    box-shadow: 0 8px 20px rgba(255, 155, 80, 0.12);
    transform: translateY(-3px);
}

.content-type h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.content-type p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.about-download {
    margin-top: 2.5rem;
}

.about-download .store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-links {
    margin-top: 2rem;
    text-align: center;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-subtext a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.cta-subtext a:hover {
    text-decoration: none;
}

.social-links-about {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-link-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--orange-50);
    border: 1px solid var(--orange-100);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
    transition: all 0.3s;
}

.social-link-about:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 155, 80, 0.3);
}

.social-link-about svg {
    width: 24px;
    height: 24px;
}

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

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.footer-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-stores h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.store-badge {
    display: inline-block;
    transition: all 0.3s;
}

.store-badge:hover {
    transform: translateY(-3px);
}

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

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-col p {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .top-download {
        justify-content: center;
    }

    .navbar {
        top: 75px;
    }

    .navbar.scrolled {
        top: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: var(--orange-50);
    }

    .hero {
        padding: 140px 0 60px;
    }

    body.scrolled .hero {
        padding-top: 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .download-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .store-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .store-button {
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .app-mockup {
        width: 280px;
        height: 540px;
    }

    .screenshots-carousel {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .page-header {
        padding: 140px 0 40px;
    }

    body.scrolled .page-header {
        padding-top: 100px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .privacy-card {
        padding: 1.5rem;
    }
}

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

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-content h2,
    .section-header h2 {
        font-size: 1.75rem;
    }
}