:root {
    --primary: #6019E6;
    --primary-light: #7B3FFF;
    --primary-dark: #4C12B3;
    --light-gray: #F5F5F7;
    --mid-gray: #E5E5E5;
    --dark-gray: #333333;
    --success: #34C759;
    --text: #1D1D1F;
    --text-light: #6B6B6F;
    --white: #FFFFFF;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background-color: var(--white);
    padding-top: 60px; /* Adjust this value to match your header height */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
    min-width: 300px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.fw-bold {
    font-weight: 700;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Header Styles */
header {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--mid-gray);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

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

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.header-cta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(96, 25, 230, 0.3);
}

.header-cta:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 25, 230, 0.4);
}

.join-beta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    cursor: pointer;
}

.join-beta:hover {
    background-color: rgba(51, 51, 51, 0.05);
    color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2001;
}

.modal-close:hover {
    background-color: #f5f5f5;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.hero-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero-content strong {
    font-weight: 600;
    color: var(--text);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.hero-image {
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-height: 600px;
    max-width: 100%;
    object-fit: contain;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(96, 25, 230, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(96, 25, 230, 0.4);
}

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

.app-store-badge {
    height: 50px;
    transition: transform 0.3s ease;
}

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

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

/* App Intro Section */
.app-intro {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, var(--light-gray), white);
    position: relative;
}

.app-intro .container {
    max-width: 1000px;
}

.app-intro h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.app-intro .tagline {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    color: var(--text-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.intro-feature {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.intro-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.intro-feature .icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(96, 25, 230, 0.1);
    border-radius: 50%;
}

.intro-feature svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.intro-feature h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.intro-feature p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.intro-divider {
    display: block;
    height: 3px;
    width: 40px;
    background-color: var(--primary);
    margin: var(--spacing-xs) auto var(--spacing-sm);
    border-radius: 2px;
}

/* Dark Section - Focus on What Matters */
.dark-section {
    background-color: #111111;
    color: white;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    position: relative;
}

.dark-section h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: white;
    text-align: left;
    margin-bottom: 60px;
}

.dark-section .content-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-md);
}

.dark-section .features-column {
    max-width: 600px;
}

.dark-section .feature-card {
    position: relative;
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.dark-section .feature-card:hover {
    transform: translateY(-5px);
}

.dark-section .feature-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.dark-section .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.dark-section .feature-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.dark-section .app-image-container {
    position: absolute;
    top: -50px;
    right: -600px;
    bottom: 50px;
    width: 45%;
    overflow: visible;
    z-index: 0;
}

.dark-section .app-image {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    max-height: 100%;
    width: auto;
}

/* Performance Tracking Section */
.performance-tracking {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
    position: relative;
}

.performance-tracking .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.performance-tracking h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text);
}

.performance-tracking .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.tracking-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.feature-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.feature-image {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Screenshots Section */
.screenshots {
    padding: var(--spacing-xl) 0;
}

.screenshot-container {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.screenshot {
    width: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Feature Tabs Section */
.feature-tabs {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.feature-tabs .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.feature-tabs h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-tabs .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: 8px;
}

.tab-button {
    padding: 12px 20px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 4px;
}

.tab-button:hover {
    background-color: rgba(96, 25, 230, 0.05);
    border-color: rgba(96, 25, 230, 0.3);
}

.tab-button.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(96, 25, 230, 0.2);
}

/* Tab Content */
.tab-content {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 550px;
}

.tab-panel {
    display: none;
    padding: var(--spacing-md);
}

.tab-panel.active {
    display: flex;
    flex-direction: column;
}

.feature-section-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    background-color: rgba(96, 25, 230, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.feature-icon-large svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.feature-section-title {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.feature-section-description {
    color: var(--text-light);
    font-size: 1rem;
}

/* Feature Grid */
.feature-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2.5;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 2px;
}

.pro-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Comparison Section */
.comparison-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.comparison-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.comparison-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.comparison-section .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.comparison-container {
    display: flex;
    gap: var(--spacing-lg);
    position: relative;
}

.comparison-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    background-color: var(--mid-gray);
    z-index: 1;
}

.comparison-col {
    flex: 1;
    padding: var(--spacing-md);
    border-radius: 16px;
    position: relative;
}

.comparison-col:first-child {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-col:last-child {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transform: translateX(-10px);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

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

.comparison-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xs);
}

.comparison-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: var(--spacing-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-icon svg {
    width: 16px;
    height: 16px;
}

.is-icon {
    background-color: rgba(96, 25, 230, 0.15);
}

.is-icon svg {
    stroke: var(--primary);
}

.isnt-icon {
    background-color: rgba(100, 100, 100, 0.1);
}

.isnt-icon svg {
    stroke: #666;
}

.comparison-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text);
}

.developer-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: #f9f7ff;
    background-image: 
        linear-gradient(rgba(96, 25, 230, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 25, 230, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center center;
}

.developer-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fcfaf2;
    border-radius: 3px;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    overflow: visible; /* Changed from hidden to visible */
    transform: rotate(-0.5deg);
    background-image: 
        linear-gradient(#f7f4e9 1px, transparent 1px), 
        linear-gradient(90deg, #f7f4e9 1px, transparent 1px);
    background-size: 20px 20px, 20px 20px;
    background-position: -1px -1px, -1px -1px;
    border: none;
    /* Add some extra margin/padding to account for the sticker */
    margin-bottom: 30px;
    padding-left: calc(var(--spacing-lg) + 20px);
}

/* These pseudo-elements create the layered paper effect */
.developer-container::before, .developer-container::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fcfaf2;
    z-index: -1;
}

.developer-container::before {
    top: 2px;
    left: 2px;
    transform: rotate(0.8deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.developer-container::after {
    top: -2px;
    left: -2px;
    transform: rotate(-0.3deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Add a little paper tape effect for the sticker */
.developer-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -10px;
    width: 80px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    transform: rotate(-5deg);
    z-index: 5;
    opacity: 0.5;
    border-radius: 2px;
}

.letter-header {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text);
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    transform: rotate(0.5deg);
}

.date-stamp {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: #666;
    text-align: right;
    margin-bottom: var(--spacing-sm);
    transform: rotate(0.5deg);
}

.developer-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--spacing-md);
    font-family: 'Calibri', 'Segoe UI', sans-serif;
}

.developer-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: var(--spacing-md) 0;
    padding-top: var(--spacing-md);
    font-style: italic;
    border-top: none;
    text-align: center;
}

.developer-contact {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.developer-contact a {
    color: var(--primary);
    font-weight: 600;
}

.signature-container {
    text-align: right;
    margin-top: var(--spacing-lg);
    padding-right: var(--spacing-sm);
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    line-height: 1;
    transform: rotate(-2deg);
    display: inline-block;
}

.developer-avatar-sticker {
    position: absolute;
    bottom: -40px; /* Position it slightly outside the letter for a sticker effect */
    left: -20px; /* Position it slightly outside the letter for a sticker effect */
    width: 120px;
    height: 120px;
    z-index: 10; /* Ensure it appears above the letter */
    transform: rotate(-8deg); /* Rotate it slightly for sticker-like appearance */
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2)); /* Add shadow for depth */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.developer-avatar-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.developer-avatar-sticker:hover {
    transform: rotate(-5deg) scale(1.05); /* Subtle animation on hover */
}

/* Make sure the parent container has enough padding to account for the sticker */
@media (max-width: 768px) {
    .developer-avatar-sticker {
        width: 100px;
        height: 100px;
        bottom: -30px;
        left: -15px;
    }
}

@media (max-width: 576px) {
    .developer-avatar-sticker {
        width: 80px;
        height: 80px;
        bottom: -25px;
        left: -10px;
    }
}

/* CTA Section */
.cta {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.cta .btn {
    background-color: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background-color: var(--light-gray);
    color: var(--primary-dark);
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--dark-gray);
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: var(--mid-gray);
    transition: color 0.2s ease;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

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

.copyright {
    margin-top: var(--spacing-md);
    text-align: center;
    color: var(--mid-gray);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .dark-section .app-image-container {
        width: 40%;
    }
    
    .dark-section .app-image {
        right: -20px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-top: 50px;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
        max-width: 80%;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .dark-section {
        padding-top: 450px;
        padding-bottom: var(--spacing-xl);
    }
    
    .dark-section .content-container {
        margin-top: 30px;
    }
    
    .dark-section .features-column {
        max-width: 100%;
    }
    
    .dark-section .app-image-container {
        position: absolute;
        width: 100%;
        height: 450px;
        top: -50px;
        bottom: auto;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
    }

    .dark-section .app-image {
        position: absolute;
        right: 0;
        top: 0;
        transform: none;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .dark-section h2 {
        margin-top: 0;
    }
    
    .tracking-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-two-col {
        grid-template-columns: 1fr;
    }
    
    .tab-navigation {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: var(--spacing-sm);
    }
    
    .tab-button {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .comparison-container {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .comparison-container::before {
        display: none;
    }
    
    .comparison-col:first-child,
    .comparison-col:last-child {
        transform: none;
        width: 100%;
    }
    
    .col {
        flex: 100%;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

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

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .screenshot {
        width: 250px;
        height: 500px;
    }

    .features, .screenshots, .testimonials, .cta {
        padding: var(--spacing-lg) 0;
    }
    
    .developer-container {
        padding: var(--spacing-md);
        padding-left: calc(var(--spacing-md) + 20px);
        transform: rotate(-0.3deg);
    }
    
    .developer-container::after {
        width: 60px;
        height: 25px;
        bottom: -25px;
    }
    
    .letter-header {
        font-size: 2rem;
    }
    
    .signature {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .footer-links a {
        padding: 0.5rem;
    }
    
    .feature-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-icon-large {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .screenshot {
        width: 200px;
        height: 400px;
    }

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

    .developer-container {
        padding-left: calc(var(--spacing-sm) + 20px);
    }
    
    .developer-container::after {
        width: 50px;
        height: 20px;
        bottom: -20px;
    }
}

/* Footer Styles */
.site-footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: linear-gradient(to bottom, #2d2d2d, #222222);
    color: var(--white);
    position: relative;
}

/* Add a subtle purple gradient line at the top of the footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary), var(--primary-light));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Footer Brand Section */
.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    text-decoration: none;
}

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

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

/* App download section in footer styling */
.app-download {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: var(--spacing-md);
}

.footer-app-store-badge img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Join Beta button styling for footer */
.app-download .join-beta {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    margin-left: 5px;
}

.app-download .join-beta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* For mobile view */
@media (max-width: 576px) {
    .app-download {
        justify-content: center;
        margin-top: 15px;
    }
    
    .app-download .join-beta {
        margin-top: 5px;
    }
}

.footer-app-store-badge img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-app-store-badge:hover img {
    opacity: 0.9;
}

/* Footer Links Section */
.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    flex: 2;
}

.footer-links-column {
    flex: 1;
    min-width: 140px;
}

.footer-column-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: 8px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #b0b0b0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--white);
}

.footer-links-list a:hover::after {
    width: 100%;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: var(--spacing-sm);
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

.footer-made-with {
    font-size: 0.9rem;
    color: #888;
}

.footer-made-with p {
    margin: 0;
}

.heart-icon {
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Media Queries */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links-container {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-links-container {
        gap: var(--spacing-md);
    }
    
    .footer-links-column {
        min-width: 120px;
        flex-basis: calc(50% - var(--spacing-md));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding-top: var(--spacing-md);
    }
    
    .footer-links-container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-links-column {
        flex-basis: 100%;
    }
    
    .footer-column-title {
        padding-bottom: 6px;
        margin-bottom: 10px;
    }
    
    .footer-links-list li {
        margin-bottom: 8px;
    }
}