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

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: #162033;

  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;

  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fcd34d;
  --color-secondary: #fbbf24;
  --color-secondary-light: #fef3c7;

  --color-success: #10b981;
  --color-success-light: #6ee7b7;
  --color-warning: #f59e0b;
  --color-warning-light: #fcd34d;
  --color-danger: #ef4444;
  --color-danger-light: #fca5a5;

  --color-border: #1e293b;
  --color-border-light: #0f172a;

  --font-primary: 'Karla', sans-serif;
  --font-heading: 'Spectral', serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 500;
}

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

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: var(--font-primary);
  cursor: pointer;
}

input,
textarea,
select {
  font-family: var(--font-primary);
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visually-hidden {
  display: none;
}

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

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

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

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

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

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

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

.bg-primary {
  background: var(--color-bg-primary);
}

.bg-secondary {
  background: var(--color-bg-secondary);
}

.bg-tertiary {
  background: var(--color-bg-tertiary);
}

.bg-card {
  background: var(--color-bg-card);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-primary {
  font-family: var(--font-primary);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.m-0 {
  margin: 0;
}

.m-xs {
  margin: var(--spacing-xs);
}

.m-sm {
  margin: var(--spacing-sm);
}

.m-md {
  margin: var(--spacing-md);
}

.m-lg {
  margin: var(--spacing-lg);
}

.m-xl {
  margin: var(--spacing-xl);
}

.m-2xl {
  margin: var(--spacing-2xl);
}

.m-3xl {
  margin: var(--spacing-3xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mt-2xl {
  margin-top: var(--spacing-2xl);
}

.mt-3xl {
  margin-top: var(--spacing-3xl);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mb-2xl {
  margin-bottom: var(--spacing-2xl);
}

.mb-3xl {
  margin-bottom: var(--spacing-3xl);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-0 {
  padding: 0;
}

.p-xs {
  padding: var(--spacing-xs);
}

.p-sm {
  padding: var(--spacing-sm);
}

.p-md {
  padding: var(--spacing-md);
}

.p-lg {
  padding: var(--spacing-lg);
}

.p-xl {
  padding: var(--spacing-xl);
}

.p-2xl {
  padding: var(--spacing-2xl);
}

.p-3xl {
  padding: var(--spacing-3xl);
}

.px-sm {
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

.px-md {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.px-lg {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.py-sm {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.py-md {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.py-lg {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.py-xl {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.py-2xl {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

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

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-2xl {
  box-shadow: var(--shadow-2xl);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.gap-xs {
  gap: var(--spacing-xs);
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-6 {
  grid-column: span 6;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.hidden {
  display: none;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.max-w-full {
  max-width: 100%;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.border {
  border: 1px solid var(--color-border);
}

.border-t {
  border-top: 1px solid var(--color-border);
}

.border-b {
  border-bottom: 1px solid var(--color-border);
}

.border-l {
  border-left: 1px solid var(--color-border);
}

.border-r {
  border-right: 1px solid var(--color-border);
}

.border-light {
  border: 1px solid var(--color-border-light);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.transition-all {
  transition: all var(--transition-base);
}

.transition-colors {
  transition: color, background-color, border-color var(--transition-base);
}

.transition-transform {
  transition: transform var(--transition-base);
}

.duration-fast {
  transition-duration: var(--transition-fast);
}

.duration-base {
  transition-duration: var(--transition-base);
}

.duration-slow {
  transition-duration: var(--transition-slow);
}

.transform {
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.scale-100 {
  scale: 1;
}

.scale-105 {
  scale: 1.05;
}

.scale-110 {
  scale: 1.1;
}

.hover\:scale-105:hover {
  scale: 1.05;
}

.hover\:text-primary-hover:hover {
  color: var(--color-primary-hover);
}

.hover\:bg-tertiary:hover {
  background: var(--color-bg-tertiary);
}

.focus\:outline-primary:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.group {
  position: relative;
}

@media (max-width: 640px) {
  .sm\:hidden {
    display: none;
  }

  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:col-span-2 {
    grid-column: span 2;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:gap-md {
    gap: var(--spacing-md);
  }
}

@media (max-width: 1024px) {
  .lg\:hidden {
    display: none;
  }

  .lg\:block {
    display: block;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-primary);
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}

.button-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-primary:active {
  transform: translateY(0);
}

.button-secondary {
  background: var(--color-secondary);
  color: var(--color-bg-primary);
}

.button-secondary:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.button-outline:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-hover);
}

.button-ghost {
  background: transparent;
  color: var(--color-text-secondary);
}

.button-ghost:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
}

.button-sm {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.875rem;
}

.button-lg {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.125rem;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button:disabled:hover {
  transform: none;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
}

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

.card-featured {
  background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-tertiary) 100%);
  border: 2px solid var(--color-primary);
}

.input {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--color-success);
  color: var(--color-success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-warning);
  color: var(--color-warning);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--color-danger);
  color: var(--color-danger);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-lg {
  padding: var(--spacing-3xl) 0;
}

.section-sm {
  padding: var(--spacing-lg) 0;
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--spacing-lg) 0;
}

.list-disc {
  list-style: disc;
  list-style-position: inside;
}

.list-disc li {
  margin-bottom: var(--spacing-sm);
}

.list-none {
  list-style: none;
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.no-underline {
  text-decoration: none;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.75;
}

.leading-loose {
  line-height: 2;
}

.tracking-tight {
  letter-spacing: -0.5px;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.5px;
}

.tracking-wider {
  letter-spacing: 1px;
}

.break-words {
  word-break: break-word;
}

.break-all {
  word-break: break-all;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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

@keyframes slideInLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

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

@keyframes slideInRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-slow);
}

.animate-slideInUp {
  animation: slideInUp var(--transition-slow);
}

.animate-slideInDown {
  animation: slideInDown var(--transition-slow);
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow);
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow);
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .sm\:text-center {
    text-align: center;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline-block {
    display: inline-block;
  }

  .sm\:p-sm {
    padding: var(--spacing-sm);
  }

  .sm\:p-md {
    padding: var(--spacing-md);
  }

  .sm\:gap-sm {
    gap: var(--spacing-sm);
  }

  .sm\:gap-md {
    gap: var(--spacing-md);
  }

  .sm\:mt-md {
    margin-top: var(--spacing-md);
  }

  .sm\:mb-md {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .md\:p-md {
    padding: var(--spacing-md);
  }

  .md\:p-lg {
    padding: var(--spacing-lg);
  }

  .md\:gap-lg {
    gap: var(--spacing-lg);
  }

  .md\:mt-lg {
    margin-top: var(--spacing-lg);
  }

  .md\:mb-lg {
    margin-bottom: var(--spacing-lg);
  }

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

@media (max-width: 1024px) {
  .lg\:p-xl {
    padding: var(--spacing-xl);
  }

  .lg\:gap-xl {
    gap: var(--spacing-xl);
  }

  .lg\:mt-xl {
    margin-top: var(--spacing-xl);
  }

  .lg\:mb-xl {
    margin-bottom: var(--spacing-xl);
  }
}
.header-cyber-vault {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.header-cyber-vault-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: clamp(1rem, 2vw, 2rem);
}

.header-cyber-vault-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-cyber-vault-brand:hover {
  opacity: 0.85;
}

.header-cyber-vault-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-cyber-vault-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-cyber-vault-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

.header-cyber-vault-nav-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

.header-cyber-vault-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

.header-cyber-vault-nav-link:hover::after {
  width: 100%;
}

.header-cyber-vault-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cyber-vault-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-cyber-vault-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 101;
}

.header-cyber-vault-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

.header-cyber-vault-mobile-toggle.active .header-cyber-vault-hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-cyber-vault-mobile-toggle.active .header-cyber-vault-hamburger:nth-child(2) {
  opacity: 0;
}

.header-cyber-vault-mobile-toggle.active .header-cyber-vault-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-cyber-vault-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-base);
  z-index: 99;
  padding-top: 70px;
  border-bottom: 1px solid var(--color-border-light);
}

.header-cyber-vault-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cyber-vault-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
}

.header-cyber-vault-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.header-cyber-vault-mobile-close:hover {
  color: var(--color-primary);
}

.header-cyber-vault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
  overflow-y: auto;
}

.header-cyber-vault-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-base);
}

.header-cyber-vault-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-cyber-vault-mobile-cta {
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}

.header-cyber-vault-mobile-cta:hover {
  background: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .header-cyber-vault-desktop-nav {
    display: flex;
  }

  .header-cyber-vault-cta-button {
    display: inline-block;
  }

  .header-cyber-vault-mobile-toggle {
    display: none;
  }

  .header-cyber-vault-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-cyber-vault-mobile-menu {
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }
}

    

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

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

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

.cyber-hub {
  width: 100%;
  overflow-x: hidden;
}

.prime-hero-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 12vw, 8rem) 0;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.prime-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.prime-hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.prime-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  line-height: 1.2;
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prime-hero-title-accent {
  color: var(--color-accent);
}

.prime-hero-title-muted {
  color: var(--color-text-secondary);
}

.prime-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.prime-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.prime-hero-cta-primary,
.prime-hero-cta-secondary {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.025rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  color: #fff !important;
}

.prime-hero-cta-primary {
  background: var(--color-accent);
  color: #000000;
}

.prime-hero-cta-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.prime-hero-cta-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent);
}

.prime-hero-cta-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-accent-hover);
}

.prime-about-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-about-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.prime-about-text-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.prime-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.prime-about-description,
.prime-about-secondary-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.prime-about-image {
  width: 100%;
  max-height: 450px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .prime-about-content {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .prime-about-text-block {
    flex: 1 1 45%;
  }

  .prime-about-image {
    flex: 1 1 45%;
  }
}

.prime-process-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-process-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.prime-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.prime-process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.prime-process-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
}

.prime-process-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.prime-process-step {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.prime-process-step-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-accent);
  font-weight: 700;
}

.prime-process-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.prime-process-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.prime-stats-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-stats-content {
  display: flex;
  flex-direction: column;
}

.prime-stats-numbers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.prime-stats-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.prime-stats-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1.1;
}

.prime-stats-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.prime-resources-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-resources-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.prime-resources-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
}

.prime-resources-hub {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.prime-resources-main {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--color-border);
  max-width: 500px;
  width: 100%;
}

.prime-resources-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.prime-resources-main-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.prime-resources-main-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.prime-resources-main-link:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.prime-resources-links-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.prime-resources-link-card {
  flex: 1 1 150px;
  min-width: 140px;
  max-width: 200px;
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  align-items: center;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.prime-resources-link-card:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.prime-resources-link-icon {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  display: block;
}

.prime-resources-link-text {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.5;
}

.prime-testimonials-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-testimonials-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.prime-testimonials-header {
  text-align: center;
}

.prime-testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.prime-testimonials-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
}

.prime-testimonials-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.prime-testimonials-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.prime-testimonials-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.prime-testimonials-quote {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.prime-testimonials-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.prime-testimonials-author-name {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.prime-testimonials-author-role {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
}

.prime-comparison-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-comparison-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.prime-comparison-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.prime-comparison-block {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.prime-comparison-problems,
.prime-comparison-solutions {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
}

.prime-comparison-problems {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.prime-comparison-solutions {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.prime-comparison-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.prime-comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1.25rem);
}

.prime-comparison-item-problem,
.prime-comparison-item-solution {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
}

.prime-comparison-item-problem {
  color: var(--color-text-secondary);
}

.prime-comparison-item-problem::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: bold;
  font-size: 1.5em;
}

.prime-comparison-item-solution {
  color: var(--color-text-secondary);
}

.prime-comparison-item-solution::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.25em;
}

@media (min-width: 768px) {
  .prime-comparison-block {
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .prime-comparison-problems,
  .prime-comparison-solutions {
    flex: 1 1 50%;
  }
}

.prime-featured-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-featured-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.prime-featured-header {
  text-align: center;
}

.prime-featured-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.prime-featured-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
}

.prime-featured-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.prime-featured-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.prime-featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.prime-featured-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.prime-featured-card-body {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.prime-featured-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.4;
}

.prime-featured-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.prime-featured-card-link {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.975rem);
  transition: all 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.prime-featured-card-link:hover {
  color: var(--color-accent-hover);
  transform: translateX(4px);
}

.prime-cta-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.prime-cta-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.prime-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.prime-cta-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.prime-cta-button {
  display: inline-block;
  padding: clamp(0.85rem, 2vw, 1.1rem) clamp(1.75rem, 4vw, 2.5rem);
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  transition: all 0.3s ease;
  align-self: center;
}

.prime-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: #000000;
}

.cookie-btn-accept:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-light);
}

.cookie-btn-decline:hover {
  border-color: var(--color-text-secondary);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .prime-hero-section {
    min-height: 70vh;
  }

  .prime-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 3vw, 2.5rem);
  }

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

  .cookie-banner {
    justify-content: space-between;
  }

  .cookie-banner-text {
    flex: 1 1 auto;
    min-width: auto;
  }
}

@media (min-width: 1024px) {
  .prime-process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .prime-stats-numbers {
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .prime-resources-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

    .footer {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal {
  display: block;
}

.footer h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: 0.5px;
}

.footer p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-about p {
  max-width: 380px;
  margin-bottom: 0;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list li,
.footer-legal-list li {
  display: block;
}

.footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  border-top: 1px solid var(--color-border-light);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(2rem, 5vw, 3.5rem);
    grid-template-areas:
      "about nav contact legal"
      "copyright copyright copyright copyright";
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-nav {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3;
  }

  .footer-legal {
    grid-column: 4;
  }

  .footer-copyright {
    grid-area: copyright;
    text-align: center;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  }
}
    

.category-page-cybersecurity-reviews {
  background: var(--color-bg-primary);
}

.hero-section-cybersecurity-reviews {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  max-width: 650px;
}

.hero-title-cybersecurity-reviews {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-cybersecurity-reviews {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-cybersecurity-reviews {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-block-cybersecurity-reviews {
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
}

.hero-image-cybersecurity-reviews {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 1024px) {
  .hero-content-cybersecurity-reviews {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 8vw, 5rem);
  }

  .hero-text-block-cybersecurity-reviews {
    text-align: left;
    flex: 1 1 45%;
    max-width: none;
  }

  .hero-image-block-cybersecurity-reviews {
    flex: 1 1 45%;
    max-width: none;
  }

  .hero-image-cybersecurity-reviews {
    max-height: 450px;
  }
}

.posts-section-cybersecurity-reviews {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.posts-header-cybersecurity-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.posts-title-cybersecurity-reviews {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-cybersecurity-reviews {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-grid-cybersecurity-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  flex: 1 1 300px;
  max-width: 420px;
  min-height: 280px;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
}

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

.card-title-cybersecurity-reviews {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.card-description-cybersecurity-reviews {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  flex-grow: 1;
}

.card-meta-cybersecurity-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(0.75rem, 1vw, 1rem);
  border-top: 1px solid var(--color-border-light);
}

.card-reading-time-cybersecurity-reviews,
.card-level-cybersecurity-reviews,
.card-date-cybersecurity-reviews {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-reading-time-cybersecurity-reviews i,
.card-level-cybersecurity-reviews i,
.card-date-cybersecurity-reviews i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.card-link-cybersecurity-reviews {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.card-link-cybersecurity-reviews:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .card-cybersecurity-reviews {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .card-cybersecurity-reviews {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  }
}

.stats-section-cybersecurity-reviews {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.stats-content-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.stats-header-cybersecurity-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.stats-title-cybersecurity-reviews {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stats-subtitle-cybersecurity-reviews {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stats-grid-cybersecurity-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.stat-card-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number-cybersecurity-reviews {
  color: var(--color-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-label-cybersecurity-reviews {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

@media (min-width: 768px) {
  .stat-card-cybersecurity-reviews {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .stat-card-cybersecurity-reviews {
    flex: 1 1 calc(25% - clamp(0.75rem, 1.5vw, 1.25rem));
  }
}

.tags-section-cybersecurity-reviews {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tags-content-cybersecurity-reviews {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.tags-header-cybersecurity-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.tags-title-cybersecurity-reviews {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tags-subtitle-cybersecurity-reviews {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tags-cloud-cybersecurity-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  justify-content: center;
}

.tag-cybersecurity-reviews {
  display: inline-block;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
  cursor: default;
}

.tag-cybersecurity-reviews:hover {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.main-rugged-laptop-features-guide {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'Karla', sans-serif;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.breadcrumbs-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-rugged-laptop-features-guide a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-rugged-laptop-features-guide a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-rugged-laptop-features-guide span {
  color: var(--color-text-secondary);
}

.hero-section-rugged-laptop-features-guide {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.hero-card-rugged-laptop-features-guide {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card-inner-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-content-rugged-laptop-features-guide {
  flex: 1 1 50%;
  min-width: 0;
}

.hero-meta-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.meta-badge-rugged-laptop-features-guide {
  background: var(--color-accent);
  color: #000000;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.meta-divider-rugged-laptop-features-guide {
  color: var(--color-text-muted);
}

.meta-time-rugged-laptop-features-guide,
.meta-date-rugged-laptop-features-guide {
  color: var(--color-text-secondary);
}

.hero-title-rugged-laptop-features-guide {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Spectral', serif;
}

.hero-subtitle-rugged-laptop-features-guide {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-image-wrapper-rugged-laptop-features-guide {
  flex: 1 1 50%;
  min-height: 300px;
  max-height: 450px;
}

.hero-image-rugged-laptop-features-guide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1.5vw, 1rem);
  display: block;
}

@media (max-width: 768px) {
  .hero-card-inner-rugged-laptop-features-guide {
    flex-direction: column;
  }

  .hero-content-rugged-laptop-features-guide,
  .hero-image-wrapper-rugged-laptop-features-guide {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-image-wrapper-rugged-laptop-features-guide {
    min-height: 250px;
    max-height: 350px;
  }
}

.intro-section-rugged-laptop-features-guide {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.intro-text-rugged-laptop-features-guide {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.content-section-one-rugged-laptop-features-guide,
.content-section-two-rugged-laptop-features-guide,
.content-section-three-rugged-laptop-features-guide,
.content-section-four-rugged-laptop-features-guide {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-one-rugged-laptop-features-guide,
.content-wrapper-two-rugged-laptop-features-guide,
.content-wrapper-three-rugged-laptop-features-guide,
.content-wrapper-four-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-rugged-laptop-features-guide,
.content-text-two-rugged-laptop-features-guide,
.content-text-three-rugged-laptop-features-guide,
.content-text-four-rugged-laptop-features-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-rugged-laptop-features-guide,
.content-image-two-rugged-laptop-features-guide,
.content-image-three-rugged-laptop-features-guide,
.content-image-four-rugged-laptop-features-guide {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.section-image-rugged-laptop-features-guide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  display: block;
}

.content-heading-one-rugged-laptop-features-guide,
.content-heading-two-rugged-laptop-features-guide,
.content-heading-three-rugged-laptop-features-guide,
.content-heading-four-rugged-laptop-features-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-family: 'Spectral', serif;
}

.content-text-body-rugged-laptop-features-guide {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-rugged-laptop-features-guide {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: 0.5rem;
}

.highlight-text-rugged-laptop-features-guide {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: 1.6;
}

.features-list-rugged-laptop-features-guide {
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.features-list-items-rugged-laptop-features-guide {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.feature-item-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: 1.6;
}

.feature-item-rugged-laptop-features-guide::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.stat-block-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: space-around;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.stat-item-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.stat-number-rugged-laptop-features-guide {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  font-family: 'Spectral', serif;
}

.stat-label-rugged-laptop-features-guide {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.quote-block-rugged-laptop-features-guide {
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: 0.5rem;
}

.quote-text-rugged-laptop-features-guide {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: 'Spectral', serif;
}

.quote-attribution-rugged-laptop-features-guide {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-one-rugged-laptop-features-guide,
  .content-wrapper-two-rugged-laptop-features-guide,
  .content-wrapper-three-rugged-laptop-features-guide,
  .content-wrapper-four-rugged-laptop-features-guide {
    flex-direction: column;
  }

  .content-text-one-rugged-laptop-features-guide,
  .content-text-two-rugged-laptop-features-guide,
  .content-text-three-rugged-laptop-features-guide,
  .content-text-four-rugged-laptop-features-guide,
  .content-image-one-rugged-laptop-features-guide,
  .content-image-two-rugged-laptop-features-guide,
  .content-image-three-rugged-laptop-features-guide,
  .content-image-four-rugged-laptop-features-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .stat-block-rugged-laptop-features-guide {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.disclaimer-section-rugged-laptop-features-guide {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
}

.disclaimer-box-rugged-laptop-features-guide {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-text-rugged-laptop-features-guide {
  font-size: clamp(0.85rem, 1.1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.conclusion-section-rugged-laptop-features-guide {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-heading-rugged-laptop-features-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  font-family: 'Spectral', serif;
}

.conclusion-text-rugged-laptop-features-guide {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.cta-section-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-button-rugged-laptop-features-guide {
  background: var(--color-accent);
  color: #000000;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button-rugged-laptop-features-guide:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.author-section-rugged-laptop-features-guide {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.author-content-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
}

.author-card-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  max-width: 700px;
  margin: 0 auto;
}

.author-image-rugged-laptop-features-guide {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.author-name-rugged-laptop-features-guide {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  font-family: 'Spectral', serif;
}

.author-link-rugged-laptop-features-guide {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-link-rugged-laptop-features-guide:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.author-position-rugged-laptop-features-guide {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-accent);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.author-bio-rugged-laptop-features-guide {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .author-card-rugged-laptop-features-guide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-image-rugged-laptop-features-guide {
    width: 100px;
    height: 100px;
  }
}

.related-section-rugged-laptop-features-guide {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.related-content-rugged-laptop-features-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-heading-rugged-laptop-features-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  font-family: 'Spectral', serif;
  margin: 0;
}

.related-list-rugged-laptop-features-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: space-between;
  flex-wrap: wrap;
}

.related-item-rugged-laptop-features-guide {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-item-rugged-laptop-features-guide:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.related-thumbnail-rugged-laptop-features-guide {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-rugged-laptop-features-guide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-item-rugged-laptop-features-guide:hover .related-image-rugged-laptop-features-guide {
  transform: scale(1.05);
}

.related-info-rugged-laptop-features-guide {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-title-rugged-laptop-features-guide {
  font-size: clamp(1rem, 1.8vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin: 0;
  font-family: 'Spectral', serif;
}

.related-link-rugged-laptop-features-guide {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-link-rugged-laptop-features-guide:hover {
  color: var(--color-accent);
}

.related-description-rugged-laptop-features-guide {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-list-rugged-laptop-features-guide {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .related-item-rugged-laptop-features-guide {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .related-item-rugged-laptop-features-guide {
    flex: 1 1 100%;
  }

  .related-list-rugged-laptop-features-guide {
    gap: 1rem;
  }
}

.main-understanding-vpn-encryption {
    width: 100%;
    overflow: hidden;
  }

  .hero-section-understanding-vpn-encryption {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .breadcrumbs-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
    font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  }

  .breadcrumbs-understanding-vpn-encryption a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .breadcrumbs-understanding-vpn-encryption a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .breadcrumbs-understanding-vpn-encryption span {
    color: var(--color-text-muted);
  }

  .breadcrumbs-understanding-vpn-encryption > span:last-child {
    color: var(--color-text-secondary);
  }

  .hero-content-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }

  .hero-text-block-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-block-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-metadata-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
  }

  .metadata-item-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  }

  .metadata-item-understanding-vpn-encryption i {
    color: var(--color-primary);
    font-size: 0.9em;
  }

  .hero-image-block-understanding-vpn-encryption img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .intro-section-understanding-vpn-encryption {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .intro-content-understanding-vpn-encryption {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 900px;
    margin: 0 auto;
  }

  .intro-text-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .content-section-understanding-vpn-encryption {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .content-wrapper-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .content-text-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-image-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .content-body-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .highlight-box-understanding-vpn-encryption {
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-primary);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: var(--radius-md);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .highlight-box-understanding-vpn-encryption strong {
    color: var(--color-primary);
  }

  .highlight-box-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
  }

  .content-image-understanding-vpn-encryption img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .encryption-section-understanding-vpn-encryption {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .encryption-wrapper-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .encryption-image-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
    order: -1;
  }

  .encryption-text-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .encryption-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .encryption-body-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .encryption-image-understanding-vpn-encryption img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .step-list-understanding-vpn-encryption {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .step-item-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
  }

  .step-number-understanding-vpn-encryption {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-primary);
    color: var(--color-bg-primary);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .step-item-understanding-vpn-encryption p {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-section-understanding-vpn-encryption {
    background: var(--color-bg-tertiary);
    padding: clamp(2rem, 4vw, 3rem);
    margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .disclaimer-content-understanding-vpn-encryption {
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-box-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
  }

  .disclaimer-box-understanding-vpn-encryption i {
    color: var(--color-primary);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .disclaimer-text-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-text-understanding-vpn-encryption strong {
    color: var(--color-text-primary);
  }

  .protocols-section-understanding-vpn-encryption {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .protocols-wrapper-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .protocols-text-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .protocols-image-understanding-vpn-encryption {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .protocols-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .protocols-body-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .protocol-cards-understanding-vpn-encryption {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .protocol-card-understanding-vpn-encryption {
    background: var(--color-bg-card);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
  }

  .protocol-name-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
  }

  .protocol-info-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .protocols-image-understanding-vpn-encryption img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .practical-section-understanding-vpn-encryption {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .practical-content-understanding-vpn-encryption {
    max-width: 900px;
    margin: 0 auto;
  }

  .practical-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .practical-intro-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .practical-body-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .quote-block-understanding-vpn-encryption {
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-primary);
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-radius: var(--radius-md);
  }

  .quote-text-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .practical-footer-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-section-understanding-vpn-encryption {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .conclusion-content-understanding-vpn-encryption {
    max-width: 900px;
    margin: 0 auto;
  }

  .conclusion-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-text-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cta-section-understanding-vpn-encryption {
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .cta-link-understanding-vpn-encryption {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary);
    color: var(--color-bg-primary);
    padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.125rem);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cta-link-understanding-vpn-encryption:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
  }

  .author-section-understanding-vpn-encryption {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid var(--color-border-light);
    overflow: hidden;
  }

  .author-content-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
  }

  .author-image-understanding-vpn-encryption {
    flex-shrink: 0;
  }

  .author-image-understanding-vpn-encryption img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  .author-info-understanding-vpn-encryption {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .author-name-understanding-vpn-encryption {
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
    font-weight: 600;
  }

  .author-name-understanding-vpn-encryption a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .author-name-understanding-vpn-encryption a:hover {
    color: var(--color-primary);
  }

  .author-position-understanding-vpn-encryption {
    color: var(--color-primary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    font-weight: 500;
  }

  .author-bio-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-section-understanding-vpn-encryption {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    border-top: 1px solid var(--color-border-light);
    overflow: hidden;
  }

  .related-content-understanding-vpn-encryption {
    max-width: 900px;
    margin: 0 auto;
  }

  .related-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-family: var(--font-heading);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-list-understanding-vpn-encryption {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-item-understanding-vpn-encryption {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: flex-start;
  }

  .related-image-understanding-vpn-encryption {
    flex: 0 0 auto;
    width: clamp(150px, 25vw, 200px);
    height: clamp(150px, 25vw, 200px);
    min-width: clamp(150px, 25vw, 200px);
  }

  .related-image-understanding-vpn-encryption img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
  }

  .related-text-understanding-vpn-encryption {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .related-item-title-understanding-vpn-encryption {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-item-title-understanding-vpn-encryption a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .related-item-title-understanding-vpn-encryption a:hover {
    color: var(--color-primary);
  }

  .related-item-description-understanding-vpn-encryption {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  @media (max-width: 768px) {
    .hero-content-understanding-vpn-encryption,
    .content-wrapper-understanding-vpn-encryption,
    .encryption-wrapper-understanding-vpn-encryption,
    .protocols-wrapper-understanding-vpn-encryption {
      flex-direction: column;
    }

    .hero-text-block-understanding-vpn-encryption,
    .hero-image-block-understanding-vpn-encryption,
    .content-text-understanding-vpn-encryption,
    .content-image-understanding-vpn-encryption,
    .encryption-image-understanding-vpn-encryption,
    .encryption-text-understanding-vpn-encryption,
    .protocols-text-understanding-vpn-encryption,
    .protocols-image-understanding-vpn-encryption {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .encryption-image-understanding-vpn-encryption {
      order: 0;
    }

    .author-content-understanding-vpn-encryption {
      flex-direction: column;
      text-align: center;
    }

    .author-image-understanding-vpn-encryption {
      margin: 0 auto;
    }

    .related-item-understanding-vpn-encryption {
      flex-direction: column;
      text-align: center;
    }

    .related-image-understanding-vpn-encryption {
      margin: 0 auto;
      width: clamp(150px, 70vw, 200px);
      height: clamp(150px, 70vw, 200px);
      min-width: clamp(150px, 70vw, 200px);
    }
  }

  @media (max-width: 480px) {
    .breadcrumbs-understanding-vpn-encryption {
      font-size: 0.75rem;
      gap: 0.25rem;
    }

    .hero-metadata-understanding-vpn-encryption {
      flex-direction: column;
      gap: 0.5rem;
    }

    .step-item-understanding-vpn-encryption {
      gap: 0.75rem;
    }

    .step-number-understanding-vpn-encryption {
      width: 36px;
      height: 36px;
      min-width: 36px;
      font-size: 1rem;
    }
  }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'Karla', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.main-data-protection-fundamentals {
  width: 100%;
}

.hero-section-data-protection-fundamentals {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-data-protection-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-data-protection-fundamentals a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-data-protection-fundamentals a:hover {
  color: var(--color-accent);
}

.breadcrumbs-data-protection-fundamentals span {
  color: var(--color-text-muted);
}

.hero-card-wrapper-data-protection-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-card-content-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-text-block-data-protection-fundamentals {
  flex: 1 1 50%;
  min-width: 0;
}

.hero-image-block-data-protection-fundamentals {
  flex: 1 1 50%;
  min-width: 0;
}

.hero-meta-data-protection-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
}

.meta-item-data-protection-fundamentals {
  color: var(--color-text-secondary);
}

.meta-separator-data-protection-fundamentals {
  color: var(--color-text-muted);
}

.hero-title-data-protection-fundamentals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-lead-data-protection-fundamentals {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.hero-image-data-protection-fundamentals {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .hero-card-content-data-protection-fundamentals {
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-text-block-data-protection-fundamentals,
  .hero-image-block-data-protection-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-data-protection-fundamentals {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-data-protection-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.intro-header-data-protection-fundamentals {
  text-align: center;
}

.intro-title-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.intro-subtitle-data-protection-fundamentals {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
}

.intro-text-data-protection-fundamentals {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.content-first-data-protection-fundamentals {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-first-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-first-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-first-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-first-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-text-data-protection-fundamentals {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.highlight-box-data-protection-fundamentals {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-text-data-protection-fundamentals {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.highlight-text-data-protection-fundamentals strong {
  color: var(--color-accent);
}

.content-image-data-protection-fundamentals {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.content-image-first-data-protection-fundamentals img,
.content-image-second-data-protection-fundamentals img,
.content-image-third-data-protection-fundamentals img,
.content-image-fourth-data-protection-fundamentals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .content-wrapper-first-data-protection-fundamentals {
    flex-direction: column;
  }
  
  .content-text-first-data-protection-fundamentals,
  .content-image-first-data-protection-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-second-data-protection-fundamentals {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-second-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-second-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-second-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-second-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .content-wrapper-second-data-protection-fundamentals {
    flex-direction: column;
  }
  
  .content-image-second-data-protection-fundamentals,
  .content-text-second-data-protection-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-data-protection-fundamentals {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-data-protection-fundamentals {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-data-protection-fundamentals {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.disclaimer-title-data-protection-fundamentals {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-family: 'Spectral', serif;
  color: var(--color-accent);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-data-protection-fundamentals {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.content-third-data-protection-fundamentals {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-third-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-third-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-third-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-third-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.callout-box-data-protection-fundamentals {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid var(--color-secondary);
  border-radius: 4px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.callout-text-data-protection-fundamentals {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.callout-text-data-protection-fundamentals strong {
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .content-wrapper-third-data-protection-fundamentals {
    flex-direction: column;
  }
  
  .content-text-third-data-protection-fundamentals,
  .content-image-third-data-protection-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-fourth-data-protection-fundamentals {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-fourth-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-fourth-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-fourth-data-protection-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-fourth-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .content-wrapper-fourth-data-protection-fundamentals {
    flex-direction: column;
  }
  
  .content-image-fourth-data-protection-fundamentals,
  .content-text-fourth-data-protection-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-data-protection-fundamentals {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-data-protection-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.conclusion-text-data-protection-fundamentals {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.author-section-data-protection-fundamentals {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--color-border);
}

.author-content-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.author-photo-data-protection-fundamentals {
  flex-shrink: 0;
}

.author-image-data-protection-fundamentals {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-info-data-protection-fundamentals {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.5vw, 0.5rem);
}

.author-label-data-protection-fundamentals {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.85rem);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.author-name-data-protection-fundamentals {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin: 0;
}

.author-link-data-protection-fundamentals {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-link-data-protection-fundamentals:hover {
  color: var(--color-accent-hover);
}

.author-title-data-protection-fundamentals {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 500;
}

.author-bio-data-protection-fundamentals {
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .author-content-data-protection-fundamentals {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-photo-data-protection-fundamentals {
    flex-shrink: 0;
  }
}

.related-section-data-protection-fundamentals {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-data-protection-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.related-title-data-protection-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-list-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-item-data-protection-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
}

.related-item-data-protection-fundamentals:hover {
  background: var(--color-bg-tertiary);
  transform: translateY(-4px);
}

.related-image-data-protection-fundamentals {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}

.related-image-data-protection-fundamentals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-data-protection-fundamentals {
  flex: 1;
}

.related-item-title-data-protection-fundamentals {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  font-family: 'Spectral', serif;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.related-item-data-protection-fundamentals:hover .related-item-title-data-protection-fundamentals {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .related-list-data-protection-fundamentals {
    flex-direction: column;
  }
  
  .related-item-data-protection-fundamentals {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 1024px) {
  .related-item-data-protection-fundamentals {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-item-data-protection-fundamentals {
    flex: 1 1 100%;
    flex-direction: column;
    text-align: center;
  }
  
  .related-image-data-protection-fundamentals {
    flex-shrink: 0;
  }
}

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

.main-online-safety-threats-defense {
  display: block;
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'Karla', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

section {
  overflow: hidden;
}

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

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.hero-section-online-safety-threats-defense {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.hero-content-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-online-safety-threats-defense {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.breadcrumbs-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-online-safety-threats-defense a,
.breadcrumbs-online-safety-threats-defense span {
  color: var(--color-text-secondary);
}

.breadcrumbs-online-safety-threats-defense a:hover {
  color: var(--color-accent);
}

.hero-title-online-safety-threats-defense {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.2;
}

.hero-lead-online-safety-threats-defense {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.hero-meta-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
}

.meta-item-online-safety-threats-defense {
  display: inline-block;
}

.meta-divider-online-safety-threats-defense {
  display: inline-block;
  opacity: 0.5;
}

.intro-section-online-safety-threats-defense {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.intro-content-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-online-safety-threats-defense {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.intro-title-online-safety-threats-defense {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.3;
}

.intro-paragraph-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.threats-section-online-safety-threats-defense {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.threats-content-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.threats-text-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.threats-image-block-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.threats-image-online-safety-threats-defense {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.threats-title-online-safety-threats-defense {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.3;
}

.threats-paragraph-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.threat-item-online-safety-threats-defense {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.threat-name-online-safety-threats-defense {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Spectral', serif;
}

.threat-desc-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.threat-desc-online-safety-threats-defense:last-child {
  margin-bottom: 0;
}

.tactics-section-online-safety-threats-defense {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.tactics-content-online-safety-threats-defense {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tactics-header-online-safety-threats-defense {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tactics-title-online-safety-threats-defense {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.3;
}

.tactics-subtitle-online-safety-threats-defense {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
}

.tactics-columns-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tactics-text-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.tactics-image-block-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.tactics-image-online-safety-threats-defense {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tactics-paragraph-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.tactic-block-online-safety-threats-defense {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(245, 158, 11, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--color-secondary);
}

.tactic-block-online-safety-threats-defense:last-child {
  margin-bottom: 0;
}

.tactic-heading-online-safety-threats-defense {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tactic-text-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.disclaimer-section-online-safety-threats-defense {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.disclaimer-content-online-safety-threats-defense {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer-box-online-safety-threats-defense {
  max-width: 900px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.disclaimer-title-online-safety-threats-defense {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Spectral', serif;
}

.disclaimer-text-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.protection-section-online-safety-threats-defense {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.protection-content-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.protection-image-block-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-image-online-safety-threats-defense {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.protection-text-online-safety-threats-defense {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-title-online-safety-threats-defense {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.3;
}

.protection-paragraph-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.defense-item-online-safety-threats-defense {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-radius: 6px;
  border-left: 3px solid var(--color-secondary);
}

.defense-item-online-safety-threats-defense:last-child {
  margin-bottom: 0;
}

.defense-heading-online-safety-threats-defense {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.defense-text-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-section-online-safety-threats-defense {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.conclusion-content-online-safety-threats-defense {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-online-safety-threats-defense {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.3;
}

.conclusion-text-online-safety-threats-defense {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
  text-align: left;
}

.conclusion-text-online-safety-threats-defense:last-child {
  margin-bottom: 0;
}

.author-section-online-safety-threats-defense {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 4rem) 0;
}

.author-content-online-safety-threats-defense {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.author-card-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}

.author-image-wrapper-online-safety-threats-defense {
  flex-shrink: 0;
}

.author-image-online-safety-threats-defense {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.author-info-online-safety-threats-defense {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.author-name-online-safety-threats-defense {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: 'Spectral', serif;
}

.author-link-online-safety-threats-defense {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-link-online-safety-threats-defense:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.author-title-online-safety-threats-defense {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-accent);
  font-weight: 600;
  margin: 0;
}

.author-bio-online-safety-threats-defense {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.related-section-online-safety-threats-defense {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.related-content-online-safety-threats-defense {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-online-safety-threats-defense {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: 'Spectral', serif;
  line-height: 1.3;
  text-align: center;
}

.related-list-online-safety-threats-defense {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-item-online-safety-threats-defense {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
}

.related-link-online-safety-threats-defense {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.related-link-online-safety-threats-defense:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.1);
}

.related-link-online-safety-threats-defense:hover .related-item-title-online-safety-threats-defense {
  color: var(--color-accent);
}

.related-item-image-online-safety-threats-defense {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
}

.related-item-image-online-safety-threats-defense img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-item-title-online-safety-threats-defense {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 600;
  font-family: 'Spectral', serif;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.related-item-description-online-safety-threats-defense {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero-content-online-safety-threats-defense,
  .intro-content-online-safety-threats-defense,
  .threats-content-online-safety-threats-defense,
  .tactics-columns-online-safety-threats-defense,
  .protection-content-online-safety-threats-defense {
    flex-direction: column;
    align-items: center;
  }

  .hero-text-block-online-safety-threats-defense,
  .hero-image-block-online-safety-threats-defense,
  .intro-text-online-safety-threats-defense,
  .intro-image-block-online-safety-threats-defense,
  .threats-text-online-safety-threats-defense,
  .threats-image-block-online-safety-threats-defense,
  .tactics-text-online-safety-threats-defense,
  .tactics-image-block-online-safety-threats-defense,
  .protection-image-block-online-safety-threats-defense,
  .protection-text-online-safety-threats-defense {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-list-online-safety-threats-defense {
    flex-direction: column;
    align-items: center;
  }

  .related-item-online-safety-threats-defense {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title-online-safety-threats-defense {
    font-size: 1.75rem;
  }

  .intro-title-online-safety-threats-defense,
  .threats-title-online-safety-threats-defense,
  .tactics-title-online-safety-threats-defense,
  .protection-title-online-safety-threats-defense {
    font-size: 1.5rem;
  }

  .conclusion-title-online-safety-threats-defense {
    font-size: 1.5rem;
  }

  .breadcrumbs-online-safety-threats-defense {
    flex-wrap: wrap;
  }

  .author-card-online-safety-threats-defense {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-image-wrapper-online-safety-threats-defense {
    flex-shrink: 0;
  }

  .author-info-online-safety-threats-defense {
    align-items: center;
  }
}

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

html, body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 600;
}

p, span, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.cybersecurity-expertise-main {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-section-expertise {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-content-expertise {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-header-expertise {
  text-align: center;
  max-width: 900px;
}

.hero-label-expertise {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.hero-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 700px;
}

.hero-image-expertise {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.mission-section-expertise {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.mission-content-expertise {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.mission-text-expertise {
  max-width: 1000px;
}

.mission-label-expertise {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.mission-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-lg);
}

.mission-description-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.mission-description-expertise p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

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

.expertise-cards-expertise {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.expertise-card-expertise {
  flex: 1 1 calc(50% - var(--spacing-md));
  min-width: 250px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

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

.expertise-icon-expertise {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.expertise-card-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: var(--spacing-sm);
}

.expertise-card-text-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.approach-section-expertise {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.approach-content-expertise {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-expertise {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.approach-label-expertise {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.approach-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.approach-subtitle-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.methodology-steps-expertise {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.step-expertise {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-expertise {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  min-width: 80px;
  font-family: var(--font-heading);
}

.step-content-expertise {
  flex: 1;
}

.step-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.step-description-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  line-height: 1.7;
}

.values-section-expertise {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.values-content-expertise {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.values-header-expertise {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.values-label-expertise {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.values-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.values-subtitle-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.values-grid-expertise {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.value-item-expertise {
  flex: 1 1 calc(50% - var(--spacing-md));
  min-width: 240px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.value-item-expertise:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-tertiary);
}

.value-icon-expertise {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.value-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.value-description-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.specialization-section-expertise {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.specialization-content-expertise {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.specialization-text-expertise {
  max-width: 1000px;
}

.specialization-label-expertise {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.specialization-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-lg);
}

.specialization-description-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.specialization-description-expertise p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.specialization-image-expertise {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.disclaimer-section-expertise {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 2px solid var(--color-border);
}

.disclaimer-content-expertise {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 900px;
}

.disclaimer-header-expertise {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.disclaimer-icon-expertise {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-title-expertise {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.disclaimer-text-expertise {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .expertise-card-expertise {
    flex: 1 1 100%;
  }

  .value-item-expertise {
    flex: 1 1 100%;
  }

  .step-expertise {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .step-number-expertise {
    min-width: auto;
  }

  .hero-image-expertise,
  .specialization-image-expertise {
    max-height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .expertise-card-expertise {
    flex: 1 1 calc(50% - var(--spacing-md));
  }

  .value-item-expertise {
    flex: 1 1 calc(50% - var(--spacing-md));
  }
}

@media (min-width: 1024px) {
  .expertise-card-expertise {
    flex: 1 1 calc(33.333% - var(--spacing-md));
  }

  .value-item-expertise {
    flex: 1 1 calc(33.333% - var(--spacing-md));
  }

  .step-expertise {
    gap: var(--spacing-xl);
  }
}

.author-profile-petr-svoboda {
  width: 100%;
  background: var(--color-bg-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}

.btn-primary-petr-svoboda {
  background: var(--color-accent);
  color: #000000;
}

.btn-primary-petr-svoboda:hover {
  background: var(--color-accent-hover);
  opacity: 0.9;
}

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

.btn-secondary-petr-svoboda:hover {
  background: var(--color-accent);
  color: #000000;
}

.hero-section-petr-svoboda {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  max-width: 600px;
  width: 100%;
}

.hero-tag-petr-svoboda {
  display: inline-block;
  background: var(--color-bg-card);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  width: fit-content;
}

.hero-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.hero-cta-petr-svoboda {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
  padding-top: 1rem;
}

.hero-image-petr-svoboda {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.author-photo-petr-svoboda {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-content-petr-svoboda {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text-petr-svoboda {
    flex: 1 1 55%;
    max-width: none;
  }

  .hero-image-petr-svoboda {
    flex: 1 1 40%;
    max-width: 400px;
  }
}

.origin-section-petr-svoboda {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.origin-content-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.origin-header-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
}

.origin-tag-petr-svoboda {
  display: inline-block;
  background: var(--color-bg-card);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
}

.origin-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
}

.origin-story-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.story-block-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-accent);
  border-radius: 0.5rem;
}

.story-year-petr-svoboda {
  color: var(--color-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.story-text-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.7;
}

.expertise-section-petr-svoboda {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.expertise-header-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
}

.expertise-tag-petr-svoboda {
  display: inline-block;
  background: var(--color-bg-card);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
}

.expertise-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
}

.expertise-subtitle-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-cards-petr-svoboda {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.expertise-card-petr-svoboda {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.expertise-card-petr-svoboda:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon-petr-svoboda {
  width: 60px;
  height: 60px;
  background: var(--color-bg-tertiary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-accent);
}

.card-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.card-text-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .expertise-cards-petr-svoboda {
    justify-content: space-between;
  }

  .expertise-card-petr-svoboda {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .expertise-card-petr-svoboda {
    flex: 1 1 calc(33.333% - 1.35rem);
  }
}

.philosophy-section-petr-svoboda {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.philosophy-content-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.philosophy-header-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
}

.philosophy-tag-petr-svoboda {
  display: inline-block;
  background: var(--color-bg-card);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
}

.philosophy-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
}

.philosophy-split-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.philosophy-text-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.philosophy-paragraph-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  line-height: 1.7;
}

.philosophy-values-petr-svoboda {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1rem;
}

.value-item-petr-svoboda {
  flex: 1 1 100%;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-number-petr-svoboda {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: #000000;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.value-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.value-text-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.9vw, 1rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .philosophy-split-petr-svoboda {
    flex-direction: row;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: flex-start;
  }

  .philosophy-text-petr-svoboda {
    flex: 1 1 55%;
  }

  .credentials-box-petr-svoboda {
    flex: 1 1 40%;
  }

  .value-item-petr-svoboda {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

.credentials-box-petr-svoboda {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.credentials-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.credential-item-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.credential-item-petr-svoboda:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.credential-label-petr-svoboda {
  color: var(--color-accent);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.credential-value-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.6;
}

.content-section-petr-svoboda {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-area-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.content-header-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
}

.content-tag-petr-svoboda {
  display: inline-block;
  background: var(--color-bg-card);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
}

.content-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
}

.content-subtitle-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.content-grid-petr-svoboda {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.content-card-petr-svoboda {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-card-petr-svoboda:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-label-petr-svoboda {
  display: inline-block;
  background: var(--color-bg-tertiary);
  color: var(--color-accent);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  font-weight: 600;
  width: fit-content;
}

.card-heading-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.card-link-petr-svoboda {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link-petr-svoboda:hover {
  color: var(--color-accent);
}

.card-description-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.6;
}

.card-meta-petr-svoboda {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.8vw, 0.9rem);
  font-weight: 600;
  margin-top: 0.5rem;
}

.content-cta-petr-svoboda {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .content-grid-petr-svoboda {
    justify-content: space-between;
  }

  .content-card-petr-svoboda {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .content-card-petr-svoboda {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

.contact-section-petr-svoboda {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.contact-content-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.contact-box-petr-svoboda {
  background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.contact-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(1.4rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.contact-text-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  line-height: 1.7;
}

.contact-info-petr-svoboda {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.info-item-petr-svoboda {
  flex: 1 1 100%;
  min-width: 240px;
  max-width: 300px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon-petr-svoboda {
  width: 50px;
  height: 50px;
  background: var(--color-bg-tertiary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-text-petr-svoboda {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-title-petr-svoboda {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
}

.info-value-petr-svoboda {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .contact-info-petr-svoboda {
    justify-content: space-between;
  }

  .info-item-petr-svoboda {
    flex: 1 1 calc(33.333% - 1.35rem);
  }
}

@media (max-width: 767px) {
  .hero-cta-petr-svoboda {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.faq-page {
  width: 100%;
  overflow: hidden;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--spacing-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 600;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-item[data-active="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), opacity var(--transition-base);
  opacity: 0;
  padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
}

.faq-item[data-active="true"] .faq-item__answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl) var(--spacing-md);
}

.faq-cta__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.faq-cta__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  width: fit-content;
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.faq-cta__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-cta__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.faq-resources {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
  border-top: 1px solid var(--color-border-light);
}

.faq-resources__container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-resources__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-2xl) 0;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.faq-resources__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.faq-resources__card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  display: block;
}

.faq-resources__card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-resources__card-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-resources__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.faq-resources__card-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .faq-content {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .faq-cta {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .faq-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
  }

  .faq-resources {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .faq-resources__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .faq-item__trigger {
    padding: var(--spacing-xl);
  }

  .faq-item__answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl) var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 4rem var(--spacing-lg);
  }

  .faq-content {
    padding: 4rem var(--spacing-lg);
  }

  .faq-cta {
    padding: 4rem var(--spacing-lg);
  }

  .faq-resources {
    padding: 4rem var(--spacing-lg);
  }

  .faq-resources__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.services-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  margin: 0;
  line-height: 1.6;
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
}

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

.service-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 700;
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.65;
  margin: 0;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
}

.services-cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.3;
}

.services-cta-text {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  line-height: 1.6;
  margin: 0 0 var(--spacing-xl) 0;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid var(--color-primary);
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  text-decoration: none;
}

.services-cta-button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .services-content {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .service-card {
    padding: var(--spacing-xl);
  }

  .services-cta {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--spacing-lg);
  }

  .services-content {
    padding: 4rem var(--spacing-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .services-cta {
    padding: 4rem var(--spacing-lg);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.secure-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.secure-docs main {
  width: 100%;
}

.secure-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.secure-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.secure-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  margin-top: 0;
  line-height: 1.3;
}

.secure-docs .last-updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
  font-style: italic;
}

.secure-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.secure-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.secure-docs ul {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.secure-docs li {
  margin-bottom: var(--spacing-sm);
}

.secure-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.secure-docs .section {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid var(--color-border-light);
}

.secure-docs .section:last-child {
  border-bottom: none;
}

.secure-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-2xl);
}

.secure-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.secure-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.secure-docs .contact-item {
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .secure-docs .content {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .secure-docs .contact-section {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .secure-docs .content {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .secure-docs h1 {
    margin-bottom: var(--spacing-sm);
  }

  .secure-docs h2 {
    margin-top: var(--spacing-xl);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.thank-page {
  background-color: var(--color-bg-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-section {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-lg) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-wrapper {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

.thank-icon-container {
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon {
  width: 80px;
  height: 80px;
  color: var(--color-success);
  stroke-width: 1.5;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.thank-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 600;
  text-align: center;
  display: inline-block;
  min-width: 200px;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-wrapper {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .thank-icon {
    width: 100px;
    height: 100px;
  }

  .thank-section {
    padding: var(--spacing-xl) 0;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }

  .thank-wrapper {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-section {
    padding: var(--spacing-2xl) 0;
  }

  .thank-title {
    margin-bottom: var(--spacing-lg);
  }

  .btn {
    padding: var(--spacing-md) var(--spacing-2xl);
    min-width: 240px;
  }
}

@media (min-width: 1024px) {
  .thank-wrapper {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  .thank-section {
    padding: var(--spacing-3xl) 0;
  }

  .btn {
    padding: var(--spacing-md) var(--spacing-3xl);
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .thank-page {
    min-height: auto;
  }

  .thank-section {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  .thank-wrapper {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .thank-icon {
    width: 70px;
    height: 70px;
  }

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

  .btn {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

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

html,
body {
  height: 100%;
  width: 100%;
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-shield {
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  opacity: 0.15;
  color: var(--color-primary);
}

.error-shield svg {
  width: 100%;
  height: 100%;
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.error-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-family: var(--font-primary);
}

.error-details {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.error-subtext {
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-family: var(--font-primary);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: clamp(1rem, 1.05vw + 0.5rem, 1.15rem);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .error-shield {
    right: -10%;
  }

  .error-details {
    padding: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .error-wrapper {
    gap: var(--spacing-2xl);
  }

  .error-shield {
    right: 0;
  }

  .error-details {
    padding: var(--spacing-xl) var(--spacing-2xl);
  }
}

@media (max-width: 480px) {
  .error-shield {
    display: none;
  }

  .error-wrapper {
    gap: var(--spacing-lg);
  }
}

.contact-say-hello {
  width: 100%;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-say-hello-hero {
  width: 100%;
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.contact-say-hello-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.contact-say-hello-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.contact-say-hello-hero-subtitle {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: var(--spacing-3xl) 0;
  }
}

.contact-say-hello-main {
  width: 100%;
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-say-hello-main-content {
  width: 100%;
  padding: 0 var(--spacing-md);
}

.contact-say-hello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  width: 100%;
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .contact-say-hello-form-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

  .contact-say-hello-main {
    padding: var(--spacing-3xl) 0;
  }
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-say-hello-label {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  font-family: var(--font-primary);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  line-height: 1.5;
  transition: border-color var(--transition-base), background-color var(--transition-base);
  box-sizing: border-box;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card);
}

.contact-say-hello-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-say-hello-submit {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 700;
  font-family: var(--font-primary);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-say-hello-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
}

.contact-say-hello-form-note {
  font-size: clamp(0.8rem, 0.85vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-say-hello-form-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-say-hello-form-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-info-block {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.contact-say-hello-info-title {
  font-size: clamp(1.15rem, 2.5vw + 0.5rem, 1.4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-lg) 0;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-border-light);
}

.contact-say-hello-info-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-say-hello-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-say-hello-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-say-hello-info-text {
  flex: 1;
  min-width: 0;
}

.contact-say-hello-info-label {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-xs) 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-say-hello-info-value {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.6;
}

.contact-say-hello-info-secondary {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.contact-say-hello-info-secondary-title {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.contact-say-hello-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-say-hello-info-list-item {
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  padding-left: var(--spacing-lg);
  position: relative;
  line-height: 1.6;
}

.contact-say-hello-info-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-say-hello-cta {
  width: 100%;
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-light);
  overflow: hidden;
}

.contact-say-hello-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.contact-say-hello-cta-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.3;
}

.contact-say-hello-cta-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-xl) 0;
  line-height: 1.7;
}

.contact-say-hello-cta-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
}

.contact-say-hello-cta-button {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  font-weight: 700;
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
}

.contact-say-hello-cta-button-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: 2px solid var(--color-primary);
}

.contact-say-hello-cta-button-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-say-hello-cta-button-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.contact-say-hello-cta-button-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .contact-say-hello-cta {
    padding: var(--spacing-3xl) 0;
  }

  .contact-say-hello-cta-links {
    flex-direction: row;
    justify-content: center;
  }

  .contact-say-hello-cta-button {
    flex: 1;
    max-width: 250px;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-main {
    padding: 4rem 0;
  }

  .contact-say-hello-hero {
    padding: 4rem 0;
  }

  .contact-say-hello-grid {
    gap: var(--spacing-3xl);
  }
}
.header-cyber-vault-hamburger,.header-cyber-vault-mobile-close,.header-cyber-vault-mobile-toggle{
  width: 34px;
}

.header-cyber-vault-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}

.container{
  display: block !important;
}

html{
  scroll-padding-top: 80px;
}

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

input,textarea,select{
  max-width: 100%;
  box-sizing: border-box;
}

#cookieBanner{
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.card img,.portfolio-card img,[class*="-card"] img{
  flex-shrink: 0;
  align-self: flex-start;
  max-width: 100%;
  height: auto;
}

.header-cyber-vault-mobile-menu{
  padding-top: max(env(safe-area-inset-top), 0px);
}
@media (max-width: 480px){
  .header-cyber-vault-mobile-menu{
    max-width: 100%;
  }
}

.header-cyber-vault-mobile-menu.active{
  z-index: 999;
}

.header-cyber-vault-mobile-toggle[aria-expanded="true"]{
  display: none;
}

@media (max-width: 768px) {
  .prime-featured-card-image {
    aspect-ratio: 6 / 9;
  }
}
