/* CSS Variables for Mobile Optimization */
:root {
    --vh: 1vh;
    --primary-color: #7c3aed;
    --secondary-color: #a855f7;
    --accent-color: #fbbf24;
    --text-color: #333;
    --bg-color: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-first approach */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Improve touch targets for mobile */
button,
a,
input,
select,
textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Mobile loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Improved focus styles - remove unwanted outlines */
*:focus {
    outline: none;
}

/* Custom focus styles for better UX */
button:focus,
.btn:focus,
.download-btn:focus,
a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
    transition: box-shadow 0.2s ease;
}

/* Remove focus outline for mouse users but keep for keyboard */
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.download-btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* Keyboard focus styles */
button:focus-visible,
.btn:focus-visible,
.download-btn:focus-visible,
a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
}

/* General button improvements */
button,
.btn,
input[type="button"],
input[type="submit"] {
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    user-select: none;
    cursor: pointer;
}

button:active,
.btn:active,
input[type="button"]:active,
input[type="submit"]:active {
    outline: none;
    border: none;
}

/* Remove any default browser button styling */
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7c3aed;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7c3aed;
}

.nav-download-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
}

.nav-download-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4) !important;
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Mobile-optimized hero background */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-pain {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 1.5rem !important;
    font-size: 1.2rem;
    opacity: 1;
}

.hero-solution {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 2rem !important;
    opacity: 1;
}

.hero-solution strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.download-btn {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
    outline: none;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.download-btn:active {
    transform: translateY(0px);
    transition: transform 0.1s ease;
}

.download-btn:focus {
    outline: none;
    box-shadow: none;
}

.download-btn img {
    height: 60px;
    width: auto;
}

.app-store {
    cursor: pointer;
}

.app-store::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.app-store:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Tooltip arrow */
.app-store::before {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.app-store:hover::before {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background: #f8f9fa;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.battery-percent {
    background: #ff3b30;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 11px;
    margin-left: 4px;
}

.app-content {
    padding: 20px;
    height: calc(100% - 120px);
    overflow: hidden;
}

.greeting-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 20px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.greeting-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.greeting-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.moon-icon {
    margin-right: 8px;
    font-size: 16px;
}

.greeting-subtitle {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.budget-card {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 20px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.budget-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.budget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.budget-title {
    font-size: 16px;
    font-weight: 500;
}

.dollar-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.budget-amount {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.budget-subtitle {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    width: 10%;
    border-radius: 3px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    opacity: 0.8;
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.stat-icon.purple-icon { background: #7c3aed; }
.stat-icon.orange-icon { background: #f59e0b; }
.stat-icon.red-icon { background: #ef4444; }

.stat-number {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}

/* Analytics Section */
.analytics-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.analytics-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.analytics-icon {
    font-size: 16px;
}

.analytics-title {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.analytics-content {
    margin-bottom: 8px;
}

.projection-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}

.projection-amount {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.projection-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.add-button {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* Bottom Navigation */
.bottom-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    padding: 8px 0;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px;
}

.nav-item.active .nav-icon {
    color: #7c3aed;
}

.nav-item.active .nav-label {
    color: #7c3aed;
}

.nav-icon {
    font-size: 16px;
    color: #6b7280;
}

.nav-label {
    font-size: 10px;
    color: #6b7280;
    font-weight: 400;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.stat-item {
    background: white;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.stat-icon.purple { background: #7c3aed; }
.stat-icon.orange { background: #f59e0b; }
.stat-icon.red { background: #ef4444; }

.stat-number {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.floating-button {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 300;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 0 16px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e5e7eb;
}

.nav-item {
    text-align: center;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.nav-item.active {
    color: #7c3aed;
}

.nav-icon {
    font-size: 18px;
    margin-bottom: 2px;
}

.nav-label {
    font-size: 10px;
    font-weight: 400;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: #f8fafc;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.screenshots p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.screenshot-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.screenshot-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7c3aed;
}

/* Free Trials Screenshot Styles */
.screenshot-phone {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 30px;
    padding: 8px;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.screenshot-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.screenshot-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background: #f8f9fa;
    height: 24px;
}

.screenshot-status-bar .status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.battery-indicator {
    background: #ff3b30;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    margin-left: 4px;
    font-weight: 500;
}

.trials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    background: #f8f9fa;
}

.trials-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

.warning-icon {
    margin-right: 10px;
    font-size: 20px;
}

.view-all-btn {
    background: #e5e7eb;
    border: none;
    padding: 8px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    color: #7c3aed;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-all-btn:hover {
    background: #d1d5db;
}

.trials-content {
    padding: 0 24px 90px;
    background: #f8f9fa;
    height: calc(100% - 130px);
    overflow: hidden;
}

.trial-card {
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trial-card.pictumen {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.trial-card.disney {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.trial-card.partial {
    height: 50px;
    padding: 0;
    margin-bottom: 0;
    border-radius: 24px 24px 0 0;
}

.trial-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.trial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.2;
}

.service-category {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 400;
}

.price-info {
    text-align: right;
}

.price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.billing {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 400;
}

.trial-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.trial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trial-date {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

.days-remaining {
    text-align: center;
    min-width: 40px;
}

.days-number {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

.days-label {
    font-size: 10px;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.screenshot-fab {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 300;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
    z-index: 10;
}

.screenshot-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 0 20px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e5e7eb;
    align-items: center;
}

.screenshot-nav .nav-item {
    text-align: center;
    color: #9ca3af;
    transition: color 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-nav .nav-item.active {
    color: #7c3aed;
}

.screenshot-nav .nav-icon {
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 1;
}

.screenshot-nav .nav-label {
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
}

/* Budget Overview Screenshot Styles */
.budget-phone {
    background: #f5f5f5;
    border: 3px solid #000000;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.details-title {
    font-size: 20px;
    font-weight: 500;
    color: #1f2937;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
}

.details-content {
    padding: 24px;
    background: #ffffff;
    height: calc(100% - 140px);
    overflow-y: auto;
}

.subscription-card {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.disney-card {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sub-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.sub-category {
    font-size: 12px;
    opacity: 0.8;
}

.sub-price-info {
    text-align: right;
}

.sub-price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.sub-billing {
    font-size: 11px;
    opacity: 0.8;
}

.tab-navigation {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: #6366f1;
    color: white;
}

.tab-btn:not(.active) {
    background: #f3f4f6;
    color: #6b7280;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 16px;
}

.status-section {
    margin-bottom: 32px;
}

.status-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
}

.status-icon {
    margin-right: 8px;
    font-size: 16px;
}

.billing-section {
    margin-bottom: 32px;
}

.billing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.billing-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.billing-icon {
    margin-right: 8px;
    font-size: 16px;
}

.billing-value {
    text-align: right;
}

.billing-date {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2px;
}

.billing-note {
    font-size: 12px;
    color: #6b7280;
}

.billing-amount {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.additional-section {
    margin-bottom: 32px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.edit-btn, .delete-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn {
    background: #6366f1;
    color: white;
}

.edit-btn:hover {
    background: #5856eb;
}

.delete-btn {
    background: #ef4444;
    color: white;
}

.delete-btn:hover {
    background: #dc2626;
}

.bottom-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-indicator {
    width: 134px;
    height: 5px;
    background: #ffffff;
    border-radius: 3px;
    opacity: 0.8;
}

.nav-home {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.6;
}

.nav-back {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    opacity: 0.6;
}

/* Smart Notifications Phone */
.notifications-phone .screenshot-screen {
    background: #f5f5f5;
    position: relative;
}

/* Settings Header */
.settings-header {
    padding: 20px;
    background: #f5f5f5;
}

.settings-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Settings Modal */
.settings-modal {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    bottom: 100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
}

.modal-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* Settings Sections */
.settings-section {
    margin-bottom: 30px;
}

.settings-section h4 {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.settings-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-icon {
    font-size: 16px;
    margin-right: 8px;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.option-btn {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #374151;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-btn.selected {
    border-color: #7c3aed;
    background: #7c3aed;
    color: white;
}

.option-btn:hover:not(.selected) {
    border-color: #7c3aed;
    background: #f3f4f6;
}

/* Time Grid */
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.time-btn {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    color: #374151;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-btn.selected {
    border-color: #7c3aed;
    background: #7c3aed;
    color: white;
}

.time-btn:hover:not(.selected) {
    border-color: #7c3aed;
    background: #f3f4f6;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.cancel-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.save-btn {
    flex: 2;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background: #7c3aed;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-btn:hover {
    background: #6d28d9;
}

/* Bottom Navigation */
.bottom-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item.active .nav-icon {
    color: #7c3aed;
}

.nav-item.active .nav-label {
    color: #7c3aed;
}

.nav-icon {
    font-size: 20px;
    color: #6b7280;
}

.nav-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}



/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.features > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #7c3aed;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Enhanced CTA Styles */
.cta-pain-point {
    font-size: 1.1rem;
    color: #ffeb3b;
    background: rgba(255, 235, 59, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ffeb3b;
    margin-bottom: 20px !important;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Global Purple Background Text Visibility Fix */
.cta-box,
.cta-box h1,
.cta-box h2,
.cta-box h3,
.cta-box h4,
.cta-box h5,
.cta-box h6,
.cta-box p {
    color: white !important;
}

.cta-box a {
    color: #fbbf24 !important;
    text-decoration: none;
    font-weight: 500;
}

.cta-box a:hover {
    color: #f59e0b !important;
}

/* Touch-friendly improvements for mobile */
.cta-box a,
.breadcrumb a,
.internal-link {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    margin: 2px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
}

.cta-box a:active,
.breadcrumb a:active,
.internal-link:active {
    transform: scale(0.98) !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.cta-solution {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px !important;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-solution strong {
    color: #4ade80;
    font-weight: 600;
}

.cta-guarantee {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-guarantee p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-guarantee p:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta-guarantee strong {
    color: #4ade80;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafbfc;
    border-top: 1px solid #e2e8f0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px 28px;
}

.faq-answer p {
    margin: 0 0 16px 0;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 18px 16px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 18px 16px;
    }
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7c3aed;
}

.footer-brand i {
    margin-right: 0.5rem;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7c3aed;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
}

.footer-social i {
    font-size: 18px;
}

.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-badge a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.footer-badge a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-badge img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #7c3aed;
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .download-btn img {
        height: 50px;
        width: auto;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }

    /* Scale app content for tablet screens */
    .app-content {
        padding: 16px;
    }

    .greeting-card {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .greeting-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .moon-icon {
        font-size: 14px;
        margin-right: 6px;
    }

    .greeting-subtitle {
        font-size: 11px;
    }

    .budget-card {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .budget-title {
        font-size: 14px;
    }

    .budget-amount {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .budget-subtitle {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .dollar-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .stats-row {
        gap: 12px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .stat-number {
        font-size: 18px;
    }

    .floating-button {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
        right: 16px;
    }

    .bottom-nav {
        height: 60px;
        padding: 0 12px;
    }

    .nav-item {
        padding: 6px;
    }

    .nav-icon {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .nav-label {
        font-size: 10px;
    }

    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .features > .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .screenshots {
        padding: 60px 0;
    }

    .screenshots h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .screenshot-item {
        padding: 1.5rem;
    }

    .screenshot-item img {
        width: 150px;
        height: 300px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .cta-pain-point {
        font-size: 1rem;
        padding: 16px;
        margin-bottom: 16px !important;
    }

    .cta-solution {
        font-size: 1.1rem;
        margin-bottom: 24px !important;
    }

    .cta-guarantee {
        gap: 16px;
        margin-top: 24px;
    }

    .cta-guarantee p {
        font-size: 0.9rem;
        padding: 10px 16px;
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    /* Blog Mobile Optimizations */
    .blog-post {
        padding: 30px 15px !important;
        max-width: 100% !important;
    }

    .blog-post h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .blog-post h2 {
        font-size: 1.5rem !important;
        padding-left: 15px !important;
    }

    .blog-post h3 {
        font-size: 1.2rem !important;
    }

    .blog-post p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .blog-post ul, .blog-post ol {
        padding-left: 25px !important;
    }

    .blog-post li {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-badge {
        order: -1;
        margin-bottom: 1rem;
    }

    .footer-badge img {
        width: 200px !important;
        height: 43px !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav {
        padding: 0.8rem 1rem;
    }

    .nav-brand {
        font-size: 1.3rem;
    }

    .nav-brand i {
        font-size: 1.5rem;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .download-btn img {
        height: 45px;
        width: auto;
        max-width: 140px;
    }

    .download-btn {
        flex: 0 1 auto;
        min-width: 140px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    /* Scale app content for small mobile screens */
    .app-content {
        padding: 12px;
    }

    .greeting-card {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .greeting-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .moon-icon {
        font-size: 11px;
        margin-right: 4px;
    }

    .greeting-subtitle {
        font-size: 9px;
    }

    .budget-card {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .budget-header {
        margin-bottom: 10px;
    }

    .budget-title {
        font-size: 11px;
    }

    .budget-amount {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .budget-subtitle {
        font-size: 8px;
        margin-bottom: 10px;
    }

    .dollar-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .progress-bar {
        height: 4px;
        margin-bottom: 6px;
    }

    .progress-labels {
        font-size: 7px;
    }

    .stats-row {
        gap: 8px;
        margin-bottom: 12px;
    }

    .stat-item {
        padding: 8px;
        border-radius: 8px;
    }

    .stat-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin-bottom: 4px;
    }

    .stat-number {
        font-size: 14px;
    }

    .floating-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 65px;
        right: 12px;
    }

    .bottom-nav {
        height: 50px;
        padding: 0 8px;
    }

    .nav-item {
        padding: 4px;
    }

    .nav-icon {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .nav-label {
        font-size: 8px;
    }

    .status-bar {
        padding: 6px 12px;
        font-size: 10px;
    }

    .features h2,
    .screenshots h2,
    .cta h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Blog Mobile Optimizations for Small Screens */
    .blog-post {
        padding: 20px 10px !important;
    }

    .blog-post h1 {
        font-size: 1.7rem !important;
        line-height: 1.1 !important;
    }

    .blog-post h2 {
        font-size: 1.3rem !important;
        padding-left: 12px !important;
        margin: 25px 0 12px !important;
    }

    .blog-post h3 {
        font-size: 1.1rem !important;
        margin: 20px 0 10px !important;
    }

    .blog-post p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .blog-post ul, .blog-post ol {
        padding-left: 20px !important;
        margin: 12px 0 !important;
    }

    .blog-post li {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }

    .cta-box, .highlight-box, .warning-box, .tip-box, .savings-box {
        margin: 20px 0 !important;
        padding: 15px 12px !important;
        border-radius: 8px !important;
    }

    .cta-box h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .cta-box p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .screenshot-item {
        padding: 1rem;
    }

    .screenshot-item img {
        width: 120px;
        height: 240px;
    }

    /* Scale screenshot phone mockups for small mobile */
    .screenshot-phone {
        width: 200px !important;
        height: 400px !important;
    }

    /* Scale screenshot content */
    .screenshot-screen {
        font-size: 12px;
    }

    .screenshot-status-bar {
        padding: 4px 8px;
        font-size: 8px;
    }

    .trials-header {
        padding: 8px 12px;
        font-size: 11px;
    }

    .trial-card {
        margin: 8px 12px;
        padding: 10px;
        border-radius: 10px;
    }

    .service-name {
        font-size: 11px;
    }

    .service-category {
        font-size: 8px;
    }

    .price {
        font-size: 11px;
    }

    .billing {
        font-size: 8px;
    }

    .trial-badge {
        font-size: 7px;
        padding: 2px 6px;
    }

    .trial-date {
        font-size: 8px;
    }

    .days-number {
        font-size: 14px;
    }

    .days-label {
        font-size: 7px;
    }

    .screenshot-item h3 {
        font-size: 1.2rem;
    }

    .screenshot-item p {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-social i {
        font-size: 16px;
    }

    .footer-badge img {
        width: 180px !important;
        height: 39px !important;
    }
}

/* Pagination Styles */
.pagination {
    margin: 60px 0 40px;
    padding: 0 20px;
}

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

.pagination-info {
    color: #6b7280;
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #f9fafb;
    border-color: #7c3aed;
    color: #7c3aed;
}

.pagination-btn.current {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

.pagination-btn.next {
    padding: 0 16px;
}

@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pagination-controls {
        justify-content: center;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .download-btn,
    .feature-card,
    .screenshot-item,
    .footer-social a {
        transition: none;
    }

    .download-btn:active,
    .feature-card:active,
    .screenshot-item:active {
        transform: scale(0.98);
    }

    .footer-social a:active {
        transform: scale(0.95);
    }
}

/* Blog Mobile Reading Optimizations */
@media (max-width: 768px) {
    .blog-post {
        line-height: 1.7 !important;
        word-spacing: 0.1em !important;
    }

    .blog-post h1, .blog-post h2, .blog-post h3, .blog-post h4 {
        word-wrap: break-word !important;
        hyphens: auto !important;
    }

    .blog-post img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        margin: 20px 0 !important;
    }

    .blog-post table {
        width: 100% !important;
        overflow-x: auto !important;
        display: block !important;
        white-space: nowrap !important;
    }

    .blog-post blockquote {
        margin: 20px 0 !important;
        padding: 15px 20px !important;
        border-left: 4px solid #7c3aed !important;
        background: rgba(124, 58, 237, 0.05) !important;
        border-radius: 0 8px 8px 0 !important;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-content {
        gap: 1.5rem;
    }

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

    .phone-mockup {
        width: 180px;
        height: 360px;
    }

    /* Scale app content for landscape mobile */
    .app-content {
        padding: 10px;
    }

    .greeting-card,
    .budget-card {
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .greeting-title {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .greeting-subtitle {
        font-size: 8px;
    }

    .budget-title {
        font-size: 10px;
    }

    .budget-amount {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .budget-subtitle {
        font-size: 7px;
        margin-bottom: 8px;
    }

    .stats-row {
        gap: 6px;
    }

    .stat-item {
        padding: 6px;
    }

    .stat-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin-bottom: 2px;
    }

    .stat-number {
        font-size: 12px;
    }

    .floating-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
        bottom: 55px;
        right: 10px;
    }

    .bottom-nav {
        height: 45px;
        padding: 0 6px;
    }

    .nav-icon {
        font-size: 12px;
    }

    .nav-label {
        font-size: 7px;
    }
}
