/* ========================================
   Raxqen Zynoq Website Styles
   ======================================== */

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

:root {
    /* Color Palette */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --highlight-color: #fbbf24;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Segoe UI", Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.7;
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

/* Header & Navigation */
.main-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo a {
    color: var(--text-dark);
    text-decoration: none;
}

.logo .highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-menu li a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    text-decoration: none;
}

.nav-menu li a.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
}

/* Buy Now Button in Nav */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1a365d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: var(--bg-light);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
    margin: 3px 0;
}
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    color: white !important;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-badge .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.feature-badge p {
    color: white !important;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border: 2px solid white;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    text-decoration: none;
}

.hero-trust {
    margin-top: var(--spacing-xl);
    opacity: 0.9;
    font-size: 0.875rem;
    color: white !important;
}

/* Page Hero - For all inner pages */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.page-hero h1 {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.page-hero p {
    color: white !important;
    opacity: 0.95;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero .lead {
    color: white !important;
    opacity: 0.95;
}

/* Page Content - Standard content sections for inner pages */
.page-content {
    padding: var(--spacing-xxl) 0;
}

.content-section {
    margin-bottom: var(--spacing-xxl);
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.content-section h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.content-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.content-section ul,
.content-section ol {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content-section li {
    margin-bottom: var(--spacing-xs);
}

/* Content Cards Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.content-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

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

.content-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--radius-lg);
}

.content-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.content-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-box p {
    margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.highlight-box h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

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

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.introduction {
    background: var(--bg-white);
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content .lead {
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.intro-feature {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.intro-feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
}

.intro-feature h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    display: block;
}

.intro-feature p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Grid Layouts */
.features-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Steps Section */
.how-it-works {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    counter-reset: step-counter;
}

.step {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.step > p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.step-detail {
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.9rem;
    color: var(--text-medium) !important;
}

.technology-note {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    text-align: center;
}

.technology-note h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.technology-note p {
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-md);
    display: inline-block;
}

/* Feature Detail Sections - For Features Page */
.features-detailed {
    background: var(--bg-white);
}

.feature-detail {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-detail:hover {
    box-shadow: var(--shadow-lg);
}

.feature-detail:last-child {
    margin-bottom: 0;
}

.feature-detail h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature-detail .lead {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.feature-detail h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.feature-detail p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.feature-detail ul,
.feature-detail ol {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.feature-detail li {
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-xs);
}

.feature-detail li strong {
    color: var(--text-dark);
}

/* Specs Table */
.specs-table {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.specs-table h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.specs-table h4:first-child {
    margin-top: 0;
}

.specs-table ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.specs-table li {
    padding: var(--spacing-sm);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-light);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li::after {
    content: "›";
    margin-left: var(--spacing-sm);
    color: var(--text-light);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--text-medium);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-dark);
    font-weight: 500;
}

/* Technology Page Styles */
.technology-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.technology-hero .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.technology-hero .stat-number {
    color: white !important;
    font-size: 2rem;
}

.technology-hero .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.85rem;
}

.page-hero .page-title {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.page-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero .highlight {
    color: var(--highlight-color) !important;
}

/* Technology Detail Grid */
.technology-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.tech-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.tech-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--radius-lg);
}

.tech-detail-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.tech-detail-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.tech-detail-card ul {
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: var(--spacing-lg);
}

.tech-detail-card li {
    margin-bottom: var(--spacing-sm);
}

.tech-detail-card li strong {
    color: var(--text-dark);
}

/* Overview Content */
.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
}

.overview-text h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.overview-text h3:first-child {
    margin-top: 0;
}

.overview-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.overview-text strong {
    color: var(--text-dark);
}

.overview-image {
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Frequency Visualization */
.frequency-visualization {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.frequency-visualization h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.frequency-chart {
    max-width: 600px;
    margin: 0 auto;
}

.frequency-bar {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.freq-label {
    font-weight: 600;
    color: var(--text-dark);
}

.freq-visual {
    height: 24px;
    background: var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.freq-visual .penetration {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
}

.freq-description {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Placeholder image styling */
.placeholder-image.large {
    padding: var(--spacing-xxl) var(--spacing-xl);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-caption {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* Health Metrics Page Styles */
.metrics-detailed {
    background: var(--bg-white);
}

.metric-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric-card:hover {
    box-shadow: var(--shadow-lg);
}

.metric-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.metric-header h3 {
    color: white !important;
    margin: 0;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.metric-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.metric-content {
    padding: var(--spacing-xl);
}

.metric-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.metric-content h4:first-child {
    margin-top: 0;
}

.metric-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.metric-content ul,
.metric-content ol {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.metric-content li {
    margin-bottom: var(--spacing-xs);
}

.metric-content li strong {
    color: var(--text-dark);
}

/* App Page Styles */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.app-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

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

.app-feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
}

.app-feature-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.app-feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Reviews Page Styles */
.reviews-overview {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.rating-summary {
    text-align: center;
    padding-right: var(--spacing-xl);
    border-right: 1px solid var(--border-color);
}

.rating-big {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: var(--spacing-sm) 0;
}

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

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.rating-bar-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.rating-bar-track {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 4px;
}

.rating-bar-percent {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: right;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

.review-verified {
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-stars {
    color: var(--accent-color);
}

.review-text {
    color: var(--text-medium);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}

/* FAQ Page Styles */
.faq-section {
    margin-bottom: var(--spacing-xxl);
}

.faq-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    font-family: var(--font-primary);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    color: var(--text-medium);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: var(--spacing-sm);
}

.faq-answer ul {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

/* App Page Additional Styles */
.app-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.app-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.app-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.app-intro p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.screenshot-item {
    aspect-ratio: 9/16;
    max-height: 400px;
}

.screenshot-item .placeholder-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

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

.compat-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.compat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.compat-item h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.compat-item p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

.app-download-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.app-download-cta h2 {
    color: white !important;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.app-download-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.15rem;
    margin-bottom: var(--spacing-xl);
}

.app-badges-large {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.app-badge-large {
    background: white;
    color: var(--text-dark);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.app-badge-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

.app-badge-large span {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.app-badge-large strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Coming Soon Styles */
.app-badge.coming-soon,
.app-badge-large.coming-soon {
    opacity: 0.85;
    cursor: default;
    pointer-events: none;
}

.app-badge.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.coming-soon-notice {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    text-align: center;
    border: 2px dashed var(--border-color);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.coming-soon-notice h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.coming-soon-notice p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reviews Page - Rating Overview */
.reviews-summary {
    background: var(--bg-light);
}

.rating-overview {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.overall-rating {
    text-align: center;
    padding-right: var(--spacing-xl);
    border-right: 1px solid var(--border-color);
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.overall-rating .stars {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: var(--spacing-sm) 0;
}

.overall-rating p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.rating-bar .bar {
    height: 10px;
    background: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 5px;
}

/* Reviews Filter */
.reviews-filter {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.review-filter-select {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
}

.review-filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

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

.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.review-card .stars {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.verified-badge {
    background: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.review-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.review-card > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.review-footer strong {
    color: var(--text-dark);
}

.review-date {
    color: var(--text-light);
}

/* FAQ Page - Category Tabs */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.faq-tab {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.faq-tab:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.faq-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Tables */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: var(--spacing-xl) 0;
}

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

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table .highlight-column {
    background: rgba(37, 99, 235, 0.1);
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.rating {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

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

.cta-section p {
    color: white;
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
    color: white;
}

.cta-features span {
    font-weight: 600;
}

.btn-cta-large {
    background: white;
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-xxl);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: var(--spacing-md);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    opacity: 0.9;
}

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

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Placeholder Images */
.placeholder-image {
    background: var(--bg-gray);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    text-align: center;
    color: var(--text-light);
    font-size: 2rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md) var(--spacing-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: var(--spacing-sm);
    }

    .nav-menu li a {
        display: block;
        padding: var(--spacing-sm) 0;
        font-size: 1rem;
        border-radius: 0;
    }

    .nav-menu li a:hover {
        background: transparent;
        color: var(--primary-color);
    }

    .nav-menu li a.btn-primary {
        display: inline-block;
        text-align: center;
        margin-top: var(--spacing-xs);
        padding: 0.75rem 2rem !important;
    }

    .hamburger {
        display: flex;
    }

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

    .section-title {
        font-size: 2rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

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

.hero .highlight {
    color: var(--highlight-color);
}

/* ========================================
   BUY NOW PAGE STYLES
   ======================================== */

.buy-now-section {
    padding: var(--spacing-xxl) 0;
}

.product-purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.product-image-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    text-align: center;
    position: sticky;
    top: 100px;
}

.product-image-section .product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-md);
}

.product-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.product-purchase-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.product-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.price-section {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: var(--spacing-sm);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.savings {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: var(--spacing-sm);
}

.stock-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    width: fit-content;
}

.stock-status .dot {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.purchase-options {
    margin-bottom: var(--spacing-lg);
}

.quantity-selector,
.color-selector {
    margin-bottom: var(--spacing-md);
}

.quantity-selector label,
.color-selector label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.quantity-selector select,
.color-selector select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector select:focus,
.color-selector select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.purchase-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-add-cart:hover {
    background: var(--bg-gray);
    border-color: var(--text-medium);
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

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

.purchase-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.purchase-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--text-medium);
}

.purchase-benefits li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
}

.payment-methods {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.payment-methods h4 {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.payment-icons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons span {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.secure-checkout {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
}

.secure-checkout p {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin: 0;
}

.secure-checkout strong {
    color: var(--text-dark);
}

.product-features-summary {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.product-features-summary h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.features-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-summary-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-summary-item h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-summary-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.shipping-info-section,
.guarantee-section {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.shipping-info-section h3,
.guarantee-section h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.shipping-info-section h3::before {
    content: "📦";
}

.guarantee-section h3::before {
    content: "🛡️";
}

.shipping-info-section ul,
.guarantee-section ul {
    list-style: none;
    padding: 0;
}

.shipping-info-section li {
    padding: var(--spacing-xs) 0;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.shipping-info-section li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.contact-info {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
}

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

.contact-info li {
    padding: var(--spacing-xs) 0;
    color: var(--text-medium);
    position: relative;
    padding-left: var(--spacing-md);
}

.contact-info li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-cta {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.125rem;
    margin-top: var(--spacing-sm);
}

.faq-preview {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(118, 75, 162, 0.05));
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-preview h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.faq-preview p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.faq-preview ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xs);
    list-style: none;
    padding: 0;
}

.faq-preview li {
    color: var(--text-medium);
    padding: var(--spacing-xs) 0;
}

.faq-preview li::before {
    content: "✓ ";
    color: var(--secondary-color);
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.blog-post {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-post h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-post h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-post h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.post-meta::before {
    content: "📅";
}

.blog-post p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: var(--spacing-sm);
    text-decoration: none;
}

/* ========================================
   CAREERS PAGE STYLES
   ======================================== */

.content-section h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-color);
}

.content-section li strong {
    color: var(--text-dark);
}

/* Job listings enhancement */
.content-section h4 + ul {
    background: var(--bg-light);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    list-style: none;
}

.content-section h4 + ul li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.content-section h4 + ul li:last-child {
    border-bottom: none;
}

/* ========================================
   PRESS PAGE STYLES
   ======================================== */

.content-section h3 + ul li {
    position: relative;
    padding-left: var(--spacing-md);
}

/* Awards styling */
.content-section ul li strong:first-child {
    color: var(--primary-color);
}

/* ========================================
   POLICY PAGES (Privacy, Terms, Warranty, Returns, Shipping)
   ======================================== */

.content-section ol {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.content-section ol li {
    counter-increment: step;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px dashed var(--border-color);
}

.content-section ol li:last-child {
    border-bottom: none;
}

.content-section ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced list styling for policy pages */
.content-section > ul {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.content-section > ul li {
    padding: var(--spacing-sm) 0;
    position: relative;
}

.content-section > ul li::marker {
    color: var(--primary-color);
}

/* Section dividers */
.content-section h3 {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.content-section h3:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* Highlight important policy info */
.content-section p strong {
    color: var(--text-dark);
    background: linear-gradient(to bottom, transparent 60%, rgba(251, 191, 36, 0.3) 60%);
    padding: 0 2px;
}

/* Last updated styling */
.content-section > p:last-of-type {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 800px;
}

/* ========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ======================================== */

@media (max-width: 992px) {
    .product-purchase-grid {
        grid-template-columns: 1fr;
    }

    .product-image-section {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .purchase-buttons {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .payment-icons {
        justify-content: center;
    }

    .content-section h4 + ul li {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .cta-section,
    .btn-cta,
    .btn-secondary {
        display: none;
    }
}
