

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* 台灣傳統色彩變數 */
:root {
    /* 主色調 - 基於台灣傳統色彩 */
    --primary-red: #c53030; /* 朱紅 */
    --primary-gold: #d69e2e; /* 金黃 */
    --primary-blue: #2b6cb0; /* 青藍 */
    --primary-green: #38a169; /* 翠綠 */
    
    /* 輔助色 */
    --secondary-orange: #dd6b20; /* 橘紅 */
    --secondary-purple: #805ad5; /* 紫羅蘭 */
    --secondary-teal: #319795; /* 青色 */
    
    /* 中性色 */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* 漸變色 */
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, #f6e05e 100%);
    
    /* 陰影 */
    --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);
    
    /* 邊框半徑 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif TC', 'Microsoft JhengHei', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

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

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

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(213, 158, 46, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 48, 48, 0.2) 0%, transparent 50%),
        var(--gradient-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-signature {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

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

/* Book Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.book-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.book-cover {
    width: 280px;
    height: 380px;
    background: url(../images/1.jpg)no-repeat center center;
    background-size: cover;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.book-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
}

.book-author {
    font-size: 1.1rem;
    color: var(--primary-gold);
    text-align: center;
    font-weight: 600;
}

.book-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(15deg);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--gray-800);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background: var(--gray-50);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

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

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

@media (max-width: 768px) {
    .story-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-item.reverse {
        direction: ltr;
    }
}

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

.story-text blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.pain-points {
    list-style: none;
    margin: 1.5rem 0;
}

.pain-points li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.image-placeholder {
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder.nvidia {
    background: linear-gradient(135deg, #76b900 0%, #38a169 100%);
}

.book-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 568px) {
    .book-features {
        grid-template-columns: 1fr;
    }
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.feature .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Book Highlights */
.book-highlights {
    background: white;
}

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

@media (max-width: 468px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.highlight-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-card p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.page-ref {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    background: var(--gray-50);
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

/* Rules Section */
.rules-section {
    background: white;
}

.rules-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.rule-item {
    text-align: center;
    padding: 1.5rem;
}

.rule-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.rule-item h3 {
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.urgency-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 6px solid var(--primary-red);
}

.urgency-notice h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.urgency-notice ul {
    list-style: none;
    padding-left: 0;
}

.urgency-notice li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.urgency-notice li::before {
    content: '•';
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Final CTA */
.final-cta {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    opacity: 0.95;
    border-left: 4px solid var(--primary-gold);
    padding-left: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0;
}

.cta-content .quote {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 1.5rem 0;
}

.cta-content .nationality {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0;
    opacity: 0.95;
}

.final-cta-button {
    margin-top: 3rem;
}

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

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.floating-button {
    background: var(--gradient-gold);
    color: var(--gray-800);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: var(--shadow-xl);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 0 10px rgba(213, 158, 46, 0.1);
    }
    100% {
        box-shadow: var(--shadow-xl);
    }
}

/* Policy Pages Styles */
.page-header {
    background: var(--gradient-primary);
    padding: 2rem 0;
    color: white;
}

.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

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

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

/* Policy Page Layout */
.policy-page, .about-page, .product-page {
    padding: 3rem 0;
    background: var(--gray-50);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.policy-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.policy-intro h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.update-date {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.important-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-red);
    margin: 2rem 0;
}

.important-notice h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.policy-section h4 {
    color: var(--gray-800);
    margin: 1.5rem 0 1rem 0;
}

.policy-section ul, .policy-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

/* Special Tables */
.retention-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.retention-table th,
.retention-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.retention-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-800);
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.measure-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.measure-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.right-item h4 {
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.rights-contact {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    text-align: center;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.cookie-type h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-gold);
}

.step h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.contact-item.urgent {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-color: var(--primary-red);
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-item.urgent h4 {
    color: var(--primary-red);
}

.service-hours, .response-time {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Policy Footer */
.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.policy-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.back-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-red);
}

/* About Page Specific Styles */
.about-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
}

.hero-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-700);
    border-left: 4px solid var(--primary-gold);
    padding-left: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.hero-quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-red);
}

/* Founder Section */
.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.founder-image .image-placeholder.ceo {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    height: 300px;
}

/* Timeline */
.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-gold);
}

.timeline-year {
    position: absolute;
    left: -6rem;
    top: 0;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.team-member h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bio {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Product Page Specific Styles */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.book-3d {
    perspective: 1000px;
}

.book-cover-front {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.6s ease;
}

.book-cover-front:hover {
    transform: rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.cover-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-align: center;
}

.cover-content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.author {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.edition-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(15deg);
}

/* Book Specs */
.book-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.spec-label {
    font-weight: 600;
    color: var(--gray-700);
}

.spec-value {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Chapter Accordion */
.chapters-accordion {
    margin-top: 2rem;
}

.chapter-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.chapter-header {
    background: var(--gray-100);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.chapter-header:hover {
    background: var(--gray-200);
}

.chapter-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.chapter-pages {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.chapter-content {
    padding: 2rem;
    background: white;
}

.chapter-highlights h4 {
    color: var(--primary-red);
    margin: 1.5rem 0 1rem 0;
}

.case-study {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.tools-list p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.emotional-content {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 1rem 0;
}

.emotional-content blockquote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.emotional-content cite {
    font-weight: 600;
    color: var(--primary-green);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0;
    color: var(--primary-blue);
}

.reviewer-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Endorsements */
.endorsements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.endorsement-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.endorsement-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.endorser-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.endorsement-card blockquote {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.endorsement-card cite {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Action Section */
.action-section {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
}

.action-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.action-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.indicator {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator .number {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.final-message {
    max-width: 800px;
    margin: 2rem auto;
}

.final-message blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-gold);
    padding-left: 2rem;
}

.final-message .emphasis {
    font-size: 1.2rem;
    font-weight: 600;
}

.final-message .quote {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: var(--shadow-xl);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 0 10px rgba(213, 158, 46, 0.2);
    }
    100% {
        box-shadow: var(--shadow-xl);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .policy-content {
        padding: 2rem;
    }
    
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-year {
        position: static;
        margin-bottom: 0.5rem;
    }
    
    .story-timeline {
        padding-left: 0;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .timeline-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .floating-button {
        width: calc(100vw - 2rem);
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .book-cover {
        width: 240px;
        height: 320px;
        padding: 1.5rem;
    }
    
    .book-title {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}
