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

:root {
    /* WatchCurator App Color Scheme */
    --brand-color: #006747;           /* BrandColor Light Mode */
    --brand-color-dark: #00a86b;      /* BrandColor Dark Mode */
    --primary-dark: #004d35;          /* PrimaryDark Light Mode */
    --accent-light: #66d9a6;          /* Light accent from app */
    --accent-dark: #2a2a2a;           /* Dark backgrounds from app */
    
    /* Derived colors for gradients and variations */
    --brand-gradient-start: #006747;
    --brand-gradient-end: #004d35;
    --brand-light: #00a86b;
    --brand-lighter: #66d9a6;
    
    /* Enhanced Neutral Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --background-light: #ffffff;
    --background-gray: #f8fafc;
    --background-subtle: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Professional Spacing System */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius System */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* Enhanced Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-color) 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--background-light);
    color: var(--brand-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--background-subtle);
    border-color: var(--brand-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
}

.btn-outline:hover {
    background: var(--brand-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-outline:disabled:hover {
    background: transparent;
    color: var(--brand-color);
    transform: none;
    box-shadow: none;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
    border-radius: var(--radius-lg);
}
}

.btn-secondary:hover {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}
}

.btn-secondary:hover {
    background: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

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

.btn-outline:hover {
    background: var(--brand-color);
    color: white;
}

.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-outline:disabled:hover {
    background: transparent;
    color: var(--brand-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--brand-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-logo a {
    transition: opacity 0.2s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-link:hover {
    color: var(--brand-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-color);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background-color: var(--background-subtle);
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--brand-color);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-subtle) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 103, 71, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 168, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

/* Enhanced App Screenshots */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-screenshots-duo {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    align-items: center;
}

.app-screenshots-duo .app-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
}

.app-screenshots-duo .screenshot-image {
    max-width: 280px;
    max-height: 560px;
    width: auto;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* Clickable hero screenshots */
.app-screenshots-duo .app-screenshot a {
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-2xl);
}

.app-screenshots-duo .app-screenshot a:hover {
    transform: translateY(-8px);
}

.app-screenshots-duo .app-screenshot a:hover .screenshot-image {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Enhanced Sections */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    position: relative;
}

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

/* Enhanced Apps Section */
.apps {
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
}

.apps-grid {
    display: grid;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.app-card {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, var(--brand-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.app-card.featured {
    border: 2px solid var(--brand-color);
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-subtle) 100%);
}

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

.app-card.coming-soon {
    opacity: 0.7;
    transform: none;
}

.app-card.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.app-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.app-header-icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 1rem;
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.hero-title-row .hero-icon {
    margin-bottom: 0;
}

.app-hero h1,
.app-hero .hero-tagline,
.app-hero .hero-description {
    color: white;
}

.app-hero {
    padding-top: 120px;
    padding-bottom: 60px;
}

.app-status {
    margin-bottom: 40px;
}

.app-details {
    padding-top: 60px;
}

.app-info h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.app-tagline {
    color: var(--brand-color);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.app-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.feature-list h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

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

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
    padding-left: var(--space-lg);
    position: relative;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    color: var(--brand-light);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.app-actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.app-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.status-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.launching {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    color: #92400e;
}

.status-badge.available {
    background: linear-gradient(135deg, #d1fae5 0%, #10b981 100%);
    color: #065f46;
}

/* Enhanced About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-subtle) 0%, var(--background-gray) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 103, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.value-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.value-item h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.about-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl);
}

.collection-item {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.collection-item.watch {
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-color) 100%);
}

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

.collection-item.book {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--brand-light) 100%);
}

.collection-item.coin {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* Enhanced Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-subtle) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 103, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-method {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-light) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

.contact-method:hover::before {
    transform: scaleY(1);
}

.contact-method h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-method a {
    color: var(--brand-color);
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.contact-method a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-color);
    transition: width 0.2s ease;
}

.contact-method a:hover {
    color: var(--brand-light);
}

.contact-method a:hover::after {
    width: 100%;
}

/* Enhanced Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, var(--brand-light) 100%);
}

.contact-form h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--background-light);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(0, 103, 71, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-submit {
    text-align: center;
    margin-top: var(--space-xl);
}

.form-submit .btn {
    min-width: 200px;
}

/* Product Pages */
.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--border-color) 100%);
}

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

.product-badge {
    margin-bottom: 1rem;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge.launching {
    background: #fef3c7;
    color: #d97706;
}

.badge.available {
    background: #d1fae5;
    color: #065f46;
}

.product-hero h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.5rem;
    color: var(--brand-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
    margin-bottom: 2rem;
}

.product-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* App Screenshot Styles */
.app-screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-image {
    max-width: 300px;
    max-height: 600px;
    width: auto;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--text-primary);
}

.product-screenshot {
    max-width: 350px;
    max-height: 700px;
    width: auto;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--text-primary);
}

/* App Showcase */
.app-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup .app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.phone-mockup .app-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.collection-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.watch-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.watch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--background-gray);
    border-radius: 8px;
}

.watch-photo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--primary-dark) 100%);
    border-radius: 6px;
}

.watch-details h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0 0 2px 0;
}

.watch-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-light);
}

/* What's New Section */
.whats-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.whats-new .section-header h2 {
    color: #0369a1;
}

.whats-new .feature-card {
    background: white;
    border: 1px solid #bae6fd;
    box-shadow: 0 4px 6px rgba(3, 105, 161, 0.1);
}

.whats-new .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(3, 105, 161, 0.15);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--background-gray);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.testimonial-content p::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--brand-color);
    margin-right: 0.25rem;
}

.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--brand-color);
    margin-left: 0.25rem;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: 600;
    color: var(--brand-color);
    font-size: 0.9rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-gray);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Enhanced Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-subtle) 0%, var(--background-gray) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 103, 71, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-light);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, var(--brand-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--brand-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-subtle) 100%);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-light) 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: var(--space-2xl);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.pricing-features li::before {
    content: "✓";
    color: var(--brand-light);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.pricing-action .btn {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand-light);
    position: relative;
    z-index: 1;
}

.pricing-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 103, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.screenshot-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.screenshot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-color) 0%, var(--brand-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
}

.screenshot-item:hover::before {
    transform: scaleX(1);
}

.screenshot-display {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-screenshot {
    max-width: 220px;
    max-height: 440px;
    width: auto;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--text-primary);
    transition: all 0.3s ease;
}

.screenshot-item:hover .feature-screenshot {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.screenshot-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 600;
}

.screenshot-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-mockup {
    margin-bottom: 1.5rem;
}

.screenshot-mockup .phone-frame {
    width: 200px;
    height: 400px;
    margin: 0 auto;
}

.screenshot-content {
    padding: 15px;
    height: 100%;
}

.collection-view .watch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.watch-grid .watch-card {
    height: 60px;
}

.detail-view .watch-photo-large {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.watch-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.wear-stats {
    height: 30px;
    background: var(--background-gray);
    border-radius: 4px;
}

.analytics-view .chart-area {
    height: 80px;
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--border-color) 100%);
    border-radius: 6px;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.stat-card {
    height: 40px;
    background: var(--background-gray);
    border-radius: 4px;
}

.screenshot-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.screenshot-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Enhanced FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-subtle) 0%, var(--background-gray) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 103, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-light) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 1);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.faq-item h4::before {
    content: "Q:";
    color: var(--brand-color);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: var(--space-xl);
    position: relative;
}

.faq-item p::before {
    content: "A:";
    color: var(--brand-light);
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

/* Enhanced CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(102, 217, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta h2 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    margin-bottom: var(--space-lg);
}

.cta .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.125rem;
    padding: var(--space-lg) var(--space-2xl);
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: var(--space-lg) 0 0 0;
    font-style: italic;
}

/* Privacy Policy */
.privacy-policy {
    padding: 120px 0 80px;
    background: var(--background-light);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-summary {
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--border-color) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
}

.highlight-item h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.contact-method {
    background: var(--background-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-method h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-method a {
    color: var(--brand-color);
    font-weight: 500;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #0f172a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 168, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 217, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--space-lg);
    font-weight: 600;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-light) 0%, var(--accent-light) 100%);
}

.footer-section p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-left: var(--space-sm);
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--accent-light);
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(var(--space-sm));
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container,
    .product-hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .product-actions {
        flex-direction: column;
    }
    
    .product-stats {
        justify-content: space-around;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .screenshot-image {
        max-width: 240px;
        max-height: 480px;
    }
    
    .product-screenshot {
        max-width: 280px;
        max-height: 560px;
    }
    
    .feature-screenshot {
        max-width: 160px;
        max-height: 320px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .product-hero h1 {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Professional Loading States and Micro-interactions */
.loading-state {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading-state::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-color);
    border-top-color: var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Hover States */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-2px);
}

/* Focus States for Accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 2px solid var(--brand-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: pageEnter 0.6s ease-out forwards;
}

@keyframes pageEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .hero-graphic {
        order: -1;
    }
    
    .app-screenshots-duo {
        gap: var(--space-lg);
    }
    
    .app-screenshots-duo .screenshot-image {
        max-width: 200px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-list {
        text-align: center;
    }
    
    .app-actions {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .app-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }
    
    .section-header,
    .app-card,
    .feature-card,
    .pricing-card,
    .faq-item {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --background-light: #ffffff;
        --border-color: #000000;
        --brand-color: #0066cc;
    }
    
    .btn-primary {
        background: #0066cc;
        border: 2px solid #000000;
    }
    
    .btn-outline {
        border: 2px solid #000000;
        background: #ffffff;
        color: #000000;
    }
}

/* Reduced Motion Support */
@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;
    }
    
    .hero::before,
    .about::before,
    .contact::before,
    .pricing::before,
    .screenshots::before,
    .faq::before {
        display: none;
    }
}

/* Safe Animation Classes */
.animate-ready {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Dual App Screenshots for Hero */
.app-screenshots-duo {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.app-screenshots-duo .app-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.app-screenshots-duo .screenshot-image {
    max-width: 250px;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--text-primary);
}

.screenshot-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .app-screenshots-duo {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .app-screenshots-duo .screenshot-image {
        max-width: 200px;
        max-height: 400px;
    }
    
    .screenshot-label {
        font-size: 0.9rem;
    }
}

/* BourbonVault Specific Styles */
.bourbon-app-mockup .bourbon-card {
    height: 80px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.feature-showcase {
    padding: 80px 0;
    background: var(--background-light);
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.showcase-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.feature-highlights li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-highlights li:before {
    content: "✓";
    color: var(--brand-light);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-mockup {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.mockup-header {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-light);
}

.detail-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.field-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.field-value {
    color: var(--text-primary);
    font-weight: 600;
}

.sharing-options {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--background-gray);
    border-radius: 8px;
    flex: 1;
}

.share-icon {
    font-size: 1.5rem;
}

.share-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.analytics-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.analytics-card {
    background: var(--background-gray);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.card-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-color);
}

/* Responsive adjustments for showcase */
@media (max-width: 768px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-item.reverse {
        direction: ltr;
    }
    
    .sharing-options {
        flex-direction: column;
    }
    
    .analytics-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .analytics-card {
        padding: 0.75rem;
    }
    
    .card-title {
        font-size: 0.8rem;
    }
    
    .card-value {
        font-size: 1rem;
    }
}

/* Screenshot Mockups */
.screenshot-mockup .bourbon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.screenshot-mockup .bourbon-card {
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
}

.screenshot-mockup .bourbon-photo-large {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    margin-bottom: 12px;
}

.screenshot-mockup .bourbon-info h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.screenshot-mockup .bourbon-details {
    margin-bottom: 12px;
}

.screenshot-mockup .detail-row {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
    padding: 2px 0;
    border-bottom: 1px solid var(--border-color);
}

.screenshot-mockup .tasting-notes {
    background: var(--background-gray);
    padding: 8px;
    border-radius: 6px;
}

.screenshot-mockup .notes-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.screenshot-mockup .notes-content {
    height: 30px;
    background: white;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.screenshot-mockup .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
}

.screenshot-mockup .stat-card {
    background: var(--background-gray);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.screenshot-mockup .stat-title {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.screenshot-mockup .stat-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-color);
}
/* User Guide Section */
.user-guide-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.guide-content-preview {
    padding: 2rem 0;
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-content-preview h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.guide-content-preview p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.guide-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.highlight-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.highlight-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.guide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.guide-visual {
    display: flex;
    justify-content: center;
}

.guide-preview-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 400px;
    width: 100%;
}

.guide-header-preview {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-light);
}

.guide-header-preview h4 {
    color: var(--brand-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guide-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.guide-toc-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toc-item {
    padding: 0.75rem;
    background: var(--background-gray);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-light);
}

/* What's New Section in User Guide */
.whats-new-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #bae6fd;
}

.whats-new-section h2 {
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.whats-new-section p em {
    color: #0284c7;
    font-weight: 500;
}

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

.feature-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #bae6fd;
    box-shadow: 0 2px 4px rgba(3, 105, 161, 0.1);
}

.feature-highlight h4 {
    color: #0369a1;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.feature-highlight p {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for user guide */
@media (max-width: 768px) {
    .guide-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-actions {
        justify-content: center;
    }
    
    .guide-preview-card {
        max-width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .guide-actions {
        flex-direction: column;
    }
    
    .guide-actions .btn {
        width: 100%;
        text-align: center;
    }
}