@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Color System */
  --background: #f9f9f9;
  --on-background: #1a1c1c;
  --surface: #f9f9f9;
  --on-surface: #1a1c1c;
  --surface-dim: #dadada;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f3f3f4;
  --surface-container: #eeeeee;
  --surface-container-high: #e8e8e8;
  --surface-container-highest: #e2e2e2;
  
  --primary: #000000;
  --on-primary: #ffffff;
  --secondary: #505f76;
  --on-secondary: #ffffff;
  --tertiary: #111313; /* Dark mode sections */
  --on-tertiary: #ffffff;
  --on-tertiary-container: #a2a8ab;
  
  --outline: #7e7576;
  --outline-variant: #cfc4c5;
  --border-color: #e2e8f0;
  
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --on-error: #ffffff;

  /* Typography Scales */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing Scale */
  --base: 8px;
  --section-gap: 128px;
  --section-gap-mobile: 64px;
  --container-padding: 64px;
  --gutter: 24px;
  --margin-desktop: 80px;
  --margin-mobile: 16px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

/* CSS Reset & Defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  background-color: var(--background);
  color: var(--on-background);
}

body {
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Classes */
.display-xl {
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* 72px equivalent */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.display-lg {
  font-size: clamp(2rem, 3.5vw, 3rem); /* 48px equivalent */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.headline-lg {
  font-size: clamp(1.5rem, 2.5vw, 2rem); /* 32px equivalent */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  line-height: 1.6;
  color: var(--secondary);
}

.body-md {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.5;
}

.label-caps {
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
  }
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
  }
}

/* Header & Navigation */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(249, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--outline-variant);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  border-bottom: 1px solid var(--primary);
  background-color: rgba(249, 249, 249, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.header-nav.scrolled .nav-container {
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  font-weight: 400;
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: calc(var(--base) * 2);
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: right;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0px; /* Sharp corners */
  border: 1px solid var(--primary);
  padding: 16px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #0091ff;
  border-color: #0091ff;
  color: #ffffff;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #0091ff;
  border-color: #0091ff;
}

.btn-secondary:hover {
  background-color: #0091ff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--on-tertiary);
  border-color: var(--on-tertiary);
}

.btn-tertiary:hover {
  background-color: var(--on-tertiary);
  color: var(--tertiary);
  transform: translateY(-2px);
}

/* Sharp Grid / Bento Style */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gutter);
}

.bento-card {
  border: 1px solid var(--border-color);
  background-color: var(--surface-container-lowest);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  border-color: var(--primary);
  background-color: var(--surface-container-low);
  transform: translateY(-4px);
}

.bento-card .card-category {
  color: var(--secondary);
  margin-bottom: 24px;
}

.bento-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bento-card p {
  color: var(--secondary);
  margin-bottom: 40px;
  flex-grow: 1;
}

.bento-card .card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary);
  transition: var(--transition-fast);
}

.bento-card:hover .card-link {
  padding-right: 8px;
}

/* Inverted Dark Section */
.dark-section {
  background-color: var(--tertiary);
  color: var(--on-tertiary);
}

.dark-section h2, .dark-section h3, .dark-section h4 {
  color: var(--on-tertiary);
}

.dark-section p {
  color: var(--on-tertiary-container);
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  padding: 32px;
  transition: var(--transition-smooth);
}

.dark-card:hover {
  border-color: var(--on-tertiary);
  background-color: rgba(255, 255, 255, 0.03);
}

.dark-card h4 {
  margin-bottom: 12px;
}

/* Footer styling */
footer {
  background-color: var(--tertiary);
  color: var(--on-tertiary-container);
  border-top: 1px solid var(--outline-variant);
  padding: var(--section-gap) 0 calc(var(--section-gap) / 2);
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}

footer .footer-brand h2 {
  color: var(--on-tertiary);
  margin-bottom: 16px;
}

footer .footer-brand a {
  display: inline-block;
  transition: opacity 0.2s ease;
}

footer .footer-brand a:hover {
  opacity: 0.8;
}

footer .footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--on-tertiary-container);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Multi-column Footer Grid */
footer .footer-grid {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 150px;
}

footer .footer-column h4 {
  color: var(--on-tertiary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .footer-column a {
  color: var(--on-tertiary-container);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

footer .footer-column a:hover {
  color: var(--on-tertiary);
  padding-left: 2px;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  color: var(--on-tertiary-container);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--on-tertiary);
  transform: translateY(-2px);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Interactive Elements */
.tab-container {
  margin-top: 48px;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  gap: 32px;
  margin-bottom: 32px;
  list-style: none;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-family);
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.tab-btn.active {
  color: var(--primary);
  font-weight: 700;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

/* Spec Tables */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  text-align: left;
}

.spec-table th {
  border-bottom: 2px solid var(--primary);
  padding: 16px 24px;
  color: var(--primary);
}

.spec-table td {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px;
  color: var(--secondary);
}

.spec-table tr:hover td {
  color: var(--primary);
  background-color: var(--surface-container-low);
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-control {
  width: 100%;
  font-family: var(--font-family);
  font-size: 1rem;
  padding: 16px;
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--border-color);
  border-radius: 0px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary);
  border-width: 2px;
  padding: 15px; /* Adjust padding to keep height same when border thickness changes */
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .arrow {
  font-size: 0.6rem;
  margin-left: 4px;
  display: inline-block;
  transition: var(--transition-smooth);
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
  background-color: var(--surface-container-low);
  color: var(--primary);
}

/* Hover Show on Desktop */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

/* Mobile Dropdown styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-dropdown.open .dropdown-menu {
    max-height: 350px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .nav-dropdown.open .arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-menu li a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--outline-variant);
    padding: 24px var(--margin-mobile);
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 99;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link::after {
    left: 0;
    right: 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Helper spacing classes */
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-64 { margin-bottom: 64px; }
.mb-128 { margin-bottom: 128px; }

.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-128 { margin-top: 128px; }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.w-full {
  width: 100%;
}

/* Solutions Page Specific Layouts */
.solutions-hero {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 96px;
}

.solutions-hero-text {
  flex: 1 1 500px;
}

.solutions-hero-img-wrapper {
  flex: 1 1 500px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.solutions-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.solutions-hero-img-wrapper:hover .solutions-hero-img {
  transform: scale(1.03);
}

.solutions-grid-item {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.solutions-grid-item:nth-child(even) {
  flex-direction: row-reverse;
}

.solutions-grid-text {
  flex: 1 1 450px;
}

.solutions-grid-img-wrapper {
  flex: 1 1 450px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
}

.solutions-grid-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.solutions-grid-img-wrapper:hover .solutions-grid-img {
  transform: scale(1.02);
}

.solutions-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--border-color);
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.solutions-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.solutions-category {
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.solutions-title {
  color: var(--primary);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.solutions-description {
  color: var(--secondary);
  line-height: 1.75;
  font-size: 1rem;
}

.solutions-description p {
  margin-bottom: 16px;
}

.solutions-description p:last-child {
  margin-bottom: 0;
}

/* Battery Section Layout */
.battery-section-container {
  background-color: var(--surface-container-low);
  border: 1px solid var(--border-color);
  padding: 64px;
  margin-bottom: 120px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.battery-text-col {
  flex: 1 1 600px;
}

.battery-icon-col {
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.battery-icon-box {
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.battery-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .solutions-grid-item,
  .solutions-grid-item:nth-child(even) {
    gap: 40px;
  }
  .solutions-grid-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .solutions-hero {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
  }
  
  .solutions-hero-img-wrapper {
    width: 100%;
  }
  
  .solutions-hero-img {
    height: 300px;
  }
  
  .solutions-grid-item,
  .solutions-grid-item:nth-child(even) {
    flex-direction: column !important;
    gap: 24px;
    margin-bottom: 64px;
  }
  
  .solutions-grid-img-wrapper {
    width: 100%;
  }
  
  .solutions-grid-img {
    height: 300px;
  }
  
  .battery-section-container {
    flex-direction: column-reverse;
    padding: 32px;
    gap: 32px;
    margin-bottom: 64px;
  }
  
  .battery-icon-col {
    flex: 1 1 auto;
  }
}

/* WIX-STYLE SOLUTIONS LAYOUT */
.sol-wix-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(0, 6, 15, 0.7), rgba(0, 6, 15, 0.7)), url('sol_hero.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.sol-wix-hero-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.sol-wix-hero-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.sol-wix-hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: var(--transition-smooth);
  width: 120px;
}

.sol-wix-hero-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08); /* Transparent glassmorphic background */
  border: 1px solid rgba(255, 255, 255, 0.25); /* Subtle white border */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.sol-wix-hero-icon-circle .material-symbols-outlined {
  font-size: 36px; /* Vector icon size */
  color: #ffffff;  /* White line drawing */
  display: block;
  transition: var(--transition-smooth);
}

.sol-wix-hero-icon-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.sol-wix-hero-icon-item:hover .sol-wix-hero-icon-circle {
  background-color: rgba(255, 255, 255, 0.2); /* Brighten background on hover */
  border-color: #ffffff;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.sol-wix-hero-icon-item:hover .sol-wix-hero-icon-circle .material-symbols-outlined {
  transform: scale(1.1); /* Zoom the vector icon slightly */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Glow effect for white lines */
}

.sol-wix-hero-icon-item:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.sol-wix-strip {
  position: relative;
  width: 100%;
  min-height: 680px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 80px 0;
  box-sizing: border-box;
}

.sol-wix-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 6, 15, 0.35); /* Wix background shadow effect */
  z-index: 1;
}

.sol-wix-strip > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Float card on the right */
}

.sol-wix-card {
  width: 511px;
  max-width: 100%;
  background-color: rgba(0, 6, 15, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.5s var(--transition-smooth);
}

.sol-wix-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.sol-wix-card-icon-box {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08); /* Transparent glassmorphic background */
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.sol-wix-card-icon-box .material-symbols-outlined {
  font-size: 42px; /* Vector icon size */
  color: #ffffff;  /* White line drawing */
  display: block;
  transition: var(--transition-smooth);
}

.sol-wix-card:hover .sol-wix-card-icon-box {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.sol-wix-card:hover .sol-wix-card-icon-box .material-symbols-outlined {
  transform: scale(1.1); /* Interactive zoom when hover on card */
}

.sol-wix-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sol-wix-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; /* 18px */
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.sol-wix-card-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
  width: 100%;
}

.sol-wix-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.sol-wix-card-body p {
  margin-bottom: 16px;
}

.sol-wix-card-body p:last-child {
  margin-bottom: 0;
}

.sol-wix-card-body ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sol-wix-card-body li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.sol-wix-card-body li::before {
  content: '▪';
  position: absolute;
  left: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  top: -1px;
}

.sol-wix-card-body li strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .sol-wix-strip {
    background-attachment: scroll;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .sol-wix-hero {
    min-height: auto;
    padding: 60px 0;
  }
  .sol-wix-strip > .container {
    justify-content: center;
  }
  .sol-wix-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .sol-wix-card-title {
    font-size: 1.75rem;
  }
  .sol-wix-card-subtitle {
    font-size: 0.95rem;
  }
  .sol-wix-hero-icons {
    gap: 20px;
  }
  .sol-wix-hero-icon-circle {
    width: 64px;
    height: 64px;
  }
  .sol-wix-hero-icon-circle img {
    width: 36px;
    height: 36px;
  }
  .sol-wix-hero-icon-item {
    width: 90px;
  }
  .sol-wix-hero-icon-label {
    font-size: 0.7rem;
  }
}

/* WIX-STYLE ABOUT LAYOUT */
.about-wix-strip {
  position: relative;
  width: 100%;
  min-height: 680px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 80px 0;
  box-sizing: border-box;
}

.about-wix-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 6, 15, 0.35); /* Wix background shadow effect */
  z-index: 1;
}

.about-wix-strip > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Float card on the left */
}

.about-wix-card {
  width: 550px;
  max-width: 100%;
  background-color: rgba(0, 6, 15, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.5s var(--transition-smooth), border-color 0.5s var(--transition-smooth);
}

.about-wix-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-wix-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-wix-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; /* 18px */
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.about-wix-card-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
  width: 100%;
}

.about-wix-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.about-wix-card-body p {
  margin-bottom: 16px;
}

.about-wix-card-body p:last-child {
  margin-bottom: 0;
}

/* Core Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.about-value-card {
  background-color: rgba(0, 6, 15, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0px 9px 24px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}

.about-value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-value-icon {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 16px;
  display: block;
}

.about-value-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.about-value-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .about-wix-strip {
    background-attachment: scroll;
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-wix-strip > .container {
    justify-content: center;
  }
  .about-wix-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .about-wix-card-title {
    font-size: 1.75rem;
  }
  .about-wix-card-subtitle {
    font-size: 0.95rem;
  }
}

/* WIX-STYLE PRODUCT DETAIL PAGE LAYOUT */
.prod-detail-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: linear-gradient(rgba(0, 6, 15, 0.75), rgba(0, 6, 15, 0.75)), url('sol_hero.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
}

.prod-detail-hero-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.prod-detail-section {
  padding: 80px 0;
  background-color: var(--background);
}

.prod-detail-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.prod-detail-image-col {
  flex: 1 1 400px;
  max-width: 500px;
}

.prod-detail-image-box {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.prod-detail-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prod-detail-content-col {
  flex: 1 1 500px;
}

.prod-detail-overview-card {
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--border-color);
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.prod-detail-overview-card .label-caps {
  color: var(--secondary);
  margin-bottom: 12px;
}

.prod-detail-overview-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.prod-detail-overview-card .slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.prod-detail-overview-card p {
  color: var(--secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.prod-features-section {
  padding: 80px 0;
  background-color: var(--surface-container-low);
  border-top: 1px solid var(--border-color);
}

.prod-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.prod-feature-card {
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--border-color);
  padding: 32px;
  transition: var(--transition-smooth);
}

.prod-feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.prod-feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.prod-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.prod-feature-description {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.prod-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background);
  border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
  .prod-detail-grid {
    gap: 40px;
  }
  .prod-detail-image-col {
    max-width: 100%;
  }
  .prod-detail-image-box {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .prod-detail-overview-card {
    padding: 32px 24px;
  }
  .prod-detail-overview-card h2 {
    font-size: 2rem;
  }
}

/* APPLE/WIX ALTERNATING STRIP PRODUCT DETAIL STYLES */
.prod-strip {
  position: relative;
  width: 100%;
  padding: 120px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.prod-strip-white {
  background-color: #ffffff;
  color: var(--on-background);
}

.prod-strip-gray {
  background-color: #f5f5f7;
  color: var(--on-background);
}

.prod-strip-dark {
  background-color: #00060f;
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.prod-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Alternate flex directions on desktop */
.prod-strip:nth-child(even) .prod-strip-container {
  flex-direction: row-reverse;
}

.prod-strip-text {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prod-strip-text h2, .prod-strip-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.prod-strip-dark .prod-strip-text h2, 
.prod-strip-dark .prod-strip-text h3 {
  color: #ffffff;
}

.prod-strip-white .prod-strip-text h2,
.prod-strip-white .prod-strip-text h3,
.prod-strip-gray .prod-strip-text h2,
.prod-strip-gray .prod-strip-text h3 {
  color: var(--primary);
}

.prod-strip-text .slogan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.prod-strip-white .prod-strip-text .slogan,
.prod-strip-gray .prod-strip-text .slogan {
  color: var(--secondary);
}

.prod-strip-dark .prod-strip-text .slogan {
  color: rgba(255, 255, 255, 0.75);
}

.prod-strip-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.prod-strip-white .prod-strip-text p,
.prod-strip-gray .prod-strip-text p {
  color: var(--secondary);
}

.prod-strip-dark .prod-strip-text p {
  color: rgba(255, 255, 255, 0.85);
}

.prod-strip-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prod-strip-text li {
  font-size: 1.05rem;
  line-height: 1.75;
  position: relative;
  padding-left: 24px;
}

.prod-strip-white .prod-strip-text li::before,
.prod-strip-gray .prod-strip-text li::before {
  content: '▪';
  color: var(--primary);
  position: absolute;
  left: 6px;
  font-size: 0.8rem;
  top: -1px;
}

.prod-strip-dark .prod-strip-text li::before {
  content: '▪';
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 6px;
  font-size: 0.8rem;
  top: -1px;
}

.prod-strip-media {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prod-strip-image-box {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 10;
  height: auto;
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-strip-image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.08);
}

.prod-strip-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prod-strip-graphic-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 10;
  height: auto;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-strip-graphic-box:hover {
  transform: translateY(-5px);
}

.prod-strip-graphic-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,6,15,0.1), rgba(0,6,15,0.45));
  z-index: 1;
}

@media (max-width: 992px) {
  .prod-strip {
    padding: 80px 0;
  }
  
  .prod-strip-container {
    flex-direction: column !important;
    gap: 48px;
    padding: 0 24px;
  }
  
  .prod-strip-text h2, 
  .prod-strip-text h3 {
    font-size: 2.25rem;
    text-align: center;
  }
  
  .prod-strip-text .slogan {
    text-align: center;
  }
  
  .prod-strip-image-box, 
  .prod-strip-graphic-box {
    aspect-ratio: 16 / 10;
    height: auto;
    max-width: 100%;
  }
  
  .prod-strip-text p {
    text-align: center;
  }
  
  .prod-strip-text ul {
    align-items: center;
  }
}

/* ==========================================================================
   Apple-Style Storytelling & Scrolltelling Component Styles
   ========================================================================== */
.story-strip {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
}

.story-strip-white {
  background-color: #ffffff;
  color: var(--on-background);
}

.story-strip-gray {
  background-color: #f5f5f7;
  color: var(--on-background);
}

.story-strip-dark {
  background-color: #00060f;
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.story-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.story-header {
  margin-bottom: 48px;
  width: 100%;
}

.story-keyword {
  color: var(--secondary);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-strip-dark .story-keyword {
  color: rgba(255, 255, 255, 0.6);
}

.story-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--primary);
  text-transform: uppercase;
}

.story-strip-dark .story-title {
  color: #ffffff;
}

.story-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--secondary);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
}

.story-strip-dark .story-tagline {
  color: rgba(255, 255, 255, 0.85);
}

.story-media {
  width: 100%;
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.story-image-box {
  width: 100%;
  max-width: 900px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-strip-dark .story-image-box {
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.story-image-box:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.08);
}

.story-strip-dark .story-image-box:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}

.story-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.story-image-box.fit-frame {
  padding: 0;
  overflow: hidden;
}

.story-image-box.fit-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

/* Play Button Overlay for Video Thumbnails */
.video-container-link {
  display: block;
  width: 100%;
  max-width: 900px;
  text-decoration: none;
}

.video-thumbnail-box {
  position: relative;
}
.video-thumbnail-box img {
  object-fit: contain;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(220, 38, 38, 0.95); /* YouTube Red */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  z-index: 2;
}

.video-container-link:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(239, 68, 68, 1); /* Brighter Red */
}

.play-icon {
  font-size: 3rem !important;
  color: #ffffff;
}

.story-graphic-box {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-strip-dark .story-graphic-box {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.story-graphic-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,6,15,0.05), rgba(0,6,15,0.35));
  z-index: 1;
}

.story-graphic-box:hover {
  transform: translateY(-4px) scale(1.01);
}

.story-narrative {
  max-width: 780px;
  width: 100%;
  text-align: left;
  line-height: 1.85;
  font-size: 1.1rem;
  color: var(--secondary);
}

.story-strip-dark .story-narrative {
  color: rgba(255, 255, 255, 0.75);
}

.story-narrative p {
  margin-bottom: 24px;
}

.story-narrative p:last-child {
  margin-bottom: 0;
}

.story-narrative ul {
  list-style: none;
  padding-left: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-narrative li {
  position: relative;
  padding-left: 32px;
  font-size: 1.05rem;
}

.story-narrative li::before {
  content: '▪';
  position: absolute;
  left: 10px;
  top: -1px;
  color: var(--primary);
  font-size: 0.95rem;
}

.story-strip-dark .story-narrative li::before {
  color: #ffffff;
}

.story-narrative li strong {
  color: var(--primary);
  font-weight: 700;
}

.story-strip-dark .story-narrative li strong {
  color: #ffffff;
}

@media (max-width: 992px) {
  .story-strip {
    padding: 80px 0;
  }
  .story-image-box,
  .story-graphic-box {
    aspect-ratio: 16 / 10;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .story-strip {
    padding: 60px 0;
  }
  .story-header {
    margin-bottom: 32px;
  }
  .story-title {
    font-size: 2.25rem;
  }
  .story-tagline {
    font-size: 1.1rem;
  }
  .story-media {
    margin-bottom: 36px;
  }
  .story-narrative {
    font-size: 1rem;
  }
  .story-narrative li {
    font-size: 0.95rem;
  }
}

/* Slider Components */
.durability-slider, .overview-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.slides-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-slider .slide img {
  object-fit: contain !important;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  padding: 16px 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}
.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.prev-btn {
  left: 0;
}
.next-btn {
  right: 0;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

/* Redesigned Home Page Styling Helpers */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 7.5s ease-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.active:not([data-type="video"]) {
  transform: scale(1.08);
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Semi-transparent dark overlay for high text contrast */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 6, 15, 0.55), rgba(0, 6, 15, 0.75));
  z-index: 2;
}

.home-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
}

/* Controls */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.hero-slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-btn .material-symbols-outlined {
  font-size: 28px;
}

.hero-prev-btn {
  left: 32px;
}

.hero-next-btn {
  right: 32px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-slider-btn {
    width: 44px;
    height: 44px;
  }
  .hero-slider-btn .material-symbols-outlined {
    font-size: 20px;
  }
  .hero-prev-btn {
    left: 16px;
  }
  .hero-next-btn {
    right: 16px;
  }
}

.sol-accordion {
  display: flex;
  width: 100%;
  height: 520px;
  gap: 8px;
  margin-top: 48px;
  overflow: hidden;
  box-sizing: border-box;
}

.sol-accordion-item {
  flex: 1;
  min-width: 80px;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
}

.sol-accordion-item.active {
  flex: 6;
  cursor: default;
  pointer-events: auto;
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.accordion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 6, 15, 0.4), rgba(0, 6, 15, 0.85));
  z-index: 1;
  transition: opacity 0.6s ease;
}

.sol-accordion-item:not(.active):hover .accordion-overlay {
  background: linear-gradient(rgba(0, 6, 15, 0.25), rgba(0, 6, 15, 0.7));
}

/* Vertical Title when Collapsed */
.accordion-title-vertical {
  position: absolute;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  opacity: 1;
  transition: opacity 0.3s ease, color 0.3s ease;
  pointer-events: none;
}

.sol-accordion-item:hover .accordion-title-vertical {
  color: #ffffff;
}

.sol-accordion-item.active .accordion-title-vertical {
  opacity: 0;
  display: none;
}

/* Content overlay when Active */
.accordion-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  box-sizing: border-box;
}

.sol-accordion-item.active .accordion-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-section-title-wrapper {
  margin-bottom: 64px;
  text-align: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  animation: bounce 2s infinite;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 500px;
    background-attachment: scroll;
  }
  .sol-accordion {
    flex-direction: column;
    height: 700px;
    gap: 8px;
  }

  .sol-accordion-item {
    flex: 1;
    width: 100%;
    height: auto;
    min-height: 60px;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .sol-accordion-item.active {
    flex: 6;
  }

  .accordion-title-vertical {
    writing-mode: horizontal-tb;
    transform: none;
    position: relative;
    opacity: 1;
    display: block;
    font-size: 1rem;
  }

  .sol-accordion-item.active .accordion-title-vertical {
    display: none;
  }

  .accordion-content {
    padding: 24px;
  }
}

/* Interactive Product Selector Section Styles */
.prod-selector-strip {
  width: 100%;
  box-sizing: border-box;
}

.prod-selector-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.prod-select-tab {
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.prod-select-tab .tab-icon {
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.prod-select-tab:hover .tab-icon {
  color: var(--primary);
}

.prod-select-tab.active .tab-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.prod-select-tab:hover {
  border-color: #0091ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 145, 255, 0.1);
}

.prod-select-tab.active {
  border-color: #0091ff;
  border-width: 2px;
  padding: 19px 15px; /* offset border padding adjustment */
  background-color: #0091ff;
  box-shadow: 0 8px 24px rgba(0, 145, 255, 0.25);
}

.prod-select-tab .tab-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.prod-select-tab.active .tab-badge {
  color: rgba(255, 255, 255, 0.8);
}

.prod-select-tab .tab-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.prod-select-tab.active .tab-title {
  color: #ffffff;
}

/* Contents Layout */
.prod-selector-contents {
  position: relative;
  min-height: 480px; /* stabilize layout shifts */
}

.prod-select-content {
  display: none; /* hidden by default */
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.prod-select-content.active {
  display: grid;
  animation: selectFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.prod-select-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prod-select-image-box {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 11;
  width: 100%;
  box-sizing: border-box;
}

.prod-select-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Tab Transitions */
@keyframes selectFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness */
@media (max-width: 992px) {
  .prod-select-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prod-selector-contents {
    min-height: auto;
  }
  .prod-selector-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .prod-selector-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ==========================================================================
   LCD Monitor Styling
   ========================================================================== */
.lcd-monitor {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.lcd-monitor:hover {
  transform: translateY(-8px) scale(1.01);
}

/* Outer Bezel */
.lcd-screen-container {
  position: relative;
  width: 100%;
  background: #15171c; /* Matte dark charcoal */
  padding: 8px 8px 16px 8px; /* Thinner bezel for modern look */
  border-radius: 10px;
  border: 2px solid #282a30;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.15), 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

/* Inner Screen Area */
.lcd-screen-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 690;
  background-color: #000000;
  overflow: hidden;
  border: 1px solid #08090a;
  border-radius: 3px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.lcd-screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lcd-screen-inner.lcd-fit-fill img,
.lcd-screen-inner.lcd-fit-fill .slide img {
  object-fit: fill;
}

/* Glass Glare Overlay */
.lcd-screen-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0) 45.1%);
  pointer-events: none;
  z-index: 3;
}

/* Brand Logo Text */
.lcd-brand {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: #7b808c;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  user-select: none;
  opacity: 0.8;
}

/* Glowing LED Power Indicator */
.lcd-power-led {
  position: absolute;
  bottom: 6px;
  right: 18px;
  width: 4px;
  height: 4px;
  background-color: #39ff14; /* Neon Green */
  border-radius: 50%;
  box-shadow: 
    0 0 8px #39ff14,
    0 0 15px rgba(57, 255, 20, 0.6);
  animation: led-pulse 3s infinite ease-in-out;
}

@keyframes led-pulse {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 4px #39ff14; }
  50% { opacity: 1; box-shadow: 0 0 10px #39ff14, 0 0 15px #39ff14; }
}

/* Stand Neck */
.lcd-stand-neck {
  width: 80px;
  height: 40px;
  background: linear-gradient(to right, #131417 0%, #292b33 25%, #424652 50%, #292b33 75%, #131417 100%);
  border-bottom: 2px solid #08090a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin-top: -4px;
  z-index: -1;
}

/* Stand Base */
.lcd-stand-base {
  width: 220px;
  height: 12px;
  background: linear-gradient(to right, #131417 0%, #3a3e47 50%, #131417 100%);
  border-radius: 8px 8px 0 0;
  border: 1px solid #24262c;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  z-index: -1;
}

/* Play button adjustment inside LCD screen */
.lcd-screen-inner .play-button-overlay {
  z-index: 4; /* Place above the glare */
}





\n
/* --- New UX Enhancements --- */

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--on-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.scroll-to-top:hover {
  background-color: var(--tertiary);
  transform: translateY(-2px);
}

/* Nav Actions Styling */
.lang-select {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--on-surface);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
}

/* Form Validation Styles */
.form-control.valid {
  border-color: #10b981 !important;
}
.form-control.invalid {
  border-color: var(--error) !important;
}

/* Trusted Partners Logo Carousel */
.partners-carousel {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.partners-carousel img {
  width: auto;
  filter: grayscale(100%) brightness(0.2);
  opacity: 0.55;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.partners-carousel img.logo-samsung {
  height: 25px;
}
.partners-carousel img.logo-hyundai {
  height: 24px;
}
.partners-carousel img.logo-lg {
  height: 38px;
}
.partners-carousel img.logo-hanwha {
  height: 28px;
}
.partners-carousel img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================
   INTERACTIVE GLOBE SECTION STYLES
   ========================================== */
.about-globe-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  background: radial-gradient(circle at 75% 50%, #0c1524 0%, #03070f 100%);
  display: flex;
  align-items: center;
  padding: 80px 0;
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-globe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.globe-visualization {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

#globe-canvas {
  width: 500px;
  height: 500px;
  max-width: 100%;
  cursor: grab;
  outline: none;
}

#globe-canvas:active {
  cursor: grabbing;
}

.globe-tooltip {
  position: absolute;
  background: rgba(8, 14, 25, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 191, 0, 0.3);
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.1s ease;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.globe-tooltip strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 1024px) {
  .about-globe-section {
    padding: 60px 0;
  }
  .about-globe-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .about-globe-container .about-wix-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .globe-visualization {
    width: 100%;
    min-height: 400px;
  }
  #globe-canvas {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .globe-visualization {
    min-height: 320px;
  }
  #globe-canvas {
    width: 320px;
    height: 320px;
  }
}
