:root {
    --primary: #7a288a;
    --accent: #ffc107;
    --bg-dark: #2f2f2f;
    --bg-darker: #1a1a1a;
    --bg-card: #3f3f3f;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #5f5f5f;
    --gradient-thermal: linear-gradient(135deg, #3b82f6 0%, #22d3ee 25%, #22c55e 50%, #eab308 75%, #ef4444 100%);
    --gradient-hot: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
    --gradient-cold: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
    --shadow-lg: 0 23px 52px -15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 29px rgba(239, 68, 68, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo-img {
    max-width: 50px;
    height: auto;
}

img:not(.logo-img):not(.logo) {
    max-width: 100%;
    height: auto;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 31px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-thermal {
    background: var(--gradient-hot);
    color: #fff;
    box-shadow: 0 4px 13px rgba(239, 68, 68, 0.4);
}

.btn-thermal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(239, 68, 68, 0.5);
    color: #fff;
}

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

.btn-outline-light:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(23px);
    padding: 17px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    color: var(--text-primary) !important;
    font-size: 1.25rem;
}

.site-name {
    color: var(--text-primary);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 12px 17px;
    border-radius: 6px;
}

.dropdown-item:hover {
    background: var(--bg-dark);
    color: var(--accent);
}

.hero-thermal {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 82px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.thermal-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 51px 53px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.thermal-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 53px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-specs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.spec-item {
    text-align: center;
}

.spec-value {
    display: block;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.spec-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.hero-thermal-display {
    position: relative;
}

.thermal-camera-showcase {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.camera-image {
    width: 100%;
    height: auto;
    border-radius: 17px;
}

.thermal-sample-overlay {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 60%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--primary);
}

.thermal-sample {
    width: 100%;
    height: auto;
    filter: hue-rotate(180deg) saturate(2);
}

.temp-readings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.temp-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
}

.temp-point.hot {
    top: 20%;
    left: 30%;
}

.temp-point.cold {
    bottom: 30%;
    right: 20%;
}

.temp-point.mid {
    top: 50%;
    left: 60%;
}

.temp-indicator {
    width: 11px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.temp-point.hot .temp-indicator {
    background: var(--primary);
    box-shadow: 0 0 13px var(--primary);
}

.temp-point.cold .temp-indicator {
    background: #3b82f6;
    box-shadow: 0 0 11px #3b82f6;
}

.temp-point.mid .temp-indicator {
    background: #22c55e;
    box-shadow: 0 0 7px #22c55e;
}

.temp-value {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
}

.thermal-scale {
    margin-top: 21px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 8px;
}

.scale-bar {
    height: 8px;
    border-radius: 4px;
    background: var(--gradient-thermal);
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.section-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 53px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.features-section {
    padding: 79px 0;
    background: var(--bg-darker);
}

.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-thermal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    pointer-events: none;
}

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

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

.feature-icon {
    position: relative;
    width: 63px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.feature-temp-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.625rem;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.spec-tag {
    display: inline-block;
    padding: 4px 15px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.products-section {
    padding: 78px 0;
}

.product-card {
    background: var(--bg-card);
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.product-thermal-sample {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.thermal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.temp-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-temp {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.temp-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stock-badge {
    position: absolute;
    top: 13px;
    right: 14px;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.stock-badge.limited {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.stock-badge.pre-order {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.product-info {
    padding: 22px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-specs-grid {
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.spec-val {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.testimonials-section {
    padding: 82px 0;
    background: var(--bg-darker);
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
}

.testimonial-thermal-header {
    padding: 9px 20px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
}

.thermal-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.875rem;
    color: var(--primary);
}

.testimonial-content {
    padding: 24px;
}

.quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 23px 22px;
    border-top: 1px solid var(--border-color);
}

.author-image {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.rating {
    color: #fbbf24;
    font-size: 0.875rem;
}

.team-section {
    padding: 77px 0;
}

.team-card {
    background: var(--bg-card);
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.thermal-scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-card:hover .thermal-scan-overlay {
    opacity: 1;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 7px var(--primary);
    animation: scan 2s linear infinite;
    opacity: 0;
}

.team-card:hover .scan-line {
    opacity: 1;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.temp-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .temp-badge {
    opacity: 1;
}

.team-info {
    padding: 23px;
    text-align: center;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 11px;
}

.team-social a {
    width: 37px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 11px;
    padding: 34px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-thermal-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 67px;
    margin-bottom: 1rem;
}

.stat-thermal-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.thermal-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.stat-number {
    display: block;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.stat-temp {
    position: absolute;
    top: 16px;
    right: 14px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.75rem;
    color: var(--primary);
}

.faq-section {
    padding: 79px 0;
}

.accordion-thermal .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 11px;
    overflow: hidden;
}

.accordion-thermal .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    padding: 22px 26px;
    box-shadow: none;
}

.accordion-thermal .accordion-button:not(.collapsed) {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary);
}

.accordion-thermal .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-thermal .accordion-button i {
    color: var(--primary);
}

.accordion-thermal .accordion-body {
    padding: 20px 27px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.cta-section {
    padding: 97px 0;
    position: relative;
    overflow: hidden;
}

.cta-thermal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-thermal-display {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.thermal-frame {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 17px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
}

.thermal-image-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.cta-thermal-image {
    width: 100%;
    height: auto;
}

.thermal-heatmap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(239, 68, 68, 0.3) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.temp-marker {
    position: absolute;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.75rem;
    font-weight: 600;
}

.temp-marker.hot-spot {
    top: 20%;
    left: 30%;
    background: var(--primary);
    color: #fff;
}

.temp-marker.cold-spot {
    bottom: 30%;
    right: 20%;
    background: #3b82f6;
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 39px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.footer-main {
    background: var(--bg-darker);
    padding: 59px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 13px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 33px 0;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.temp-badge.footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 19px;
    background: var(--bg-card);
    border-radius: 8px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 0.875rem;
    color: var(--primary);
}

.page-header {
    padding: 140px 0 59px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    color: var(--accent);
}

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

.about-content {
    padding: 77px 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.about-thermal-overlay {
    position: absolute;
    bottom: 23px;
    left: 21px;
    right: 23px;
    padding: 21px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.thermal-reading-display {
    display: flex;
    justify-content: space-around;
}

.reading-item {
    text-align: center;
}

.reading-value {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.reading-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-section {
    padding: 83px 0;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 13px;
    padding: 34px;
    height: 100%;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 66px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 9px;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 42px;
    border: 1px solid var(--border-color);
}

.form-control,
.form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 11px 18px;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-dark);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: var(--text-primary);
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
}

.article-header {
    padding: 140px 0 57px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.article-body {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.article-body h2 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.pricing-section {
    padding: 79px 0;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 43px 35px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 21px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 49px;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent);
}

.case-study-card {
    background: var(--bg-card);
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.case-study-image {
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-study-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 23px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.case-study-stats {
    display: flex;
    gap: 21px;
}

.case-stat {
    text-align: center;
}

.case-stat-value {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.case-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.case-study-content {
    padding: 27px;
}

.legal-content {
    padding: 77px 0;
}

.legal-content h2 {
    color: var(--text-primary);
    margin-top: 2rem;
    font-size: 1.5rem;
}

.legal-content p {
    color: var(--text-secondary);
}

.legal-content ul {
    color: var(--text-secondary);
    padding-left: 1.5rem;
}

@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-thermal-display {
        margin-top: 3rem;
    }

    .thermal-sample-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin-top: 1rem;
    }

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

    .page-title {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero-thermal {
        padding: 103px 0 59px;
    }

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

    .hero-specs {
        gap: 18px;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 7px;
    }

    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }

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

    .cta-trust-badges {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .contact-form {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 17px;
    }

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

    .spec-item {
        flex: 1 1 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .spec-value {
        font-size: 1.25rem;
    }

    .navbar-brand .site-name {
        display: none;
    }
}
