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

:root {
    --primary-color: #007AFF;
    --primary-dark: #0051D5;
    --secondary-color: #5856D6;
    --success-color: #34C759;
    --warning-color: #FF9500;
    --danger-color: #FF3B30;
    --dark: #1C1C1E;
    --gray-dark: #3A3A3C;
    --gray: #8E8E93;
    --gray-light: #C7C7CC;
    --gray-lighter: #F2F2F7;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-content: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-photo: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-memories: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 12px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-brand a:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 10px;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Download Button in Nav */
.nav-download-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 122, 255, 0.3);
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

/* Screenshot Gallery */
.screenshots {
    padding: 4rem 0;
    background: var(--gray-lighter);
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshot-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.screenshot-main {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    padding: 8px;
}

.screenshot-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.screenshot-thumbs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-thumb {
    width: 150px;
    height: 94px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.7;
}

.screenshot-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.screenshot-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.3);
}

@media (max-width: 768px) {
    .screenshot-thumbs {
        justify-content: center;
    }
    
    .screenshot-thumb {
        width: 120px;
        height: 75px;
    }
}

/* Interface Guide Section */
.interface-guide {
    padding: 4rem 0;
    background: var(--white);
}

.interface-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

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

.interface-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.interface-controls h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.control-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.control-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.control-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.control-list strong {
    color: var(--dark);
    font-weight: 600;
}

.interface-note {
    padding: 1rem 1.5rem;
    background: var(--gray-lighter);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    color: var(--gray-dark);
}

@media (max-width: 768px) {
    .interface-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interface-controls {
        order: 2;
    }
    
    .interface-image {
        order: 1;
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-note {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Page Heroes */
.page-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero.gradient-content {
    background: var(--gradient-content);
}

.page-hero.gradient-photo {
    background: var(--gradient-photo);
}

.page-hero.gradient-memories {
    background: var(--gradient-memories);
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: 80px 0;
}

.content-section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Features Grid */
.features {
    background: var(--gray-lighter);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

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

.user-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.user-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.user-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
    display: inline-block;
}

/* Steps */
.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray-dark);
}

/* Testimonial */
.testimonial {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: var(--gray-lighter);
    text-align: center;
    padding: 80px 0;
}

.cta.gradient-content {
    background: var(--gradient-content);
    color: var(--white);
}

.cta.gradient-photo {
    background: var(--gradient-photo);
    color: var(--white);
}

.cta.gradient-memories {
    background: var(--gradient-memories);
    color: var(--white);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: inherit;
}

.cta-note {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom a {
    color: var(--gray-light);
    text-decoration: none;
}

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

/* Requirements Section */
.requirements {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.requirements h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.requirement-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.requirement-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.requirement-box ul {
    list-style: none;
    padding-left: 1.5rem;
}

.requirement-box li {
    margin-bottom: 0.5rem;
    position: relative;
}

.requirement-box li:before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: #4CAF50;
    font-weight: bold;
}

.requirement-box.coming-soon {
    background: #fff9e6;
    border: 2px dashed #ffa500;
}

.requirement-box.coming-soon li:before {
    color: #ffa500;
}

.requirement-box p {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Important Notice Styling */
.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.important-notice p {
    color: #856404;
    margin: 0;
}

.important-notice strong {
    color: #721c24;
}

/* Content Pages */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    text-align: left;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.story-quote {
    background: var(--gray-lighter);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

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

.audience-card {
    background: var(--gray-lighter);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.audience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Content Creator Page Specific */
.intro-box {
    background: var(--gray-lighter);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.intro-box h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.workflow-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.workflow-old,
.workflow-new {
    padding: 2rem;
    border-radius: var(--radius);
}

.workflow-old {
    background: #fff5f5;
    border: 2px solid var(--danger-color);
}

.workflow-new {
    background: #f0fff4;
    border: 2px solid var(--success-color);
}

.workflow-old h3 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.workflow-new h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.workflow-old ol,
.workflow-new ol {
    padding-left: 1.5rem;
}

.workflow-old li,
.workflow-new li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.feature-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.feature-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-detail p {
    line-height: 1.8;
    color: var(--gray-dark);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card cite {
    display: block;
    text-align: right;
    color: var(--gray);
    font-size: 0.9rem;
}

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

.use-case {
    background: var(--gray-lighter);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
}

.use-case h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.use-case p {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.stats-box {
    display: flex;
    justify-content: space-around;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-comparison {
    background: var(--gray-lighter);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.pricing-comparison p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.roi-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 1rem;
}

/* Photographer Page Specific */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.problem-card {
    background: #fff5f5;
    border-left: 4px solid var(--danger-color);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.problem-card h3 {
    color: var(--danger-color);
    margin-bottom: 0.5rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 2rem 0;
    text-align: center;
}

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

.photographer-type {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.photographer-type h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.featured-quote {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 3rem 0;
}

.featured-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.featured-quote cite {
    display: block;
    text-align: right;
    opacity: 0.9;
    font-style: normal;
}

.discovery-benefits {
    background: var(--gray-lighter);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.time-calculation {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

.time-calculation h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.time-calculation ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.time-calculation li {
    margin-bottom: 0.5rem;
}

.calculation-result {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
    text-align: center;
}

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

.pro-feature {
    background: var(--gray-lighter);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.pro-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Photo Collectors Page Specific */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.memory-card {
    background: linear-gradient(135deg, #fff 0%, var(--gray-lighter) 100%);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.memory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.memory-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.use-case-personal {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.use-case-personal h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.beyond-item {
    background: var(--gray-lighter);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.beyond-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.emotional-appeal {
    background: var(--gradient-memories);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 3rem 0;
    text-align: center;
}

.emotional-appeal p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-assurance {
    background: var(--gray-lighter);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    text-align: center;
}

.privacy-assurance h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-simple {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    text-align: center;
}

.pricing-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray);
}

/* Privacy Page Specific */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-container h2 {
    font-size: 1.8rem;
    text-align: left;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.privacy-container p,
.privacy-container ul {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.privacy-container ul {
    padding-left: 2rem;
}

.privacy-container strong {
    color: var(--dark);
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.privacy-footer p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-download-btn {
        display: none; /* Hide on mobile to avoid crowding */
        /* Alternatively, could be positioned differently or shown in mobile menu */
    }

    .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);
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-description br {
        display: none;
    }

    .hero-description strong {
        display: block;
        margin-bottom: 0.5rem;
    }

    .workflow-comparison {
        grid-template-columns: 1fr;
    }

    .stats-box {
        flex-direction: column;
        gap: 2rem;
    }

    .steps {
        flex-direction: column;
    }

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

    .btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-note {
        font-size: 0.85rem;
        padding: 0 20px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark);
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-decline {
    background: var(--gray-lighter);
    color: var(--dark);
}

.cookie-btn-decline:hover {
    background: var(--gray-light);
}

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

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

/* Mobile cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        margin-top: 15px;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-btn {
        padding: 12px 16px;
        width: 100%;
    }
}