/* ============================================
   ASIO Sweden – Design System & Styles
   Harmonized with asio.cz parent company
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors – harmonized with asio.cz */
  --navy: #1B3764;
  --navy-deep: #0F2440;
  --navy-light: #2A4A7F;
  --green: #7AB930;
  --green-dark: #5A9A1B;
  --green-light: #8FD440;
  --green-bg: #f0f8e8;
  --blue-accent: #3B82F6;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --light-grey: #F1F5F9;
  --grey: #E2E8F0;
  --text-dark: #1E293B;
  --text-body: #475569;
  --text-muted: #94A3B8;
  --danger: #EF4444;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(122, 185, 48, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--green-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

p+p {
  margin-top: var(--space-4);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section--grey {
  background: var(--light-grey);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--green-bg {
  background: var(--green-bg);
}

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

.text-muted {
  color: var(--text-muted);
}

.section-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  vertical-align: middle;
  margin-right: var(--space-2);
  position: relative;
  top: -1px;
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: var(--space-12);
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--grey);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--font-size-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--font-size-sm);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

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

.navbar__logo img {
  height: 56px;
  width: auto;
  display: inline-block;
  transition: opacity var(--transition-base);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  position: relative;
  min-width: 200px;
  min-height: 56px;
}

.navbar__logo-text {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-left: 150px;
  transition: color var(--transition-base);
}

.navbar.scrolled .navbar__logo-text {
  color: var(--navy);
}

.navbar__logo .logo-white {
  opacity: 1;
}

.navbar__logo .logo-dark {
  opacity: 0;
}

.navbar.scrolled .navbar__logo .logo-white {
  opacity: 0;
}

.navbar.scrolled .navbar__logo .logo-dark {
  opacity: 1;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.navbar__link {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .navbar__link {
  color: var(--text-body);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--navy);
  background: var(--light-grey);
}

.navbar__link--active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .navbar__link--active {
  color: var(--green) !important;
  background: var(--green-bg);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  padding: var(--space-2);
  list-style: none;
  transition: all var(--transition-base);
  border: 1px solid var(--grey);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown:hover .navbar__dropdown-trigger svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text-body);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.navbar__dropdown-menu li a:hover {
  background: var(--green-bg);
  color: var(--green-dark);
}

.navbar__dropdown-menu li a .dropdown-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  border-radius: var(--radius-sm);
  color: var(--green);
  flex-shrink: 0;
}

.navbar__dropdown-menu li a:hover .dropdown-icon {
  background: var(--green);
  color: var(--white);
}

.navbar__cta {
  margin-left: var(--space-4);
}

.navbar__cta .btn {
  padding: var(--space-2) var(--space-6);
  font-size: var(--font-size-sm);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar__toggle span {
  background: var(--navy);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, rgba(27, 55, 100, 0.85) 50%, rgba(122, 185, 48, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: var(--navbar-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(122, 185, 48, 0.15);
  border: 1px solid rgba(122, 185, 48, 0.3);
  border-radius: var(--radius-full);
  color: var(--green-light);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__title {
  color: var(--white);
  font-size: var(--font-size-6xl);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__title span {
  color: var(--green);
}

.hero__text {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--space-16);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease 1s both;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  display: block;
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-1);
}

/* Floating product visual */
.hero__visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 45%;
  max-width: 600px;
  animation: float 6s ease-in-out infinite;
}

.hero__visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* --- Exclusivity Badge --- */
.product-exclusivity-badge {
  position: absolute;
  top: var(--space-6);
  right: var(--space-4);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(27, 55, 100, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  max-width: 220px;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  transform: rotate(3deg);
  transition: transform var(--transition-spring);
  animation: badgePopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.product-exclusivity-badge:hover {
  transform: rotate(0deg) scale(1.05);
}

.product-exclusivity-badge__icon {
  color: var(--green);
  margin-bottom: var(--space-1);
}

.product-exclusivity-badge__title {
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  line-height: 1.2;
}

.product-exclusivity-badge__text {
  font-size: 0.7rem;
  line-height: 1.3;
  opacity: 0.9;
}

@keyframes badgePopIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(3deg);
  }
}


/* --- Product Cards Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.product-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-grey), var(--off-white));
  min-height: 240px;
}

.product-card--featured .product-card__image {
  flex: 1;
  min-height: 360px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--green);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  z-index: 2;
}

/* Inline badge for features/USPs */
.badge-inline {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background-color: var(--green-bg);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-left: var(--space-2);
  vertical-align: middle;
  border: 1px solid rgba(122, 185, 48, 0.2);
}

.product-card__body {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: var(--space-2);
}

.product-card__title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
}

.product-card__text {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  flex: 1;
}

.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  list-style: none;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  background: var(--light-grey);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.product-card__features li svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-weight: 600;
  color: var(--green);
  font-size: var(--font-size-sm);
}

.product-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.product-card:hover .product-card__link svg {
  transform: translateX(4px);
}

/* --- USP / Advantages --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.usp-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--grey);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.usp-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  transform: translateY(-4px);
}

.usp-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-bg);
  border-radius: var(--radius-lg);
  color: var(--green);
  transition: all var(--transition-base);
}

.usp-card:hover .usp-card__icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}

.usp-card__icon svg {
  width: 28px;
  height: 28px;
}

.usp-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.usp-card__text {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 185, 48, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.cta-banner__content {
  max-width: 560px;
}

.cta-banner__title {
  color: var(--white);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
}

/* --- Trust / Stats Bar --- */
.trust-bar {
  padding: var(--space-12) 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.trust-item__number {
  display: block;
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.trust-item__label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* --- Product Page Styles --- */
.product-hero {
  padding-top: calc(var(--navbar-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}

.product-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.product-hero__title {
  color: var(--white);
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-4);
}

.product-hero__subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
}

.product-hero__image {
  border-radius: var(--radius-lg);
  /* Removed overflow: hidden so the badge can stick out */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-hero__image img {
  width: 100%;
  height: auto;
}

/* Features list */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey);
  transition: all var(--transition-base);
}

.features-list li:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.features-list li .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.features-list li strong {
  display: block;
  color: var(--navy);
  font-size: var(--font-size-sm);
}

.features-list li span {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Process section */
.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.process-content__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-content__image img {
  width: 100%;
  height: auto;
}

/* Video embed */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Download buttons */
.download-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--green);
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--green);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer__inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-body);
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122, 185, 48, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 185, 48, 0.15);
  border-radius: var(--radius-md);
  color: var(--green);
  flex-shrink: 0;
}

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

.contact-info-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.contact-info-item a {
  color: var(--green-light);
  font-weight: 600;
  font-size: var(--font-size-lg);
}

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
  max-width: 300px;
  line-height: 1.7;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
  text-decoration: none;
}

.footer__logo img {
  height: 40px;
}

.footer__logo span {
  color: var(--white);
  font-weight: 800;
  font-size: var(--font-size-xl);
}

.footer__heading {
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--green-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Page Header (generic) --- */
.page-header {
  padding-top: calc(var(--navbar-height) + var(--space-16));
  padding-bottom: var(--space-12);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-4);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-xl);
  max-width: 600px;
  margin: 0 auto;
}

/* --- About page specific --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.about-stat-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey);
}

.about-stat-card .number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.about-stat-card .label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* --- Entrepreneur/Partner page --- */
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.partner-benefit {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey);
}

.partner-benefit .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-bg);
  border-radius: var(--radius-md);
  color: var(--green);
  flex-shrink: 0;
}

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

.partner-benefit h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
}

.partner-benefit p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(calc(-50% - 12px)) translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  .hero__title {
    font-size: var(--font-size-5xl);
  }

  .hero__visual {
    display: none;
  }

  .hero__stats {
    gap: var(--space-8);
  }

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

  .product-card--featured {
    flex-direction: column;
    grid-column: span 1;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-hero .container {
    grid-template-columns: 1fr;
  }

  .product-hero__image {
    order: -1;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .process-content {
    grid-template-columns: 1fr;
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-exclusivity-badge {
    flex-direction: row;
    padding: var(--space-2) var(--space-3);
    top: var(--space-2);
    right: 0;
    max-width: fit-content;
    transform: rotate(0deg);
  }
  .product-exclusivity-badge__text {
    display: none;
  }
  .product-exclusivity-badge__icon {
    margin-bottom: 0;
    width: 16px;
    height: 16px;
  }
  .product-exclusivity-badge__icon svg {
    width: 100%;
    height: 100%;
  }

  .hero__title {
    font-size: var(--font-size-4xl);
    margin-top: var(--space-10);
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
    text-align: center;
  }
  .hero__stat {
    text-align: center;
  }
  .hero__badge {
    display: none;
  }

  .navbar__nav {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-8);
    gap: var(--space-2);
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__nav .navbar__link {
    color: var(--text-body);
    padding: var(--space-4);
    font-size: var(--font-size-lg);
  }

  .navbar__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: var(--space-8);
    display: none;
    margin-top: var(--space-2);
  }

  .navbar__dropdown:hover .navbar__dropdown-menu {
    transform: none;
  }

  .navbar__dropdown.open .navbar__dropdown-menu {
    display: block;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .partner-benefits {
    grid-template-columns: 1fr;
  }

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

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    height: auto;
    line-height: 1.4;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .page-header h1 {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .hero__text {
    font-size: var(--font-size-base);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    height: auto;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .container {
    padding: 0 var(--space-4);
  }
}

/* ===== Process Content Image (technical diagrams) ===== */
.process-content__image {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-content__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ===== Technical Specs Accordion ===== */
.tech-specs-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 700;
  font-family: inherit;
  transition: border-radius 0.3s;
}

.tech-specs-toggle[aria-expanded="true"] {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tech-specs-toggle svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.tech-specs-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.tech-specs-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tech-specs-panel.open {
  max-height: 3000px;
}

.tech-specs-panel__inner {
  padding: var(--space-6);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-6);
}

.spec-table th,
.spec-table td {
  padding: var(--space-2) var(--space-3);
  text-align: center;
  border-bottom: 1px solid var(--grey);
  white-space: nowrap;
}

.spec-table th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--navy);
  position: sticky;
  top: 0;
}

.spec-table td:first-child,
.spec-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}

.tech-drawings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
}

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

  .spec-table {
    font-size: 11px;
  }

  .spec-table th,
  .spec-table td {
    padding: var(--space-1) var(--space-2);
  }
}

.tech-drawings img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey);
}

/* ===== Installation Steps ===== */
.install-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: var(--space-8) auto 0;
}

@media (max-width: 768px) {
  .install-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

.install-step {
  text-align: center;
  position: relative;
}

.install-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--font-size-lg);
  margin: 0 auto var(--space-3);
}

.install-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-3);
  color: var(--green);
}

.install-step__icon svg {
  width: 100%;
  height: 100%;
}

.install-step h4 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-1);
}

.install-step p {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Cost Breakdown Cards ===== */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

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

.cost-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cost-card__header {
  padding: var(--space-6);
  text-align: center;
}

.cost-card__header h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
  color: var(--white);
}

.cost-card__header .cost-card__total {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.cost-card__header--install {
  background: var(--navy);
}

.cost-card__header--annual {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.cost-card__items {
  padding: var(--space-4) var(--space-6) var(--space-6);
  list-style: none;
  margin: 0;
}

.cost-card__items li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--grey);
  font-size: var(--font-size-sm);
  color: var(--text-body);
}

.cost-card__items li:last-child {
  border-bottom: none;
}

.cost-card__items li span:last-child {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  white-space: nowrap;
}

.cost-card__items li.cost-highlight span {
  color: var(--green-dark);
  font-weight: 700;
}

/* ===== Product Gallery / Carousel ===== */
.product-gallery {
  max-width: 900px;
  margin: 0 auto;
}

.product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-4);
}

.product-gallery__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-gallery__main img.active {
  opacity: 1;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 55, 100, 0.7);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.product-gallery__nav:hover {
  background: var(--navy);
}

.product-gallery__nav--prev {
  left: var(--space-3);
}

.product-gallery__nav--next {
  right: var(--space-3);
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.product-gallery__thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.2s;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-gallery__thumb:hover {
  opacity: 0.8;
}

.product-gallery__thumb.active {
  border-color: var(--green);
  opacity: 1;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ===== PRODUCT SELECTOR ===== */
.selector-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  color: var(--text-body);
  position: relative;
  overflow: hidden;
}

.selector-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.selector-step.active {
  display: block;
}

.selector-step h3 {
  color: var(--text-heading);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.selector-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.selector-options .btn {
  justify-content: center;
  padding: var(--space-4);
  height: auto;
  white-space: normal;
  line-height: 1.4;
  border-width: 2px;
}

.selector-options .btn:hover {
  border-color: var(--primary-color);
  background-color: var(--background-alt);
  color: var(--primary-dark);
}

.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
  padding: 0;
  transition: color var(--transition-fast);
}

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

.selector-result {
  text-align: center;
}

.result-box {
  background: var(--background-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-top: var(--space-6);
}

.result-box h4 {
  font-size: var(--font-size-2xl);
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}

.result-box .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.result-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
/* --- Shop Coming Soon Modal --- */
.shop-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 36, 64, 0.85); /* var(--navy-deep) with opacity */
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.shop-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.shop-modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-spring);
  box-shadow: var(--shadow-xl);
}

.shop-modal-overlay.active .shop-modal-content {
  transform: translateY(0) scale(1);
}

.shop-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.shop-modal-close:hover {
  color: var(--danger);
}

.shop-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50%;
  margin-bottom: var(--space-6);
  box-shadow: 0 0 20px rgba(122, 185, 48, 0.2);
}

.shop-modal-content h2 {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-2xl);
}

.shop-modal-content p {
  color: var(--text-body);
  margin-bottom: var(--space-8);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.shop-modal-btn {
  width: 100%;
  justify-content: center;
}







