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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

/* Media Elements */
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Lists */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
}

h6 {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.6vw, 1rem);
}

/* Container */
[class*="-container"] {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Sections */
section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
}

/* Buttons */
[class*="-btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.8vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px; /* Touch target size */
}

[class*="-btn"]:active {
  transform: scale(0.98);
}

[class*="-btn"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

[class*="-btn-primary"] {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 87, 255, 0.1),
    0 2px 4px -1px rgba(0, 87, 255, 0.06);
}

[class*="-btn-primary"]:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 10px 15px -3px rgba(0, 87, 255, 0.2),
    0 4px 6px -2px rgba(0, 87, 255, 0.1);
  transform: translateY(-2px);
}

[class*="-btn-secondary"] {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

[class*="-btn-secondary"]:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

[class*="-btn-full"] {
  width: 100%;
}

@media (max-width: 768px) {
  [class*="-btn"] {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Header */
[class*="-main-header"] {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[class*="-main-header"].scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[class*="-main-nav"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
[class*="-logo"] {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

[class*="-logo"]:hover {
  opacity: 0.8;
}

[class*="-logo"] svg {
  color: var(--color-primary);
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
}

/* Navigation Menu */
[class*="-nav-menu"] {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

[class*="-nav-menu"] a {
  color: var(--color-text);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

[class*="-nav-menu"] a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

[class*="-nav-menu"] a:hover::after {
  width: 100%;
}

[class*="-nav-menu"] a:hover {
  color: var(--color-primary);
}

[class*="-nav-menu"] a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hamburger Menu */
[class*="-hamburger-menu"] {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

[class*="-hamburger-menu"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

[class*="-bar"] {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

[class*="-mobile-menu-overlay"] {
  display: none;
}

/* Cookie Banner */
[class*="-cookie-banner"] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: slideUp 0.4s ease-out;
}

[class*="-cookie-banner"].hidden {
  animation: slideDown 0.3s ease-in forwards;
}

[class*="-cookie-banner-text"] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2rem);
  color: #ffffff;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
}

[class*="-cookie-banner-text"] a {
  color: var(--color-primary-light);
  text-decoration: underline;
  font-weight: 500;
}

[class*="-cookie-banner-text"] a:hover {
  color: #ffffff;
}

[class*="-cookie-accept-btn"] {
  margin-left: 1rem;
  padding: 0.75rem 1.5rem !important;
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border: none !important;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  white-space: nowrap;
  min-height: 44px;
}

[class*="-cookie-accept-btn"]:hover {
  background-color: var(--color-primary-dark) !important;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Footer */
[class*="-main-footer"] {
  background-color: #111111;
  color: #ffffff;
  padding-top: clamp(3rem, 6vw, 5rem);
  margin-top: auto;
}

[class*="-footer-grid"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

[class*="-footer-column"] h4 {
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[class*="-footer-column"] ul li {
  margin-bottom: 0.75rem;
}

[class*="-footer-column"] a {
  color: #a1a1aa;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  font-size: clamp(0.9rem, 1.6vw, 0.95rem);
}

[class*="-footer-column"] a:hover {
  color: #ffffff;
  padding-left: 5px;
}

[class*="-footer-bottom"] {
  border-top: 1px solid #333333;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  text-align: center;
  color: #71717a;
  font-size: clamp(0.8rem, 1.4vw, 0.875rem);
}

/* Forms */
[class*="-form-group"] {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

[class*="-form-group"] label {
  display: block;
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.6vw, 0.95rem);
  color: var(--color-text);
}

[class*="-form-group"] input,
[class*="-form-group"] textarea,
[class*="-form-group"] select {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(0.875rem, 1.8vw, 1rem);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  background-color: var(--color-surface);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  min-height: 44px;
}

[class*="-form-group"] textarea {
  min-height: 120px;
  resize: vertical;
}

[class*="-form-group"] input:focus,
[class*="-form-group"] textarea:focus,
[class*="-form-group"] select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-background);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

[class*="-form-group"] input::placeholder,
[class*="-form-group"] textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Section Header */
[class*="-section-header"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

[class*="-section-header"] h2 {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

[class*="-section-header"] p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Tablet and Mobile Styles */
@media (max-width: 900px) {
  [class*="-hamburger-menu"] {
    display: flex;
  }

  [class*="-nav-menu"] {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--color-background);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1001;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s,
      opacity 0.4s;
  }

  [class*="-nav-menu"].active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s,
      opacity 0.4s;
  }

  [class*="-nav-menu"] a {
    font-size: 1.35rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }

  [class*="-nav-menu"] a::after {
    display: none;
  }

  [class*="-header-actions"] {
    display: none;
  }

  [class*="-mobile-menu-overlay"] {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
  }

  [class*="-mobile-menu-overlay"].active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s;
  }

  [class*="-hamburger-menu"].active [class*="-bar"]:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  [class*="-hamburger-menu"].active [class*="-bar"]:nth-child(2) {
    opacity: 0;
  }

  [class*="-hamburger-menu"].active [class*="-bar"]:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }

  [class*="-cookie-banner"] {
    padding: 1rem;
  }

  [class*="-cookie-banner-text"] {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0;
  }

  [class*="-cookie-accept-btn"] {
    margin-left: 0 !important;
    width: 100%;
    max-width: 300px;
  }

  [class*="-footer-grid"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  [class*="-container"] {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  [class*="-footer-grid"] {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  [class*="-footer-column"] {
    text-align: center;
  }

  [class*="-footer-column"] a:hover {
    padding-left: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  [class*="-btn"],
  [class*="-form-group"] input,
  [class*="-form-group"] textarea,
  [class*="-form-group"] select {
    border-width: 3px;
  }

  [class*="-main-header"] {
    border-bottom-width: 2px;
  }
}

/* Print Styles */
@media print {
  [class*="-main-header"],
  [class*="-main-footer"],
  [class*="-cookie-banner"],
  [class*="-btn"] {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}


/* Module: hero/v1 */
[class*="-hero-section"] {
  display: flex;
  align-items: center;
  background-color: var(--color-background);
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: clamp(500px, 70vh, 800px);
}

[class*="-hero-section"] [class*="-container"] {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-hero-content"] {
  max-width: 600px;
}

[class*="-hero-content"] h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

[class*="-hero-subtitle"] {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
  max-width: 90%;
}

[class*="-hero-cta"] {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: center;
}

[class*="-hero-cta"] [class*="-btn"] {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  white-space: nowrap;
  min-width: 140px;
  text-align: center;
}

[class*="-hero-image"] {
  position: relative;
  border-radius: var(--border-radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

[class*="-hero-image"] img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

[class*="-hero-image"]::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 100%;
  height: 100%;
  background: var(--color-primary-light);
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

/* Tablet Large - 1024px to 1199px */
@media (max-width: 1199px) {
  [class*="-hero-section"] [class*="-container"] {
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  [class*="-hero-content"] {
    max-width: 100%;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-hero-section"] {
    min-height: auto;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-hero-section"] [class*="-container"] {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 5vw, 3rem);
  }

  [class*="-hero-content"] {
    margin: 0 auto;
    max-width: 600px;
  }

  [class*="-hero-subtitle"] {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  [class*="-hero-cta"] {
    justify-content: center;
  }

  [class*="-hero-image"] {
    margin: 0 auto;
    max-width: 500px;
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-hero-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-hero-section"] [class*="-container"] {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  [class*="-hero-content"] h1 {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }

  [class*="-hero-subtitle"] {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
  }

  [class*="-hero-cta"] {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  [class*="-hero-cta"] [class*="-btn"] {
    width: 100%;
    max-width: 320px;
  }

  [class*="-hero-image"] {
    max-width: 100%;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-hero-section"] {
    padding: 2rem 0;
  }

  [class*="-hero-section"] [class*="-container"] {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  [class*="-hero-content"] h1 {
    font-size: 1.75rem;
  }

  [class*="-hero-subtitle"] {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  [class*="-hero-cta"] [class*="-btn"] {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    max-width: 100%;
  }

  [class*="-hero-image"]::before {
    filter: blur(40px);
    opacity: 0.4;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-hero-section"] {
    padding: 1.5rem 0;
  }

  [class*="-hero-content"] h1 {
    font-size: 1.5rem;
  }

  [class*="-hero-subtitle"] {
    font-size: 0.9rem;
  }
}


/* Module: solutions/v4 */
[class*="-solutions-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

[class*="-solutions-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Icon List Layout */
[class*="-solutions-icon-list-layout"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Content Side */
[class*="-solutions-icon-list-content"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[class*="-solutions-icon-list-content"] [class*="-section-header"] {
  text-align: left;
  margin: 0 0 clamp(2rem, 4vw, 2.5rem);
  max-width: 100%;
}

[class*="-solutions-icon-list-content"] [class*="-section-header"] h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  margin-top: 0;
  font-weight: 700;
  color: var(--color-text);
}

[class*="-solutions-icon-list-content"] [class*="-section-header"] p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Icon List */
[class*="-solutions-icon-list"] {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Icon List Item */
[class*="-solutions-icon-list-item"] {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 2.5vw, 1.5rem);
  transition: transform 0.3s ease;
}

[class*="-solutions-icon-list-item"]:hover {
  transform: translateX(5px);
}

/* Icon */
[class*="-solutions-icon-list-icon"] {
  flex-shrink: 0;
  width: clamp(44px, 7vw, 48px);
  height: clamp(44px, 7vw, 48px);
  border-radius: 50%;
  background-color: var(--color-surface, #f9fafb);
  color: var(--color-success, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
  transition: all 0.3s ease;
}

[class*="-solutions-icon-list-item"]:hover
  [class*="-solutions-icon-list-icon"] {
  background-color: var(--color-success, #10b981);
  color: #ffffff;
  border-color: var(--color-success, #10b981);
  transform: scale(1.1);
}

[class*="-solutions-icon-list-icon"] svg {
  width: clamp(22px, 4vw, 24px);
  height: clamp(22px, 4vw, 24px);
}

/* Text Content */
[class*="-solutions-icon-list-text"] h4 {
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
  margin-top: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
}

[class*="-solutions-icon-list-text"] p {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  margin: 0;
  line-height: 1.6;
}

/* Image Side */
[class*="-solutions-icon-list-image"] {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg, 16px);
}

[class*="-solutions-icon-list-image"] img {
  width: 100%;
  border-radius: var(--border-radius-lg, 16px);
  object-fit: cover;
  height: 100%;
  min-height: clamp(400px, 50vh, 600px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
}

[class*="-solutions-icon-list-layout"]:hover
  [class*="-solutions-icon-list-image"]
  img {
  transform: scale(1.02);
}

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-solutions-icon-list-layout"] {
    max-width: 1300px;
    gap: 5rem;
  }
}

/* Tablet Large - 1024px to 1199px */
@media (max-width: 1199px) {
  [class*="-solutions-icon-list-layout"] {
    gap: 3.5rem;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-solutions-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-solutions-icon-list-layout"] {
    gap: 3rem;
  }

  [class*="-solutions-icon-list"] {
    gap: 1.5rem;
  }
}

/* Mobile - 900px and below */
@media (max-width: 900px) {
  [class*="-solutions-icon-list-layout"] {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  [class*="-solutions-icon-list-image"] {
    order: -1;
    max-height: 400px;
  }

  [class*="-solutions-icon-list-image"] img {
    min-height: 350px;
  }

  [class*="-solutions-icon-list-content"] [class*="-section-header"] {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-solutions-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-solutions-icon-list-layout"] {
    gap: 2rem;
  }

  [class*="-solutions-icon-list-content"] [class*="-section-header"] {
    margin-bottom: 1.75rem;
  }

  [class*="-solutions-icon-list"] {
    gap: 1.25rem;
  }

  [class*="-solutions-icon-list-item"]:hover {
    transform: translateX(3px);
  }

  [class*="-solutions-icon-list-image"] {
    max-height: 350px;
  }

  [class*="-solutions-icon-list-image"] img {
    min-height: 300px;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-solutions-section"] {
    padding: 2rem 0;
  }

  [class*="-solutions-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-solutions-icon-list-layout"] {
    gap: 1.75rem;
  }

  [class*="-solutions-icon-list-content"] [class*="-section-header"] {
    margin-bottom: 1.5rem;
  }

  [class*="-solutions-icon-list-content"] [class*="-section-header"] h2 {
    font-size: 1.5rem;
  }

  [class*="-solutions-icon-list-content"] [class*="-section-header"] p {
    font-size: 0.95rem;
  }

  [class*="-solutions-icon-list"] {
    gap: 1.25rem;
  }

  [class*="-solutions-icon-list-item"] {
    gap: 1.25rem;
  }

  [class*="-solutions-icon-list-icon"] {
    width: 44px;
    height: 44px;
  }

  [class*="-solutions-icon-list-icon"] svg {
    width: 22px;
    height: 22px;
  }

  [class*="-solutions-icon-list-text"] h4 {
    font-size: 1.05rem;
    margin-bottom: 0.375rem;
  }

  [class*="-solutions-icon-list-text"] p {
    font-size: 0.9rem;
  }

  [class*="-solutions-icon-list-image"] {
    max-height: 300px;
    border-radius: var(--border-radius-md, 12px);
  }

  [class*="-solutions-icon-list-image"] img {
    min-height: 250px;
    border-radius: var(--border-radius-md, 12px);
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-solutions-section"] {
    padding: 1.5rem 0;
  }

  [class*="-solutions-icon-list-content"] [class*="-section-header"] h2 {
    font-size: 1.35rem;
  }

  [class*="-solutions-icon-list-item"] {
    gap: 1rem;
  }

  [class*="-solutions-icon-list-icon"] {
    width: 40px;
    height: 40px;
  }

  [class*="-solutions-icon-list-icon"] svg {
    width: 20px;
    height: 20px;
  }

  [class*="-solutions-icon-list-text"] h4 {
    font-size: 1rem;
  }

  [class*="-solutions-icon-list-text"] p {
    font-size: 0.85rem;
  }

  [class*="-solutions-icon-list-image"] {
    max-height: 250px;
  }

  [class*="-solutions-icon-list-image"] img {
    min-height: 220px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-solutions-icon-list-item"],
  [class*="-solutions-icon-list-icon"],
  [class*="-solutions-icon-list-image"] img {
    transition: none !important;
  }

  [class*="-solutions-icon-list-item"]:hover {
    transform: none;
  }

  [class*="-solutions-icon-list-item"]:hover
    [class*="-solutions-icon-list-icon"] {
    transform: none;
  }

  [class*="-solutions-icon-list-layout"]:hover
    [class*="-solutions-icon-list-image"]
    img {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-solutions-icon-list-icon"] {
    border-width: 3px;
  }

  [class*="-solutions-icon-list-image"] {
    border: 2px solid var(--color-border, #000);
  }
}


/* Module: how-it-works/v4 */
[class*="-how-it-works-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

[class*="-how-it-works-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-how-it-works-section"] [class*="-section-header"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

[class*="-how-it-works-section"] [class*="-section-header"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--color-text);
}

[class*="-how-it-works-section"] [class*="-section-header"] p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Steps Grid 3 Column */
[class*="-steps-grid-3col"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

[class*="-step-card-v4"] {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2rem);
  background: var(--color-surface, #ffffff);
  border-radius: var(--border-radius-lg, 16px);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

[class*="-step-card-v4"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    135deg,
    var(--color-primary-light, rgba(59, 130, 246, 0.05)) 0%,
    transparent 100%
  );
  transition: height 0.3s ease;
  z-index: 0;
}

[class*="-step-card-v4"]:hover {
  border-color: var(--color-primary-light, rgba(59, 130, 246, 0.3));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

[class*="-step-card-v4"]:hover::before {
  height: 100%;
}

[class*="-step-icon-v4"] {
  width: clamp(70px, 12vw, 80px);
  height: clamp(70px, 12vw, 80px);
  margin: 0 auto clamp(1.25rem, 2vw, 1.5rem);
  background: var(--color-surface, #f9fafb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

[class*="-step-card-v4"]:hover [class*="-step-icon-v4"] {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

[class*="-step-icon-v4"] svg {
  width: clamp(32px, 6vw, 40px);
  height: clamp(32px, 6vw, 40px);
  transition: transform 0.3s ease;
}

[class*="-step-card-v4"]:hover [class*="-step-icon-v4"] svg {
  transform: scale(1.1);
}

[class*="-step-card-v4"] h3 {
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

[class*="-step-card-v4"] p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-steps-grid-3col"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Large - 1024px to 1199px */
@media (max-width: 1199px) {
  [class*="-steps-grid-3col"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-how-it-works-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-how-it-works-section"] [class*="-section-header"] {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  [class*="-steps-grid-3col"] {
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  [class*="-step-card-v4"] {
    padding: clamp(1.5rem, 2.5vw, 1.75rem);
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-how-it-works-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-how-it-works-section"] [class*="-section-header"] {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  }

  [class*="-steps-grid-3col"] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 600px;
  }

  [class*="-step-card-v4"] {
    padding: 1.75rem;
  }

  [class*="-step-card-v4"]:hover {
    transform: translateY(-3px);
  }

  [class*="-step-icon-v4"] {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  [class*="-step-icon-v4"] svg {
    width: 34px;
    height: 34px;
  }

  [class*="-step-card-v4"]:hover [class*="-step-icon-v4"] {
    transform: scale(1.08);
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-how-it-works-section"] {
    padding: 2rem 0;
  }

  [class*="-how-it-works-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-how-it-works-section"] [class*="-section-header"] {
    margin-bottom: 1.5rem;
  }

  [class*="-how-it-works-section"] [class*="-section-header"] h2 {
    font-size: 1.75rem;
  }

  [class*="-how-it-works-section"] [class*="-section-header"] p {
    font-size: 0.95rem;
  }

  [class*="-steps-grid-3col"] {
    gap: 1rem;
  }

  [class*="-step-card-v4"] {
    padding: 1.5rem;
    border-radius: var(--border-radius-md, 12px);
  }

  [class*="-step-icon-v4"] {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  [class*="-step-icon-v4"] svg {
    width: 30px;
    height: 30px;
  }

  [class*="-step-card-v4"] h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  [class*="-step-card-v4"] p {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-how-it-works-section"] {
    padding: 1.5rem 0;
  }

  [class*="-how-it-works-section"] [class*="-section-header"] h2 {
    font-size: 1.5rem;
  }

  [class*="-steps-grid-3col"] {
    gap: 0.875rem;
  }

  [class*="-step-card-v4"] {
    padding: 1.25rem;
  }

  [class*="-step-icon-v4"] {
    width: 56px;
    height: 56px;
  }

  [class*="-step-icon-v4"] svg {
    width: 28px;
    height: 28px;
  }

  [class*="-step-card-v4"] h3 {
    font-size: 1rem;
  }

  [class*="-step-card-v4"] p {
    font-size: 0.85rem;
  }
}

/* Tablet Landscape specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  [class*="-steps-grid-3col"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens - 3 column layout */
@media (min-width: 900px) {
  [class*="-steps-grid-3col"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-step-card-v4"],
  [class*="-step-card-v4"]::before,
  [class*="-step-icon-v4"],
  [class*="-step-icon-v4"] svg {
    transition: none !important;
  }

  [class*="-step-card-v4"]:hover {
    transform: none;
  }

  [class*="-step-card-v4"]:hover [class*="-step-icon-v4"] {
    transform: none;
  }

  [class*="-step-card-v4"]:hover [class*="-step-icon-v4"] svg {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-step-card-v4"] {
    border: 2px solid var(--color-border, #000);
  }

  [class*="-step-icon-v4"] {
    border: 2px solid var(--color-primary);
  }
}


/* Module: audience/v3 */
[class*="-for-whom-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

[class*="-for-whom-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-for-whom-section"] [class*="-section-header"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

[class*="-for-whom-section"] [class*="-section-header"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--color-text);
}

[class*="-for-whom-section"] [class*="-section-header"] p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

[class*="-tabs-container"] {
  max-width: 1000px;
  margin: 0 auto;
}

/* Tabs Navigation */
[class*="-audience-section"] [class*="-tabs-nav"],
[class*="-for-whom-section"] [class*="-tabs-nav"] {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--color-border, rgba(0, 0, 0, 0.1));
  padding-bottom: 0;
}

[class*="-audience-section"] [class*="-tab-link"],
[class*="-for-whom-section"] [class*="-tab-link"] {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  margin-bottom: -2px;
}

[class*="-audience-section"] [class*="-tab-link"]:hover,
[class*="-for-whom-section"] [class*="-tab-link"]:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light, rgba(59, 130, 246, 0.05));
}

[class*="-audience-section"] [class*="-tab-link"].active,
[class*="-for-whom-section"] [class*="-tab-link"].active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background-color: transparent;
}

[class*="-audience-section"] [class*="-tab-link"] span,
[class*="-for-whom-section"] [class*="-tab-link"] span {
  position: relative;
  z-index: 1;
}

/* Tabs Content */
[class*="-audience-section"] [class*="-tabs-content"],
[class*="-for-whom-section"] [class*="-tabs-content"] {
  position: relative;
  min-height: 300px;
}

[class*="-audience-section"] [class*="-tab-pane"],
[class*="-for-whom-section"] [class*="-tab-pane"] {
  display: none;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-surface, #ffffff);
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  animation: fadeIn 0.4s ease-in-out;
}

[class*="-audience-section"] [class*="-tab-pane"].active,
[class*="-for-whom-section"] [class*="-tab-pane"].active {
  display: block;
}

[class*="-audience-section"] [class*="-tab-pane"] h3,
[class*="-for-whom-section"] [class*="-tab-pane"] h3 {
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
}

[class*="-audience-section"] [class*="-tab-pane"] p,
[class*="-for-whom-section"] [class*="-tab-pane"] p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

[class*="-audience-section"] [class*="-tab-pane"] p:last-child,
[class*="-for-whom-section"] [class*="-tab-pane"] p:last-child {
  margin-bottom: 0;
}

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

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-tabs-container"] {
    max-width: 1100px;
  }

  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    max-width: 950px;
  }
}

/* Tablet Large - 1024px to 1199px */
@media (max-width: 1199px) {
  [class*="-tabs-container"] {
    max-width: 900px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-for-whom-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-for-whom-section"] [class*="-section-header"] {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  [class*="-audience-section"] [class*="-tabs-nav"],
  [class*="-for-whom-section"] [class*="-tabs-nav"] {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  }

  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-for-whom-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-for-whom-section"] [class*="-section-header"] {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  }

  [class*="-audience-section"] [class*="-tabs-nav"],
  [class*="-for-whom-section"] [class*="-tabs-nav"] {
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  [class*="-audience-section"] [class*="-tabs-nav"]::-webkit-scrollbar,
  [class*="-for-whom-section"] [class*="-tabs-nav"]::-webkit-scrollbar {
    height: 4px;
  }

  [class*="-audience-section"] [class*="-tabs-nav"]::-webkit-scrollbar-thumb,
  [class*="-for-whom-section"] [class*="-tabs-nav"]::-webkit-scrollbar-thumb {
    background-color: var(--color-primary-light, rgba(59, 130, 246, 0.3));
    border-radius: 4px;
  }

  [class*="-audience-section"] [class*="-tab-link"],
  [class*="-for-whom-section"] [class*="-tab-link"] {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    padding: 2rem 1.5rem;
    text-align: left;
  }

  [class*="-audience-section"] [class*="-tab-pane"] h3,
  [class*="-for-whom-section"] [class*="-tab-pane"] h3 {
    text-align: center;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-for-whom-section"] {
    padding: 2rem 0;
  }

  [class*="-for-whom-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-for-whom-section"] [class*="-section-header"] {
    margin-bottom: 1.5rem;
  }

  [class*="-for-whom-section"] [class*="-section-header"] h2 {
    font-size: 1.75rem;
  }

  [class*="-for-whom-section"] [class*="-section-header"] p {
    font-size: 0.95rem;
  }

  [class*="-audience-section"] [class*="-tabs-nav"],
  [class*="-for-whom-section"] [class*="-tabs-nav"] {
    margin-bottom: 1.5rem;
    gap: 0.375rem;
  }

  [class*="-audience-section"] [class*="-tab-link"],
  [class*="-for-whom-section"] [class*="-tab-link"] {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom-width: 2px;
  }

  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    padding: 1.75rem 1.25rem;
    border-radius: var(--border-radius-md, 12px);
  }

  [class*="-audience-section"] [class*="-tab-pane"] h3,
  [class*="-for-whom-section"] [class*="-tab-pane"] h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  [class*="-audience-section"] [class*="-tab-pane"] p,
  [class*="-for-whom-section"] [class*="-tab-pane"] p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-for-whom-section"] {
    padding: 1.5rem 0;
  }

  [class*="-for-whom-section"] [class*="-section-header"] h2 {
    font-size: 1.5rem;
  }

  [class*="-audience-section"] [class*="-tab-link"],
  [class*="-for-whom-section"] [class*="-tab-link"] {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }

  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    padding: 1.5rem 1rem;
  }

  [class*="-audience-section"] [class*="-tab-pane"] h3,
  [class*="-for-whom-section"] [class*="-tab-pane"] h3 {
    font-size: 1.15rem;
  }

  [class*="-audience-section"] [class*="-tab-pane"] p,
  [class*="-for-whom-section"] [class*="-tab-pane"] p {
    font-size: 0.85rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-audience-section"] [class*="-tab-link"],
  [class*="-for-whom-section"] [class*="-tab-link"],
  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    transition: none !important;
    animation: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-audience-section"] [class*="-tab-link"].active,
  [class*="-for-whom-section"] [class*="-tab-link"].active {
    border-bottom-width: 4px;
  }

  [class*="-audience-section"] [class*="-tab-pane"],
  [class*="-for-whom-section"] [class*="-tab-pane"] {
    border: 2px solid var(--color-border, #000);
  }
}


/* Module: pricing/v4 */
[class*="-pricing-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

[class*="-pricing-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-pricing-section"] [class*="-section-header"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

[class*="-pricing-section"] [class*="-section-header"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--color-text);
}

[class*="-pricing-section"] [class*="-section-header"] p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Table Wrapper */
[class*="-pricing-table-wrapper"] {
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light, rgba(59, 130, 246, 0.3))
    transparent;
}

[class*="-pricing-table-wrapper"]::-webkit-scrollbar {
  height: 8px;
}

[class*="-pricing-table-wrapper"]::-webkit-scrollbar-track {
  background: var(--color-surface, #f9fafb);
  border-radius: 0 0 var(--border-radius-lg, 16px) var(--border-radius-lg, 16px);
}

[class*="-pricing-table-wrapper"]::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-light, rgba(59, 130, 246, 0.3));
  border-radius: 10px;
  transition: background-color 0.2s;
}

[class*="-pricing-table-wrapper"]::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary, #3b82f6);
}

/* Table */
[class*="-pricing-table"] {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

[class*="-pricing-table"] th,
[class*="-pricing-table"] td {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  text-align: center;
  border-bottom: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: background-color 0.2s ease;
}

[class*="-pricing-table"] th:first-child,
[class*="-pricing-table"] td:first-child {
  text-align: left;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  width: 30%;
  color: var(--color-text);
}

[class*="-pricing-table"] thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

[class*="-pricing-table"] thead th {
  vertical-align: bottom;
  background: var(--color-surface, #f9fafb);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2vw, 1.5rem);
  border-bottom: 2px solid var(--color-border, rgba(0, 0, 0, 0.1));
}

[class*="-pricing-table"] thead th:nth-child(3) {
  background: linear-gradient(
    135deg,
    var(--color-primary-light, rgba(59, 130, 246, 0.1)) 0%,
    var(--color-surface, #f9fafb) 100%
  );
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}

[class*="-pricing-table"] h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: var(--color-text);
  font-weight: 700;
}

[class*="-pricing-table"] [class*="-price"] {
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
  margin: clamp(0.5rem, 1vw, 0.75rem) 0 0;
  font-weight: 700;
  color: var(--color-primary);
}

[class*="-pricing-table"] tbody tr {
  transition: background-color 0.2s ease;
}

[class*="-pricing-table"] tbody tr:hover {
  background-color: var(--color-surface, #f9fafb);
}

[class*="-pricing-table"] tbody tr:hover td:nth-child(3) {
  background-color: var(--color-primary-light, rgba(59, 130, 246, 0.05));
}

[class*="-pricing-table"] tbody td:nth-child(3) {
  background-color: rgba(59, 130, 246, 0.02);
}

[class*="-pricing-table"] tbody td {
  color: var(--color-text-muted);
}

[class*="-pricing-table"] tfoot {
  background: var(--color-surface, #f9fafb);
}

[class*="-pricing-table"] tfoot td {
  border: none;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2vw, 1.5rem);
  border-top: 2px solid var(--color-border, rgba(0, 0, 0, 0.1));
}

[class*="-pricing-table"] tfoot [class*="-btn"] {
  padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.5rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-pricing-table"] {
    min-width: 900px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-pricing-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-pricing-section"] [class*="-section-header"] {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  [class*="-pricing-table"] {
    min-width: 750px;
  }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
  [class*="-pricing-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-pricing-section"] [class*="-section-header"] {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  }

  [class*="-pricing-table-wrapper"] {
    border-radius: var(--border-radius-md, 12px);
  }

  [class*="-pricing-table"] {
    min-width: 700px;
  }

  [class*="-pricing-table"] th,
  [class*="-pricing-table"] td {
    padding: 1rem 0.875rem;
    font-size: 0.9rem;
  }

  [class*="-pricing-table"] th:first-child,
  [class*="-pricing-table"] td:first-child {
    padding-left: 1.25rem;
  }

  [class*="-pricing-table"] thead th {
    padding: 1.25rem 0.875rem;
  }

  [class*="-pricing-table"] tfoot td {
    padding: 1.25rem 0.875rem;
  }

  [class*="-pricing-table"] tfoot [class*="-btn"] {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-pricing-section"] {
    padding: 2rem 0;
  }

  [class*="-pricing-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-pricing-section"] [class*="-section-header"] {
    margin-bottom: 1.5rem;
  }

  [class*="-pricing-section"] [class*="-section-header"] h2 {
    font-size: 1.75rem;
  }

  [class*="-pricing-section"] [class*="-section-header"] p {
    font-size: 0.95rem;
  }

  /* Mobile: Convert table to cards */
  [class*="-pricing-table-wrapper"] {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  [class*="-pricing-table"] {
    display: block;
    min-width: 0;
  }

  [class*="-pricing-table"] thead {
    display: none;
  }

  [class*="-pricing-table"] tbody,
  [class*="-pricing-table"] tfoot {
    display: block;
  }

  [class*="-pricing-table"] tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: var(--border-radius-md, 12px);
    border: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  [class*="-pricing-table"] tbody td {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
    border-radius: var(--border-radius, 8px);
    background: var(--color-surface, #f9fafb);
  }

  [class*="-pricing-table"] tbody td:first-child {
    grid-column: 1 / -1;
    text-align: center;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--color-primary-light, rgba(59, 130, 246, 0.1));
    color: var(--color-primary);
    border-color: var(--color-primary-light, rgba(59, 130, 246, 0.3));
  }

  [class*="-pricing-table"] tbody td::before {
    content: "Plan " counter(plan);
    counter-increment: plan;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  [class*="-pricing-table"] tbody td:first-child::before {
    display: none;
  }

  [class*="-pricing-table"] tfoot {
    display: none;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-pricing-section"] {
    padding: 1.5rem 0;
  }

  [class*="-pricing-section"] [class*="-section-header"] h2 {
    font-size: 1.5rem;
  }

  [class*="-pricing-table"] tbody tr {
    padding: 1rem;
    gap: 0.5rem;
  }

  [class*="-pricing-table"] tbody td {
    padding: 0.625rem;
    font-size: 0.85rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-pricing-table"] th,
  [class*="-pricing-table"] td,
  [class*="-pricing-table"] tbody tr,
  [class*="-pricing-table"] tfoot [class*="-btn"],
  [class*="-pricing-table-wrapper"]::-webkit-scrollbar-thumb {
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-pricing-table"] {
    border: 2px solid var(--color-border, #000);
  }

  [class*="-pricing-table"] th,
  [class*="-pricing-table"] td {
    border-width: 2px;
  }
}


/* Module: testimonials/v5 */
[class*="-testimonials-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

[class*="-testimonials-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-testimonials-section"] [class*="-section-header"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

[class*="-testimonials-section"] [class*="-section-header"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  margin-top: 0;
  font-weight: 700;
  color: var(--color-text);
}

[class*="-testimonials-section"] [class*="-section-header"] p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Grid */
[class*="-testimonials-section"] [class*="-testimonials-grid"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Card Rated */
[class*="-testimonial-card-rated"] {
  background: #ffffff;
  padding: clamp(1.75rem, 3.5vw, 2rem);
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

[class*="-testimonial-card-rated"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: var(--color-primary-light, rgba(59, 130, 246, 0.3));
}

/* Testimonial Rating */
[class*="-testimonial-rating"] {
  color: var(--color-secondary, #fbbf24);
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: clamp(1px, 0.3vw, 2px);
  display: flex;
  gap: clamp(2px, 0.5vw, 3px);
  align-items: center;
}

[class*="-testimonial-rating"] span {
  display: inline-block;
  line-height: 1;
  transition: transform 0.2s ease;
}

[class*="-testimonial-card-rated"]:hover [class*="-testimonial-rating"] span {
  transform: scale(1.1);
}

[class*="-testimonial-card-rated"]:hover
  [class*="-testimonial-rating"]
  span:nth-child(1) {
  transition-delay: 0s;
}

[class*="-testimonial-card-rated"]:hover
  [class*="-testimonial-rating"]
  span:nth-child(2) {
  transition-delay: 0.05s;
}

[class*="-testimonial-card-rated"]:hover
  [class*="-testimonial-rating"]
  span:nth-child(3) {
  transition-delay: 0.1s;
}

[class*="-testimonial-card-rated"]:hover
  [class*="-testimonial-rating"]
  span:nth-child(4) {
  transition-delay: 0.15s;
}

[class*="-testimonial-card-rated"]:hover
  [class*="-testimonial-rating"]
  span:nth-child(5) {
  transition-delay: 0.2s;
}

/* Blockquote */
[class*="-testimonial-card-rated"] blockquote {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
  flex: 1;
}

[class*="-testimonial-card-rated"] blockquote p {
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

/* Footer */
[class*="-testimonial-card-rated"] footer {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.5vw, 0.375rem);
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
}

[class*="-testimonial-card-rated"] cite {
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.625rem);
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  color: var(--color-text);
}

[class*="-testimonial-card-rated"] cite::before {
  content: "";
  display: block;
  width: clamp(24px, 5vw, 30px);
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
  transition: width 0.3s ease;
}

[class*="-testimonial-card-rated"]:hover cite::before {
  width: clamp(32px, 6vw, 40px);
}

[class*="-testimonial-card-rated"] span {
  font-size: clamp(0.85rem, 1.4vw, 0.9rem);
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-testimonials-section"] [class*="-testimonials-grid"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Large - 1024px to 1199px */
@media (max-width: 1199px) {
  [class*="-testimonials-section"] [class*="-testimonials-grid"] {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-testimonials-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-testimonials-section"] [class*="-section-header"] {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  [class*="-testimonials-section"] [class*="-testimonials-grid"] {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  [class*="-testimonial-card-rated"] {
    padding: clamp(1.5rem, 3vw, 1.75rem);
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-testimonials-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-testimonials-section"] [class*="-section-header"] {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  }

  [class*="-testimonials-section"] [class*="-testimonials-grid"] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
  }

  [class*="-testimonial-card-rated"] {
    padding: 1.75rem;
  }

  [class*="-testimonial-card-rated"]:hover {
    transform: translateY(-3px);
  }

  [class*="-testimonial-rating"] {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-testimonials-section"] {
    padding: 2rem 0;
  }

  [class*="-testimonials-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-testimonials-section"] [class*="-section-header"] {
    margin-bottom: 1.5rem;
  }

  [class*="-testimonials-section"] [class*="-section-header"] h2 {
    font-size: 1.75rem;
  }

  [class*="-testimonials-section"] [class*="-section-header"] p {
    font-size: 0.95rem;
  }

  [class*="-testimonials-section"] [class*="-testimonials-grid"] {
    gap: 1.25rem;
  }

  [class*="-testimonial-card-rated"] {
    padding: 1.5rem;
    border-radius: var(--border-radius-md, 12px);
  }

  [class*="-testimonial-rating"] {
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    gap: 2px;
  }

  [class*="-testimonial-card-rated"] blockquote {
    margin-bottom: 1.25rem;
  }

  [class*="-testimonial-card-rated"] blockquote p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  [class*="-testimonial-card-rated"] footer {
    padding-top: 1rem;
  }

  [class*="-testimonial-card-rated"] cite {
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  [class*="-testimonial-card-rated"] cite::before {
    width: 24px;
  }

  [class*="-testimonial-card-rated"]:hover cite::before {
    width: 30px;
  }

  [class*="-testimonial-card-rated"] footer span {
    font-size: 0.85rem;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-testimonials-section"] {
    padding: 1.5rem 0;
  }

  [class*="-testimonials-section"] [class*="-section-header"] h2 {
    font-size: 1.5rem;
  }

  [class*="-testimonials-section"] [class*="-testimonials-grid"] {
    gap: 1rem;
  }

  [class*="-testimonial-card-rated"] {
    padding: 1.25rem;
  }

  [class*="-testimonial-rating"] {
    font-size: 1rem;
  }

  [class*="-testimonial-card-rated"] blockquote p {
    font-size: 0.9rem;
  }

  [class*="-testimonial-card-rated"] cite {
    font-size: 0.9rem;
  }

  [class*="-testimonial-card-rated"] cite::before {
    width: 20px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-testimonial-card-rated"],
  [class*="-testimonial-rating"] span,
  [class*="-testimonial-card-rated"] cite::before {
    transition: none !important;
  }

  [class*="-testimonial-card-rated"]:hover {
    transform: none;
  }

  [class*="-testimonial-card-rated"]:hover [class*="-testimonial-rating"] span {
    transform: none;
  }

  [class*="-testimonial-card-rated"]:hover cite::before {
    width: clamp(24px, 5vw, 30px);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-testimonial-card-rated"] {
    border-width: 3px;
  }

  [class*="-testimonial-card-rated"] footer {
    border-top-width: 3px;
  }

  [class*="-testimonial-rating"] {
    text-shadow: 0 0 1px currentColor;
  }
}


/* Module: faq/v4 */
[class*="-faq-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

[class*="-faq-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-faq-section"] [class*="-section-header"] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

[class*="-faq-section"] [class*="-section-header"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--color-text);
}

[class*="-faq-section"] [class*="-section-header"] p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Categories */
[class*="-faq-categories"] {
  max-width: 950px;
  margin: 0 auto;
}

[class*="-faq-category"] {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

[class*="-faq-category"]:last-child {
  margin-bottom: 0;
}

[class*="-faq-category-title"] {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(0.375rem, 1vw, 0.5rem);
  border-bottom: 2px solid var(--color-border, rgba(0, 0, 0, 0.1));
  display: inline-block;
  color: var(--color-text);
  font-weight: 700;
  position: relative;
}

[class*="-faq-category-title"]::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

[class*="-faq-category"]:hover [class*="-faq-category-title"]::after {
  width: 100%;
}

/* Accordion in Categories */
[class*="-faq-category"] [class*="-accordion"] {
  border-top: none;
}

[class*="-faq-category"] [class*="-accordion-item"] {
  border-bottom: 1px solid var(--color-border, rgba(0, 0, 0, 0.1));
  transition: background-color 0.2s ease;
}

[class*="-faq-category"] [class*="-accordion-item"]:hover {
  background-color: var(--color-surface, rgba(0, 0, 0, 0.02));
}

[class*="-faq-category"] [class*="-accordion-item"].active {
  background-color: var(--color-primary-light, rgba(59, 130, 246, 0.05));
}

[class*="-faq-category"] [class*="-accordion-item"]:first-child {
  border-top: 1px solid var(--color-border, rgba(0, 0, 0, 0.1));
}

[class*="-faq-category"] [class*="-accordion-header"] {
  width: 100%;
  padding: clamp(1.125rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1rem);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  cursor: pointer;
  text-align: left;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
  line-height: 1.5;
}

[class*="-faq-category"] [class*="-accordion-header"] span {
  flex: 1;
  padding-right: 0.5rem;
}

[class*="-faq-category"] [class*="-accordion-header"]:hover {
  color: var(--color-primary);
}

[class*="-faq-category"]
  [class*="-accordion-item"].active
  [class*="-accordion-header"] {
  color: var(--color-primary);
}

[class*="-faq-category"] [class*="-accordion-icon"] {
  transition: transform 0.3s ease;
  min-width: clamp(20px, 3vw, 24px);
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
  flex-shrink: 0;
  color: var(--color-primary);
}

[class*="-faq-category"]
  [class*="-accordion-item"].active
  [class*="-accordion-icon"] {
  transform: rotate(180deg);
}

[class*="-faq-category"] [class*="-accordion-content"] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[class*="-faq-category"] [class*="-accordion-content"] p {
  padding: 0 clamp(0.5rem, 2vw, 1rem) clamp(1.125rem, 2vw, 1.5rem);
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  line-height: 1.7;
}

[class*="-faq-category"]
  [class*="-accordion-item"].active
  [class*="-accordion-content"] {
  max-height: 800px;
}

/* FAQ Link/CTA */
[class*="-faq-link"] {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3rem);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

[class*="-faq-link"] p {
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}

[class*="-faq-link"] a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

[class*="-faq-link"] a:hover {
  color: var(--color-primary-dark, var(--color-primary));
  text-decoration: underline;
}

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-faq-categories"] {
    max-width: 1000px;
  }
}

/* Tablet Large - 1024px to 1199px */
@media (max-width: 1199px) {
  [class*="-faq-categories"] {
    max-width: 900px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-faq-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  [class*="-faq-section"] [class*="-section-header"] {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  [class*="-faq-categories"] {
    max-width: 100%;
  }

  [class*="-faq-category"] {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-faq-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-faq-section"] [class*="-section-header"] {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  }

  [class*="-faq-category"] {
    margin-bottom: 2.5rem;
  }

  [class*="-faq-category-title"] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.375rem;
    display: block;
  }

  [class*="-faq-category"] [class*="-accordion-header"] {
    padding: 1rem 0.5rem;
  }

  [class*="-faq-category"] [class*="-accordion-content"] p {
    padding: 0 0.5rem 1rem;
  }

  [class*="-faq-link"] {
    margin-top: 2.5rem;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-faq-section"] {
    padding: 2rem 0;
  }

  [class*="-faq-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-faq-section"] [class*="-section-header"] {
    margin-bottom: 1.5rem;
  }

  [class*="-faq-section"] [class*="-section-header"] h2 {
    font-size: 1.75rem;
  }

  [class*="-faq-section"] [class*="-section-header"] p {
    font-size: 0.95rem;
  }

  [class*="-faq-category"] {
    margin-bottom: 2rem;
  }

  [class*="-faq-category-title"] {
    font-size: 1.15rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.325rem;
  }

  [class*="-faq-category"] [class*="-accordion-header"] {
    padding: 0.875rem 0.25rem;
    font-size: 0.95rem;
  }

  [class*="-faq-category"] [class*="-accordion-icon"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  [class*="-faq-category"] [class*="-accordion-content"] p {
    padding: 0 0.25rem 0.875rem;
    font-size: 0.9rem;
  }

  [class*="-faq-link"] {
    margin-top: 2rem;
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-faq-section"] {
    padding: 1.5rem 0;
  }

  [class*="-faq-section"] [class*="-section-header"] h2 {
    font-size: 1.5rem;
  }

  [class*="-faq-category"] {
    margin-bottom: 1.75rem;
  }

  [class*="-faq-category-title"] {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  [class*="-faq-category"] [class*="-accordion-header"] {
    padding: 0.75rem 0.25rem;
    font-size: 0.9rem;
  }

  [class*="-faq-category"] [class*="-accordion-icon"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  [class*="-faq-category"] [class*="-accordion-content"] p {
    padding: 0 0.25rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* Print styles */
@media print {
  [class*="-faq-category"] {
    break-inside: avoid;
    margin-bottom: 2rem;
  }

  [class*="-faq-category-title"] {
    border-bottom-width: 1px;
  }

  [class*="-faq-category"] [class*="-accordion-item"] {
    border: none;
    padding: 0.5rem 0;
  }

  [class*="-faq-link"] {
    display: none;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-faq-category-title"]::after,
  [class*="-faq-category"] [class*="-accordion-item"],
  [class*="-faq-category"] [class*="-accordion-header"],
  [class*="-faq-category"] [class*="-accordion-icon"],
  [class*="-faq-category"] [class*="-accordion-content"],
  [class*="-faq-link"] a {
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-faq-category-title"] {
    border-bottom-width: 3px;
  }

  [class*="-faq-category"] [class*="-accordion-item"] {
    border-bottom-width: 2px;
  }

  [class*="-faq-category"] [class*="-accordion-item"]:first-child {
    border-top-width: 2px;
  }
}

/* Focus styles for accessibility */
[class*="-faq-category"] [class*="-accordion-header"]:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* Module: register_cta/v2 */
[class*="-cta-simple-section"] {
  background-color: var(--color-surface, #f9fafb);
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}

[class*="-cta-simple-section"] [class*="-container"] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* CTA Simple Content */
[class*="-cta-simple-content"] {
  max-width: 750px;
  margin: 0 auto;
}

[class*="-cta-simple-content"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  margin-top: 0;
  font-weight: 700;
  color: var(--color-text);
}

[class*="-cta-simple-content"] > p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

/* CTA Simple Form */
[class*="-cta-simple-form"] {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

[class*="-cta-simple-form"] input[type="email"] {
  flex: 1;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--border-radius, 8px);
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  transition: all 0.3s ease;
  background: #ffffff;
  min-width: 0;
}

[class*="-cta-simple-form"] input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

[class*="-cta-simple-form"] input[type="email"]::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

[class*="-cta-simple-form"] [class*="-btn"] {
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

[class*="-cta-simple-form"] [class*="-btn"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* CTA Simple Legal */
[class*="-cta-simple-legal"] {
  font-size: clamp(0.8rem, 1.4vw, 0.85rem);
  color: var(--color-text-muted);
  margin-top: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

[class*="-cta-simple-legal"] a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

[class*="-cta-simple-legal"] a:hover {
  color: var(--color-primary-dark, var(--color-primary));
}

/* Desktop Large - 1200px and above */
@media (min-width: 1200px) {
  [class*="-cta-simple-content"] {
    max-width: 800px;
  }

  [class*="-cta-simple-form"] {
    max-width: 600px;
  }

  [class*="-cta-simple-legal"] {
    max-width: 600px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  [class*="-cta-simple-section"] {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

/* Mobile Large - 600px to 767px */
@media (max-width: 767px) {
  [class*="-cta-simple-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

/* Mobile - 600px and below */
@media (max-width: 600px) {
  [class*="-cta-simple-form"] {
    flex-direction: column;
    max-width: 100%;
    gap: 0.875rem;
  }

  [class*="-cta-simple-form"] input[type="email"] {
    width: 100%;
  }

  [class*="-cta-simple-form"] [class*="-btn"] {
    width: 100%;
  }

  [class*="-cta-simple-form"] [class*="-btn"]:hover {
    transform: none;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-cta-simple-section"] {
    padding: 2rem 0;
  }

  [class*="-cta-simple-section"] [class*="-container"] {
    padding: 0 1rem;
  }

  [class*="-cta-simple-content"] h2 {
    font-size: 1.75rem;
  }

  [class*="-cta-simple-content"] > p {
    font-size: 0.95rem;
  }

  [class*="-cta-simple-form"] {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  [class*="-cta-simple-form"] input[type="email"] {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  [class*="-cta-simple-form"] [class*="-btn"] {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  [class*="-cta-simple-legal"] {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}

/* Extra Small Mobile - below 375px */
@media (max-width: 374px) {
  [class*="-cta-simple-section"] {
    padding: 1.5rem 0;
  }

  [class*="-cta-simple-content"] h2 {
    font-size: 1.5rem;
  }

  [class*="-cta-simple-form"] input[type="email"] {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  [class*="-cta-simple-form"] [class*="-btn"] {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  [class*="-cta-simple-legal"] {
    font-size: 0.75rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [class*="-cta-simple-form"] input[type="email"],
  [class*="-cta-simple-form"] [class*="-btn"],
  [class*="-cta-simple-legal"] a {
    transition: none !important;
  }

  [class*="-cta-simple-form"] [class*="-btn"]:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  [class*="-cta-simple-form"] input[type="email"] {
    border-width: 3px;
  }
}

/* Focus styles for accessibility */
[class*="-cta-simple-form"] input[type="email"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* Module: about/v4 */
/* Stats Section */
[class*="-stats-section"] {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-primary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

[class*="-stats-section"]::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

[class*="-stats-section"] [class*="-section-header"] {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

[class*="-stats-section"] [class*="-section-header"] h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

[class*="-stats-grid"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

[class*="-stats-item"] {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  border-radius: var(--border-radius-lg, 16px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

[class*="-stats-item"]:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

[class*="-stats-number"] {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1;
  color: #ffffff;
}

[class*="-stats-label"] {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  opacity: 0.95;
  color: #ffffff;
  font-weight: 500;
}

/* Culture Section */
[class*="-culture-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
}

[class*="-culture-section"] [class*="-container"] {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

[class*="-culture-section"] h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  font-weight: 700;
}

[class*="-culture-section"] p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

[class*="-culture-section"] p:last-child {
  margin-bottom: 0;
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
  [class*="-stats-grid"] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }

  [class*="-stats-item"] {
    padding: 2rem 1.5rem;
  }

  [class*="-stats-item"]:hover {
    transform: translateY(-3px);
  }
}

/* Mobile Small - 575px and below */
@media (max-width: 575px) {
  [class*="-stats-section"] {
    padding: 2.5rem 0;
  }

  [class*="-stats-grid"] {
    gap: 1.25rem;
  }

  [class*="-stats-item"] {
    padding: 1.75rem 1.25rem;
  }

  [class*="-stats-number"] {
    font-size: 2.5rem;
  }

  [class*="-stats-label"] {
    font-size: 0.95rem;
  }

  [class*="-culture-section"] {
    padding: 2rem 0;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  [class*="-stats-item"] {
    transition: none !important;
  }

  [class*="-stats-item"]:hover {
    transform: none;
  }
}


/* Module: contact/v1 */
/* Page Header */
[class*="-page-header"] {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  background-color: var(--color-background);
  text-align: center;
}

[class*="-page-header"] h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text);
}

[class*="-section-header-p"] {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Section */
[class*="-contact-section"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
}

/* Contact Grid v1 */
[class*="-contact-grid-v1"] {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Details */
[class*="-contact-details"] h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  font-weight: 700;
}

[class*="-contact-details"] > p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

[class*="-contact-details-item"] {
  display: flex;
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 2rem);
  align-items: flex-start;
}

[class*="-contact-details-item"]:last-child {
  margin-bottom: 0;
}

[class*="-contact-details-item"] svg {
  color: var(--color-primary);
  width: clamp(22px, 4vw, 24px);
  height: clamp(22px, 4vw, 24px);
  margin-top: clamp(3px, 0.6vw, 5px);
  flex-shrink: 0;
}

[class*="-contact-details-item"] > div {
  flex: 1;
}

[class*="-contact-details-item"] h3 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin: 0 0 clamp(0.5rem, 1vw, 0.625rem);
  color: var(--color-text);
  font-weight: 600;
}

[class*="-contact-details-item"] p {
  font-size: clamp(0.9rem, 1.6vw, 0.95rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

[class*="-contact-details-item"] a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

[class*="-contact-details-item"] a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Contact Form Wrapper */
[class*="-contact-form-wrapper"] {
  background: var(--color-surface, #f9fafb);
  padding: clamp(2.5rem, 5vw, 3rem);
  border-radius: var(--border-radius-lg, 16px);
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[class*="-contact-form-wrapper"] h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  font-weight: 700;
}

/* Form Groups */
[class*="-contact-form-wrapper"] [class*="-form-group"] {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

[class*="-contact-form-wrapper"] [class*="-form-group"]:last-of-type {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

[class*="-contact-form-wrapper"] label {
  display: block;
  font-weight: 600;
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
  font-size: clamp(0.9rem, 1.6vw, 0.95rem);
  color: var(--color-text);
}

[class*="-contact-form-wrapper"] input,
[class*="-contact-form-wrapper"] textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 0.875rem);
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--border-radius, 8px);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-family: inherit;
  transition: all 0.2s ease;
}

[class*="-contact-form-wrapper"] input:focus,
[class*="-contact-form-wrapper"] textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

[class*="-contact-form-wrapper"] textarea {
  min-height: clamp(120px, 25vw, 150px);
  resize: vertical;
}

[class*="-contact-form-wrapper"] button {
  padding: clamp(0.875rem, 1.8vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  font-weight: 600;
}

/* Thank You Message */
[class*="-contact-form-thank-you"] {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
}

[class*="-contact-form-thank-you"] h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
}

[class*="-contact-form-thank-you"] p {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* Tablet - 900px and below */
@media (max-width: 900px) {
  [class*="-contact-grid-v1"] {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  [class*="-contact-details"] {
    order: 2;
  }

  [class*="-contact-form-wrapper"] {
    order: 1;
  }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
  [class*="-contact-section"] {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  [class*="-contact-grid-v1"] {
    gap: 2rem;
  }

  [class*="-contact-form-wrapper"] {
    padding: 2rem;
  }

  [class*="-contact-details-item"] {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Small - 320px to 575px */
@media (max-width: 575px) {
  [class*="-page-header"] {
    padding: 2rem 0 1.5rem;
  }

  [class*="-contact-section"] {
    padding: 2rem 0;
  }

  [class*="-contact-grid-v1"] {
    gap: 1.75rem;
  }

  [class*="-contact-form-wrapper"] {
    padding: 1.75rem;
    border-radius: var(--border-radius-md, 12px);
  }

  [class*="-contact-details-item"] {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  [class*="-contact-form-wrapper"] input,
  [class*="-contact-form-wrapper"] textarea {
    padding: 0.75rem;
  }

  [class*="-contact-form-wrapper"] textarea {
    min-height: 120px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  [class*="-contact-form-wrapper"] input,
  [class*="-contact-form-wrapper"] textarea,
  [class*="-contact-details-item"] a {
    transition: none !important;
  }
}

/* High contrast */
@media (prefers-contrast: high) {
  [class*="-contact-form-wrapper"] {
    border-width: 3px;
  }

  [class*="-contact-form-wrapper"] input,
  [class*="-contact-form-wrapper"] textarea {
    border-width: 3px;
  }
}


/* Module: register/v5 */
[class*="-register-page-v5"] {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-background);
}

[class*="-register-grid-v5"] {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2.5rem, 5vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

[class*="-register-form-wrapper-v5"] {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--border-radius-lg, 16px);
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[class*="-register-form-wrapper-v5"] h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  font-weight: 700;
}

[class*="-register-benefits-v5"] {
  background: var(--color-surface, #f9fafb);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--border-radius-lg, 16px);
  border: 2px solid var(--color-border, rgba(0, 0, 0, 0.08));
}

[class*="-register-benefits-v5"] h3 {
  font-size: clamp(1.15rem, 2vw, 1.25rem);
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  font-weight: 700;
}

[class*="-register-benefits-v5"] [class*="-features-list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

[class*="-register-benefits-v5"] li {
  margin-bottom: clamp(0.875rem, 1.8vw, 1rem);
  position: relative;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  color: var(--color-text);
}

[class*="-register-benefits-v5"] li:last-child {
  margin-bottom: 0;
}

[class*="-register-benefits-v5"] li::before {
  content: "✓";
  color: var(--color-success, #10b981);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  [class*="-register-grid-v5"] {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  [class*="-register-benefits-v5"] {
    order: -1;
  }
}

@media (max-width: 575px) {
  [class*="-register-page-v5"] {
    padding: 2rem 0;
  }

  [class*="-register-grid-v5"] {
    gap: 1.75rem;
  }

  [class*="-register-form-wrapper-v5"] {
    padding: 2rem 1.5rem;
  }

  [class*="-register-benefits-v5"] {
    padding: 1.75rem 1.5rem;
  }
}


/* Module: privacy/v1 */
[class*="-legal-content"] {
  background-color: var(--color-background);
  padding: 3rem 0;
}

[class*="-legal-page-container"] {
  max-width: 800px;
  margin: 0 auto;
}

[class*="-legal-page-container"] h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

[class*="-legal-page-container"] h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

[class*="-legal-page-container"] p,
[class*="-legal-page-container"] li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
}

[class*="-legal-page-container"] ul,
[class*="-legal-page-container"] ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

[class*="-legal-page-container"] li {
  margin-bottom: 0.5rem;
}

[class*="-legal-full-text"] {
  white-space: pre-wrap;
}


/* Module: terms/v2 */
[class*="-legal-content"] {
  background-color: var(--color-background);
  padding: 3rem 0;
}

[class*="-legal-page-container"] {
  max-width: 800px;
  margin: 0 auto;
}

[class*="-legal-page-container"] h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

[class*="-legal-page-container"] h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

[class*="-legal-page-container"] p,
[class*="-legal-page-container"] li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
}

[class*="-legal-page-container"] ul,
[class*="-legal-page-container"] ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

[class*="-legal-page-container"] li {
  margin-bottom: 0.5rem;
}

[class*="-legal-full-text"] {
  white-space: pre-wrap;
}
