/* WESP TMC Reports - Comprehensive Stylesheet */

:root {
    --primary-color: #2E3191;
    --primary-light: rgba(46, 49, 145, 0.07);
    --secondary-color: #FF6F16;
    --secondary-light: rgba(255, 111, 22, 0.09);
    --accent-color: #FF6F16;
    --text-color: #181c2d;
    --text-light: #5a6178;
    --background-light: #f4f7fb;
    --background-white: #ffffff;
    --background-gradient: linear-gradient(120deg, #f8faff 0%, #e9eefd 100%);
    --background-gradient-alt: linear-gradient(135deg, #f8faff 0%, #e9eefd 30%, #f1f5ff 70%, #e9eefd 100%);
    --spacing-unit: 16px;
    --spacing-unit-lg: 18px;
    --border-radius: 25px;
    --border-radius-lg: 28px;
    --transition-speed: 0.4s;
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(220, 225, 235, 0.5);
    --glass-border-strong: rgba(220, 225, 235, 0.6);
    --glass-shadow: 0 8px 32px -8px rgba(46, 49, 145, 0.10);
    --glass-shadow-hover: 0 16px 48px -12px rgba(46, 49, 145, 0.18);
    --card-shadow: 0 8px 32px -8px rgba(46, 49, 145, 0.10);
    --card-hover-shadow: 0 12px 40px -10px rgba(46, 49, 145, 0.18);
    --card-translate: translateY(-7px) scale(1.01);
    --gradient-primary: linear-gradient(130deg, var(--primary-color), #4a50b8);
    --gradient-secondary: linear-gradient(130deg, var(--secondary-color), #ff8850);
    --gradient-light: linear-gradient(145deg, var(--background-light) 0%, #edf0ff 100%);
    --gradient-glass: linear-gradient(130deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.85));
    --backdrop-blur: blur(10px);
}

/* CSS Reset and Base Styles */
html {
    scroll-behavior: smooth;
}
html,
body {
    font-family: 'DM Sans', Arial, sans-serif;
    background: var(--background-gradient);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(46, 49, 145, 0.04);
}

/* Layout */
.container-internal {
    max-width: 1000px;
    margin: 45px auto 0 auto;
    padding: 0 24px;
}

/* Homepage specific spacing */
body:not(.internal-page) .section:first-of-type .container-internal {
    margin-top: 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--secondary-color);
    transform: translateX(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 40vh;
    padding: calc(var(--spacing-unit) * 0) 0 calc(var(--spacing-unit) * 2.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Homepage hero with navigation bar spacing */
body:not(.internal-page) .hero {
    padding-top: calc(var(--spacing-unit) * 5);
}

.hero-bg {
    position: absolute;
    inset: -50px;
    z-index: 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 111, 22, 0.08) 0%, transparent 40%);
    opacity: 0.6;
    filter: blur(100px);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(1deg); }
    66% { transform: translate(-10px, 10px) rotate(-1deg); }
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.floating-icon:nth-child(3) {
    top: 40%;
    left: 85%;
    animation-delay: 6s;
}

.floating-icon:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.2; }
}

.hero-content {
    position: relative;
    z-index: 3;
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius-lg);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--card-shadow), 0 0 60px rgba(46, 49, 145, 0.1);
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    animation: heroFadeIn 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    z-index: 1;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    height: 52px;
    margin-bottom: -8px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 8px rgba(46, 49, 145, 0.15));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 2px 8px rgba(46, 49, 145, 0.15)); }
    50% { filter: drop-shadow(0 4px 16px rgba(46, 49, 145, 0.25)); }
}

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.8px;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 1);
    animation: subtitleSlide 1s ease-out 0.3s both;
}

@keyframes subtitleSlide {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto calc(var(--spacing-unit) * 2);
}

/* Stats and Statistics */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: calc(var(--spacing-unit) * 2) 0;
    flex-wrap: wrap;
    animation: statsSlideUp 1s ease-out 0.6s both;
}

@keyframes statsSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stat-item {
    background: var(--primary-light);
    padding: 16px 24px;
    border-radius: 24px;
    border: 1px solid rgba(43, 48, 138, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 49, 145, 0.15);
    border-color: rgba(46, 49, 145, 0.25);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: calc(var(--spacing-unit) * 2) 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-light), rgba(46, 49, 145, 0.04));
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1.5px solid rgba(46, 49, 145, 0.18);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46, 49, 145, 0.15);
}

.stat-card .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Intro Text */
.intro-text {
    font-size: 18px;
    color: var(--text-light);
    margin: calc(var(--spacing-unit) * 2) 0;
    line-height: 1.7;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    animation: introFadeIn 1s ease-out 0.9s both;
    font-weight: 400;
}

@keyframes introFadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
    padding: calc(var(--spacing-unit) * 0.5) 0;
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.25;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: block;
    margin-top: calc(var(--spacing-unit) * 1.5);
}

.main-content {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: calc(var(--spacing-unit) * 2);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.main-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
}

.main-content h2 {
    font-size: 22px;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.main-content h3 {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 0.8);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: calc(var(--spacing-unit) * 1.5);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    color: var(--primary-color);
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: calc(var(--spacing-unit) * 2);
    align-items: stretch;
}

.report-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    padding: calc(var(--spacing-unit) * 2);
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.report-card:hover {
    transform: var(--card-translate);
    box-shadow: var(--card-hover-shadow);
    text-decoration: none;
}

.report-image {
    width: 100%;
    min-height: 180px;
    max-height: 250px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 49, 145, 0.15);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    transition: transform var(--transition-speed) ease;
    background: #ffffff;
    padding: 8px;
}

.report-image:hover img {
    transform: scale(1.02);
}

/* Fallback for broken images */
.report-image img[alt]::after {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.report-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    text-align: center;
    opacity: 0.7;
}

.report-image-placeholder svg {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.report-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.report-icon svg {
    width: 24px;
    height: 24px;
}

.report-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.report-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    flex-shrink: 0;
}

/* Report Lists */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(46, 49, 145, 0.04);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(46, 49, 145, 0.12);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
}

.report-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
}

.report-item:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 6px 20px rgba(46, 49, 145, 0.15);
}

.report-item .report-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.report-item .report-icon svg {
    width: 20px;
    height: 20px;
}

.report-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--primary-color);
}

.report-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Features Lists */
.features-list {
    list-style: none;
    padding: 0;
    margin: calc(var(--spacing-unit) * 1.5) 0;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.features-list li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23FF6F16"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    top: 2px;
}

.report-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 140px;
}

.report-features li {
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

.report-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 14px;
}

/* Trade Channels */
.trade-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: calc(var(--spacing-unit) * 1.5) 0;
}

.trade-channel {
    background: var(--primary-light);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(46, 49, 145, 0.15);
    text-align: center;
}

.trade-channel h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.trade-channel p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Manufacturer Brands */
.manufacturer-brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: calc(var(--spacing-unit) * 1.5) 0;
}

.manufacturer-brand {
    background: var(--primary-light);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(46, 49, 145, 0.15);
    text-align: center;
}

.manufacturer-brand h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.manufacturer-brand p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, var(--secondary-light), rgba(255, 111, 22, 0.06));
    border: 1.5px solid rgba(255, 111, 22, 0.25);
    border-radius: 25px;
    padding: calc(var(--spacing-unit) * 1.5);
    margin: calc(var(--spacing-unit) * 1) 0;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
}

/* TMC Highlight Box with extra top spacing */
.highlight-box.tmc-highlight {
    margin-top: calc(var(--spacing-unit) * 2.5);
}

/* Reset margin for highlight-box inside the grid container */
.what-you-get-downloads-container .highlight-box {
    margin: 0;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 22, 0.6), transparent);
    z-index: 1;
}

.highlight-box h3 {
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    position: relative;
    z-index: 2;
}

/* Product Summary */
.product-summary {
    background: linear-gradient(135deg, var(--secondary-light), rgba(255, 111, 22, 0.06));
    border: 1.5px solid rgba(255, 111, 22, 0.25);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 1.5);
    margin: 0 0 40px 0;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
}

.product-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 22, 0.6), transparent);
    z-index: 1;
}

.product-summary h3 {
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    position: relative;
    z-index: 2;
    font-size: 18px;
}

.product-summary p {
    font-size: 15px;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

/* TMC Features */
.tmc-features {
    margin-top: 20px;
}

.tmc-description {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.tmc-cta {
    margin-top: 24px;
}

.tmc-btn, .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(255, 111, 22, 0.25);
    position: relative;
    overflow: hidden;
}

.tmc-btn::before, .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    z-index: 1;
}

.tmc-btn:hover, .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 111, 22, 0.4);
    text-decoration: none;
    color: white;
    background: linear-gradient(130deg, #ff8850, var(--secondary-color));
}

.tmc-btn svg {
    transition: transform var(--transition-speed) ease;
}

.tmc-btn:hover svg {
    transform: translateX(2px);
}

/* Pricing */
.pricing-section {
    background: var(--background-gradient);
    padding: calc(var(--spacing-unit) * 2.5) 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius-lg);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    padding: calc(var(--spacing-unit) * 1.5);
    text-align: center;
    transition: all var(--transition-speed) ease;
    position: relative;
}

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

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.pricing-card .per-report {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.contact-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card .price {
        font-size: 28px;
    }
}

/* Benefits Section */
.benefits-section {
    background: var(--background-light);
    padding: calc(var(--spacing-unit) * 3) 0;
}

/* Product Page Pricing Styles */
.pricing-info {
    background: linear-gradient(135deg, rgba(46, 49, 145, 0.95), rgba(35, 123, 198, 0.95));
    color: white;
    padding: calc(var(--spacing-unit) * 1);
    border-radius: var(--border-radius);
    margin-top: calc(var(--spacing-unit) * 0.8);
    margin-bottom: calc(var(--spacing-unit) * 1);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--glass-shadow);
}

.pricing-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.pricing-info h3 {
    color: white;
    margin-bottom: calc(var(--spacing-unit) * 1);
    text-align: center;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    -webkit-backdrop-filter: var(--backdrop-blur-light);
    backdrop-filter: var(--backdrop-blur-light);
}

.pricing-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
}

.pricing-tier:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.pricing-tier h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-tier .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.pricing-tier .per-report {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.volume-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 14px;
}

.volume-note a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.volume-note a:hover {
    color: rgba(255, 255, 255, 1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: calc(var(--spacing-unit) * 2);
}

.benefit-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    padding: calc(var(--spacing-unit) * 2);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

/* CTA Sections */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: calc(var(--spacing-unit) * 1.2);
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 1);
}

.cta-section h3 {
    color: white;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.cta-section p {
    font-size: 15px;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: calc(var(--spacing-unit) * 1.5);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.cta-button {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 22, 0.3);
    text-decoration: none;
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--background-light);
    padding: calc(var(--spacing-unit) * 3) 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 16px rgba(255, 111, 22, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 22, 0.4);
    text-decoration: none;
    color: white;
}

/* Download Sections */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 111, 22, 0.2);
    border-radius: 25px;
    padding: 16px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 22, 0.4), transparent);
}

.download-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 111, 22, 0.3);
    box-shadow: 0 4px 16px rgba(255, 111, 22, 0.1);
}

.download-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.download-icon svg {
    width: 20px;
    height: 20px;
}

.download-preview {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 111, 22, 0.2);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-speed) ease;
    background: #fff;
    display: block;
    margin: auto;
}

.download-item:hover .download-preview img {
    transform: scale(1.05);
}

.download-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--primary-color);
}

.download-content p {
    font-size: 14px;
    margin: 0 0 8px;
    line-height: 1.4;
    color: var(--text-light);
}

.sample-info {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 12px;
}

.sample-info em {
    font-style: italic;
}




.download-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}



/* Report Previews */
.report-preview {
    width: 100%;
    height: 200px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 49, 145, 0.15);
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--text-light);
    font-style: italic;
}

.report-preview-section {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.report-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.report-preview-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
}

.report-preview-section h3 {
    font-size: 22px;
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--primary-color);
    text-align: center;
}

.report-preview-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(46, 49, 145, 0.15);
    transition: transform var(--transition-speed) ease;
    box-shadow: 0 8px 32px rgba(46, 49, 145, 0.12);
    display: block;
    margin: 0 auto;
}

.report-preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(46, 49, 145, 0.2);
}

.report-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* PDF Preview */
.pdf-preview {
    background: rgba(46, 49, 145, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.pdf-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

/* Icons */
.heading-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-internal {
        padding: 0 20px;
    }
    
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .what-you-get-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .what-you-get-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .what-you-get-grid.three-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet-specific report image optimizations */
    .report-image {
        min-height: 170px;
        max-height: 220px;
        aspect-ratio: 16/9.5;
    }
}

@media (max-width: 900px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .what-you-get-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-you-get-downloads-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container-internal {
        padding: 0 16px;
        margin-top: 0;
    }

    .hero {
        min-height: 35vh;
        padding: calc(var(--spacing-unit) * 1.5) 0;
    }

    .hero-content {
        padding: calc(var(--spacing-unit) * 1.5);
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stats-row {
        gap: 16px;
    }

    .sidebar {
        gap: 20px;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trade-channels {
        grid-template-columns: 1fr;
    }

    .manufacturer-brands {
        grid-template-columns: 1fr;
    }

    /* Improved report image scaling on mobile */
    .report-image {
        min-height: 160px;
        max-height: 200px;
        aspect-ratio: 16/9;
    }

    .report-card {
        padding: calc(var(--spacing-unit) * 1.5);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container-internal {
        padding: 0 12px;
    }
    
    .hero-content {
        padding: calc(var(--spacing-unit) * 1.25);
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .feature-card {
        padding: 12px;
    }
    
    .main-content, .sidebar-card {
        padding: calc(var(--spacing-unit) * 1.25);
        margin-bottom: calc(var(--spacing-unit) * 2);
    }

    /* Small screen report image optimizations */
    .report-image {
        min-height: 140px;
        max-height: 180px;
        aspect-ratio: 4/3;
    }

    .report-card {
        padding: calc(var(--spacing-unit) * 1.25);
    }

    .report-card h3 {
        font-size: 18px;
    }

    .report-card p {
        font-size: 14px;
    }
}

/* What You Get and Downloads Side by Side */
.what-you-get-downloads-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin: calc(var(--spacing-unit) * 1.5) 0;
    align-items: start;
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary-light), rgba(255, 111, 22, 0.06));
    border: 1.5px solid rgba(255, 111, 22, 0.25);
    border-radius: 25px;
    padding: calc(var(--spacing-unit) * 1.5);
    margin: 0;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
}

.downloads-sidebar {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: calc(var(--spacing-unit) * 1.5);
    height: fit-content;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    align-self: start;
    margin: 0;
}

@media (max-width: 900px) {
    .what-you-get-downloads-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.downloads-sidebar {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: calc(var(--spacing-unit) * 1.5);
    height: fit-content;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    align-self: start;
}

.downloads-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
}

.downloads-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
}

.downloads-sidebar h3 {
    font-size: 18px;
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    color: var(--primary-color);
}

/* What You Get Grid */
.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

/* Three column variant for fact-based replacement rates */
.what-you-get-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.4);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 111, 22, 0.3);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    transition: all var(--transition-speed) ease;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 111, 22, 0.4);
    box-shadow: 0 4px 16px rgba(255, 111, 22, 0.15);
}

.feature-card h4 {
    margin: 0 0 8px;
    color: var(--secondary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card h4 svg {
    flex-shrink: 0;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
    }

    .what-you-get-grid.three-columns {
        grid-template-columns: 1fr;
    }
}
