/*
Theme Name: SmartSensors.ae Theme
Theme URI: https://smartsensors.ae/
Author: SmartSensors
Author URI: https://smartsensors.ae/
Description: Premium Custom WordPress Theme for SmartSensors.ae featuring Motorola HALO Smart Sensor safety solutions. Designed with high-tech elements and light palette.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartsensors
*/

/* Importing Tech and Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

/* Design Tokens */
:root {
  /* Color Palette A & B */
  --bg-primary: #F3F8F2;      /* Mint Cream - main light bg */
  --bg-secondary: #E0FBFC;    /* Light Cyan - alternating bg */
  --primary: #3581B8;         /* Steel Blue - headers, links, primary buttons */
  --primary-hover: #265D85;   /* Darker Steel Blue */
  --accent-warm: #FCB07E;     /* Sandy Brown - warnings/secondary highlights */
  --accent-alert: #EE6C4D;    /* Burnt Peach - critical alarms, notifications */
  --text-dark: #293241;       /* Jet Black - body text, titles */
  --text-light: #F3F8F2;      /* Light text on dark footer/cards */
  --border-color: rgba(53, 129, 184, 0.15);
  
  /* Fonts */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-tech: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Tech Grid Background Overlay Elements */
.tech-grid-bg {
  position: relative;
}

.tech-grid-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Abstract Subtle Dot Pattern for alternate sections */
.tech-dot-bg {
  position: relative;
}

.tech-dot-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(53, 129, 184, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Header / Navigation */
header {
  height: var(--header-height);
  background-color: rgba(243, 248, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent-alert);
  stroke-width: 2.5;
}

.logo-tech {
  font-family: var(--font-tech);
  color: var(--text-dark);
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  padding: 0.25rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--text-light) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-family: var(--font-tech);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--primary);
  transition: var(--transition-smooth);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--primary) !important;
  box-shadow: 0 4px 15px rgba(53, 129, 184, 0.25);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  font-weight: 700;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.section-tag {
  font-family: var(--font-mono);
  color: var(--accent-alert);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  margin: 0.75rem auto 0;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-mono);
  color: var(--accent-alert);
  background-color: rgba(238, 108, 77, 0.1);
  padding: 0.4rem 0.8rem;
  border-left: 3px solid var(--accent-alert);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(41, 50, 65, 0.85);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-tech);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 129, 184, 0.3);
}

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

.btn-secondary:hover {
  background-color: rgba(53, 129, 184, 0.05);
  transform: translateY(-2px);
}

.btn-warning {
  background-color: var(--accent-alert);
  color: var(--text-light);
  border: 1px solid var(--accent-alert);
}

.btn-warning:hover {
  background-color: #d65839;
  border-color: #d65839;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 108, 77, 0.3);
}

/* Feature/Fear Section */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(41, 50, 65, 0.08);
  border-color: var(--primary);
}

.card-icon {
  width: 48px;
  height: 48px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  margin-bottom: 1.5rem;
  background-color: rgba(53, 129, 184, 0.08);
  padding: 10px;
  border-radius: 8px;
}

.card-icon.alert {
  stroke: var(--accent-alert);
  background-color: rgba(238, 108, 77, 0.08);
}

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

.card p {
  color: rgba(41, 50, 65, 0.8);
  font-size: 0.95rem;
}

/* Privacy Guarantee split section */
.split-section {
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(41, 50, 65, 0.06);
}

.split-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.split-content p {
  margin-bottom: 1.25rem;
  color: rgba(41, 50, 65, 0.85);
}

.privacy-badge-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.privacy-badge {
  flex: 1;
  background-color: rgba(53, 129, 184, 0.05);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-badge-icon {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.privacy-badge-text {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Fear Narrative / Stats Panel */
.stats-banner {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-banner h2 {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

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

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-alert);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-headings);
  font-size: 1rem;
  color: rgba(243, 248, 242, 0.75);
}

/* Sensor dashboard simulator */
.dashboard-simulator {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #2ec4b6;
}

.dash-status.alerting {
  color: var(--accent-alert);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: currentColor;
  animation: pulse 1.5s infinite;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dash-metric {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-info h4 {
  font-size: 0.95rem;
  color: rgba(41, 50, 65, 0.7);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.metric-value.alert-val {
  color: var(--accent-alert);
}

/* Call to Action Banner */
.cta-banner {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  text-align: center;
  position: relative;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem;
  background-color: var(--bg-primary);
  border: 2px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(53, 129, 184, 0.1);
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(41, 50, 65, 0.8);
}

/* Blog layouts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.blog-post {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(41, 50, 65, 0.08);
  border-color: var(--primary);
}

.blog-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.blog-post-content {
  padding: 2rem;
}

.blog-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-alert);
  margin-bottom: 0.75rem;
  display: block;
}

.blog-post h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-post p {
  color: rgba(41, 50, 65, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.blog-link {
  font-family: var(--font-tech);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  color: var(--primary-hover);
  gap: 0.5rem;
}

/* Contact Page Form */
.contact-section {
  padding: 150px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(53, 129, 184, 0.15);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  background-color: rgba(53, 129, 184, 0.08);
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-details p,
.info-details a {
  color: rgba(41, 50, 65, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
}

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

/* Footer layout */
footer {
  background-color: var(--text-dark);
  color: rgba(243, 248, 242, 0.6);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* --- High-Converting Landing Page & Vape Detector Styles --- */

/* Card Glows and Glassmorphism (ClickFunnel Premium Layouts) */
.card-glow-primary {
  box-shadow: 0 12px 35px rgba(53, 129, 184, 0.08), 0 1px 3px rgba(53, 129, 184, 0.03);
  border: 1px solid rgba(53, 129, 184, 0.2) !important;
  transition: var(--transition-smooth);
}

.card-glow-primary:hover {
  box-shadow: 0 20px 45px rgba(53, 129, 184, 0.15) !important;
  border-color: var(--primary) !important;
  transform: translateY(-5px);
}

.card-glow-warning {
  box-shadow: 0 12px 35px rgba(252, 176, 126, 0.08), 0 1px 3px rgba(252, 176, 126, 0.03);
  border: 1px solid rgba(252, 176, 126, 0.2) !important;
  transition: var(--transition-smooth);
}

.card-glow-warning:hover {
  box-shadow: 0 20px 45px rgba(252, 176, 126, 0.15) !important;
  border-color: var(--accent-warm) !important;
  transform: translateY(-5px);
}

.card-glow-alert {
  box-shadow: 0 12px 35px rgba(238, 108, 77, 0.08), 0 1px 3px rgba(238, 108, 77, 0.03);
  border: 1px solid rgba(238, 108, 77, 0.2) !important;
  transition: var(--transition-smooth);
}

.card-glow-alert:hover {
  box-shadow: 0 20px 45px rgba(238, 108, 77, 0.15) !important;
  border-color: var(--accent-alert) !important;
  transform: translateY(-5px);
}

.clickfunnel-hero-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(53, 129, 184, 0.18) !important;
  box-shadow: 0 15px 40px rgba(41, 50, 65, 0.05);
  transition: var(--transition-smooth);
}

.clickfunnel-hero-card:hover {
  box-shadow: 0 25px 50px rgba(53, 129, 184, 0.12) !important;
  border-color: var(--primary) !important;
  transform: translateY(-3px);
}

/* Comparison Table Section */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 3rem auto;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(41, 50, 65, 0.04);
  max-width: 900px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(53, 129, 184, 0.1);
  font-family: var(--font-headings);
  font-size: 0.95rem;
}

.comparison-table th {
  background-color: var(--bg-secondary);
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-table th:first-child {
  border-top-left-radius: 12px;
}

.comparison-table th:last-child {
  border-top-right-radius: 12px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
}

.comparison-table .highlight-col {
  background-color: rgba(53, 129, 184, 0.05);
  font-weight: 600;
}

.check-icon {
  color: #2ec4b6;
  font-weight: bold;
  font-size: 1.25rem;
}

.cross-icon {
  color: var(--accent-alert);
  font-weight: bold;
  font-size: 1.25rem;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(53, 129, 184, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--bg-secondary);
}

.faq-answer p {
  padding: 1.25rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(41, 50, 65, 0.85);
  line-height: 1.6;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* expanded to allow dynamic content */
}

/* Visual Process Flow */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.process-step {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(53, 129, 184, 0.08);
  border-color: var(--primary);
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
}

.process-step:nth-child(even) .step-num {
  background-color: var(--accent-alert);
}

.step-title {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(41, 50, 65, 0.75);
}

/* Vape landing page elements */
.vape-hero {
  background: linear-gradient(135deg, #293241 0%, #1d2430 100%);
  color: var(--text-light);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.vape-hero h1 {
  color: #FFFFFF;
  font-size: 3.25rem;
  line-height: 1.2;
}

.vape-hero p {
  color: rgba(243, 248, 242, 0.85);
  font-size: 1.15rem;
}

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

.accent-box {
  border-left: 4px solid var(--accent-alert);
  background-color: rgba(238, 108, 77, 0.08);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.accent-box p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.benefit-badge {
  background-color: rgba(53, 129, 184, 0.15);
  color: var(--primary);
  border: 1px solid rgba(53, 129, 184, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dark-bg .benefit-badge {
  background-color: rgba(252, 176, 126, 0.15);
  color: var(--accent-warm);
  border: 1px solid rgba(252, 176, 126, 0.2);
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.challenge-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.challenge-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent-alert);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.challenge-item p {
  color: rgba(41, 50, 65, 0.8);
  font-size: 0.95rem;
}

.text-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.text-bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.text-bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ec4b6;
  font-weight: bold;
}

/* Blog Slider Layout */
.blog-slider-section {
  padding: 80px 0;
  overflow: hidden;
}

.slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.slider-section-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.slider-controls {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.25);
}

.slider-control-btn {
  background-color: #00bcd4; /* Bright cyan style matching attachment */
  color: #FFFFFF;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-control-btn:hover {
  background-color: #00acc1;
}

.slider-control-btn:focus {
  outline: none;
}

.prev-btn {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.blog-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.blog-slider-item {
  flex: 0 0 33.333%;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Hero mockup image styles */
.hero-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
}

.hero-mockup-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

.hero-mockup-wrapper:hover .hero-mockup-image {
  transform: translateY(-6px) scale(1.02);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-container,
  .split-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-container {
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .grid-3,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: span 2;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .challenge-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .mobile-nav-toggle {
    display: block;
  }
  nav ul {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 0;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 999;
  }
  nav ul.active {
    left: 0;
  }
  .grid-3,
  .blog-grid,
  .stats-grid,
  .footer-container,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-about {
    grid-column: span 1;
  }
  .hero {
    padding-top: 140px;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-box {
    padding: 2rem;
  }
  .vape-hero h1 {
    font-size: 2.25rem;
  }
}
