
    @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --color-secondary: #3b82f6;
  --color-accent-alt: #14b8a6;
  
  --font-heading: 'Raleway', sans-serif;
  --font-primary: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.65;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

section {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-align: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-2px);
}

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

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

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.fas, .far, .fal, .fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.flex {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

.grid-cols-2 {
  grid-template-columns: 1fr;
}

.grid-cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.py-1 { padding: var(--space-sm) 0; }
.py-2 { padding: var(--space-md) 0; }
.py-3 { padding: var(--space-lg) 0; }
.py-4 { padding: var(--space-xl) 0; }

.px-1 { padding: 0 var(--space-sm); }
.px-2 { padding: 0 var(--space-md); }
.px-3 { padding: 0 var(--space-lg); }
.px-4 { padding: 0 var(--space-xl); }

.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

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

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

.transition-all { transition: all 0.3s ease; }

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

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

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

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

label {
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success {
  color: #10b981;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-lg) 0;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-box-large {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.list-check li::before {
  content: '';
  min-width: 24px;
  height: 24px;
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
}

.list-check li .fas {
  position: absolute;
  font-size: 0.75rem;
  color: var(--color-primary);
  display: none;
}

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  }
}

.animate-fade {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}
.header-chrono-vault {
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: static;
    z-index: 100;
  }

  .header-chrono-vault-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: clamp(4.5rem, 10vw, 5.5rem);
    gap: 2rem;
  }

  .header-chrono-vault-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 101;
  }

  .header-chrono-vault-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-chrono-vault-brand:hover .header-chrono-vault-logo-text {
    color: var(--color-primary-hover);
  }

  .header-chrono-vault-desktop-nav {
    display: none;
    align-items: center;
    gap: 0;
    flex: 1;
  }

  .header-chrono-vault-nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
  }

  .header-chrono-vault-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .header-chrono-vault-nav-link:hover::after {
    width: calc(100% - 2.5rem);
  }

  .header-chrono-vault-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #0f172a;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    letter-spacing: 0.3px;
  }

  .header-chrono-vault-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
  }

  .header-chrono-vault-cta-button:active {
    transform: translateY(-1px);
    transition-duration: 150ms;
  }

  .header-chrono-vault-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 102;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .header-chrono-vault-mobile-toggle:hover {
    color: var(--color-primary-hover);
  }

  .header-chrono-vault-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-md);
  }

  .header-chrono-vault-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg-secondary);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

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

  .header-chrono-vault-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
  }

  .header-chrono-vault-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .header-chrono-vault-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-md);
  }

  .header-chrono-vault-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    flex: 1;
  }

  .header-chrono-vault-mobile-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem clamp(1rem, 4vw, 1.5rem);
    border-left: 3px solid transparent;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
  }

  .header-chrono-vault-mobile-link:hover {
    background: rgba(245, 158, 11, 0.08);
    border-left-color: var(--color-primary);
    color: var(--color-primary);
    padding-left: calc(clamp(1rem, 4vw, 1.5rem) + 4px);
  }

  .header-chrono-vault-mobile-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .header-chrono-vault-mobile-cta {
    margin: 1.5rem clamp(1rem, 4vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #0f172a;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    flex-shrink: 0;
  }

  .header-chrono-vault-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
  }

  .header-chrono-vault-mobile-cta:active {
    transform: translateY(0);
    transition-duration: 150ms;
  }

  .header-chrono-vault-mobile-cta:focus-visible {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
  }

  @media (min-width: 768px) {
    .header-chrono-vault-container {
      height: clamp(5rem, 10vw, 6rem);
      padding: 0 clamp(1.5rem, 5vw, 2.5rem);
    }

    .header-chrono-vault-desktop-nav {
      display: flex;
    }

    .header-chrono-vault-cta-button {
      display: inline-flex;
    }

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

    .header-chrono-vault-mobile-menu {
      display: none !important;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-chrono-vault-nav-link,
    .header-chrono-vault-cta-button,
    .header-chrono-vault-mobile-toggle,
    .header-chrono-vault-mobile-link,
    .header-chrono-vault-mobile-cta,
    .header-chrono-vault-logo-text,
    .header-chrono-vault-mobile-menu {
      transition-duration: 0.01ms !important;
    }
  }

    .watch-care-hub {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-primary);
}

.hero-glow-primary {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  top: 20%;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 280px;
  height: 320px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 320px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-drift-element {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(15deg);
  z-index: 1;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.hero-line-accent {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-detail {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-ambient-field {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-align: center;
  gap: 0.5rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

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

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-secondary);
}

.about-glow-accent {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-detail-1 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 300px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-detail-2 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  top: 40%;
  right: 25%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-float-panel {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 220px;
  height: 160px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.about-ambient-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
}

.about-description {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.about-description-secondary {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.about-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #e2e8f0;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.benefit-item .fas {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-featured-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }

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

  .about-featured-image {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 6rem 0;
  }
}

.services-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-primary);
}

.services-gradient-mesh {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.services-glow-left {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.services-glow-right {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.services-shape-accent {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.services-float-card {
  position: absolute;
  top: 25%;
  left: 5%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 8px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.services-corner-accent {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.services-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.services-subtitle {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.service-card-title {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.service-card-text {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.65;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .services-section {
    padding: 5rem 0;
  }

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

@media (min-width: 1024px) {
  .services-section {
    padding: 6rem 0;
  }

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

.process-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-secondary);
}

.process-glow-accent {
  position: absolute;
  top: 15%;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 320px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-shape-2 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.process-line-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.process-float-element {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 160px;
  height: 120px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.process-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.process-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-subtitle {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 10;
}

.process-step {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.step-title {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.step-description {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .process-section {
    padding: 5rem 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (min-width: 1024px) {
  .process-section {
    padding: 6rem 0;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-primary);
}

.featured-glow-primary {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-secondary {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-accent {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 300px;
  height: 250px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.featured-float-panel-1 {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.featured-float-panel-2 {
  position: absolute;
  bottom: 25%;
  right: 10%;
  width: 180px;
  height: 140px;
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.featured-line-element {
  position: absolute;
  top: 40%;
  left: 25%;
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.featured-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.featured-subtitle {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.featured-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-post-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-post-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.featured-post-large {
  grid-column: 1 / -1;
}

.post-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.post-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-in-out;
}

.featured-post-card:hover .post-featured-image {
  transform: scale(1.05);
}

.post-content {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.post-title {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.post-excerpt {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  flex-grow: 1;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 300ms ease-in-out;
  width: fit-content;
}

.post-link:hover {
  gap: 1rem;
  color: var(--color-primary-hover);
}

.featured-posts-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.featured-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .featured-section {
    padding: 5rem 0;
  }

  .featured-post-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .featured-post-large .post-image-wrapper {
    height: 100%;
    min-height: 300px;
  }

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

@media (min-width: 1024px) {
  .featured-section {
    padding: 6rem 0;
  }

  .featured-post-large {
    grid-template-columns: 1fr 1fr;
  }

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

.testimony-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-secondary);
}

.testimony-glow-left {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimony-glow-right {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.testimony-shape-accent {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.testimony-float-element {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.testimony-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.testimony-quote-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-text {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-author {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
}

.testimony-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimony-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
}

.testimony-description {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.65;
}

.testimony-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.metric-number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
}

.metric-label {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimony-closing {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .testimony-section {
    padding: 5rem 0;
  }

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

@media (min-width: 1024px) {
  .testimony-section {
    padding: 6rem 0;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-primary);
}

.contact-glow-primary {
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-secondary {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-detail {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 300px;
  height: 250px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-accent-line {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-float-panel {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.contact-ambient-field {
  position: absolute;
  top: 50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 10;
}

.contact-form-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
}

.contact-intro {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 300ms ease-in-out;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

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

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

.form-agreement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
}

.form-checkbox-label input {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.privacy-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 300ms ease-in-out;
}

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

.form-submit-btn {
  background: var(--color-primary);
  color: #000000;
  border: 2px solid var(--color-primary);
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.form-submit-btn:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block-title {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.info-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-step {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.info-step-number {
  min-width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  flex-shrink: 0;
}

.info-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-step-content h4 {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.info-step-content p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.info-highlight {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.highlight-text {
  color: #f1f5f9;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 0;
  }

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

@media (min-width: 1024px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-secondary);
}

.faq-glow-accent {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.faq-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 320px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.faq-shape-2 {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.faq-line-element {
  position: absolute;
  top: 45%;
  right: 25%;
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.faq-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.faq-subtitle {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 10;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 300ms ease-in-out;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.2);
}

.faq-question {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.faq-answer {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.65;
}

.faq-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-featured-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }

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

  .faq-text-block {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg-primary);
}

.cta-glow-primary {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-secondary {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 300px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.cta-float-element {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.cta-corner-detail {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.cta-trust-text {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.6;
  max-width: 500px;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.cookie-text {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
}

.cookie-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 300ms ease-in-out;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: clamp(0.8rem, 1vw + 0.25rem, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  border: 1px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
}

.cookie-accept:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.cookie-decline {
  background: transparent;
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: flex-start;
    width: 100%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 10;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-about h3 {
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  max-width: 600px;
}

.footer-nav-section,
.footer-contact-section,
.footer-legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-section h4,
.footer-contact-section h4,
.footer-legal-section h4 {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  font-family: var(--font-heading);
  margin: 0;
}

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

.footer-link,
.footer-legal-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  width: fit-content;
}

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

.footer-link:focus-visible,
.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.footer-copyright {
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

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

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    gap: 1.25rem;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: flex-start;
  }

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

  .footer-nav-section {
    grid-column: 2 / 3;
  }

  .footer-contact-section {
    grid-column: 3 / 4;
  }

  .footer-legal-section {
    grid-column: 4 / 5;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-link,
  .footer-legal-link {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-link,
  .footer-legal-link {
    transition: none;
  }

  .footer-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }
}
    

.category-page-watch-restoration {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-watch-restoration {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--color-bg-primary);
}

.hero-glow-primary-watch {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary-watch {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-accent-watch {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-watch {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 65%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-element-watch {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-glow-watch {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent-watch {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-watch-restoration {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.section-tag-watch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-section-watch-restoration h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle-watch {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-stats-watch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-watch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-watch {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.stat-label-watch {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.9;
}

.posts-section-watch-restoration {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--color-bg-secondary);
}

.posts-header-watch {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.posts-section-watch-restoration h2 {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.posts-section-watch-restoration > .container > p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-watch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.card-watch-restoration {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
}

.card-watch-restoration:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-watch-restoration img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-watch-restoration h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.25;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0.5rem;
  font-weight: 700;
}

.card-watch-restoration p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  flex-grow: 1;
}

.card-watch-restoration a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.card-watch-restoration a::after {
  content: '';
  display: inline-block;
  transition: transform 0.3s ease;
}

.card-watch-restoration a:hover::after {
  transform: translateX(4px);
}

.insight-section-watch-restoration {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--color-bg-tertiary);
}

.featured-quote-watch {
  display: block;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  border-radius: var(--radius-lg);
}

.featured-quote-watch p {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.featured-quote-watch cite {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.insight-content-watch {
  max-width: 800px;
  margin: 0 auto;
}

.insight-content-watch h2 {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.insight-content-watch p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.insight-content-watch p:last-child {
  margin-bottom: 0;
}

.process-section-watch-restoration {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--color-bg-primary);
}

.process-header-watch {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.process-header-watch h2 {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

.process-steps-watch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.step-item-watch {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-watch {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-watch h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-content-watch p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .hero-section-watch-restoration {
    padding: clamp(4rem, 7vw, 7rem) 0;
  }

  .posts-section-watch-restoration {
    padding: clamp(4rem, 7vw, 7rem) 0;
  }

  .insight-section-watch-restoration {
    padding: clamp(4rem, 7vw, 7rem) 0;
  }

  .process-section-watch-restoration {
    padding: clamp(4rem, 7vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-watch-restoration {
    padding: 6rem 0;
  }

  .posts-section-watch-restoration {
    padding: 6rem 0;
  }

  .insight-section-watch-restoration {
    padding: 6rem 0;
  }

  .process-section-watch-restoration {
    padding: 6rem 0;
  }

  .posts-grid-watch {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.post-restaurering-antika-klockor {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.restaurering-antika-klockor-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}

.restaurering-antika-klockor-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.restaurering-antika-klockor-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.restaurering-antika-klockor-breadcrumbs span {
  color: var(--color-text-muted);
}

.restaurering-antika-klockor-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 4rem 0 3rem 0;
}

.restaurering-antika-klockor-deco-glow-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-deco-glow-2 {
  position: absolute;
  top: 30%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-deco-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.restaurering-antika-klockor-deco-shape-2 {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.restaurering-antika-klockor-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.restaurering-antika-klockor-hero-text h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-lead {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.restaurering-antika-klockor-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.restaurering-antika-klockor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.restaurering-antika-klockor-badge i {
  font-size: 0.875rem;
}

.restaurering-antika-klockor-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.restaurering-antika-klockor-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.restaurering-antika-klockor-introduction {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-introduction {
    padding: 6rem 0;
  }
}

.restaurering-antika-klockor-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.restaurering-antika-klockor-intro-content p {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.restaurering-antika-klockor-intro-image {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.restaurering-antika-klockor-intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.restaurering-antika-klockor-process {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-process {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-process {
    padding: 6rem 0;
  }
}

.restaurering-antika-klockor-deco-accent-1 {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-deco-accent-2 {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.restaurering-antika-klockor-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.restaurering-antika-klockor-section-header h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-section-header p {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.restaurering-antika-klockor-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.restaurering-antika-klockor-step-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.restaurering-antika-klockor-step-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.restaurering-antika-klockor-step-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

.restaurering-antika-klockor-step-content h3 {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-step-content p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.restaurering-antika-klockor-process-image {
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.restaurering-antika-klockor-process-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.restaurering-antika-klockor-considerations {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-considerations {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-considerations {
    padding: 6rem 0;
  }
}

.restaurering-antika-klockor-deco-mesh-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-considerations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-considerations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-considerations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.restaurering-antika-klockor-consideration-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.restaurering-antika-klockor-consideration-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.restaurering-antika-klockor-consideration-icon {
  width: 56px;
  height: 56px;
  background: rgba(20, 184, 166, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-alt);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.restaurering-antika-klockor-consideration-card h3 {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-consideration-card p {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.restaurering-antika-klockor-insights {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-insights {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-insights {
    padding: 6rem 0;
  }
}

.restaurering-antika-klockor-deco-shape-3 {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-insight-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-insight-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.restaurering-antika-klockor-insight-text h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-insight-text p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.restaurering-antika-klockor-featured-quote {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  position: relative;
  z-index: 10;
}

.restaurering-antika-klockor-featured-quote p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #f1f5f9;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.restaurering-antika-klockor-featured-quote cite {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.restaurering-antika-klockor-insight-image {
  display: flex;
  justify-content: center;
}

.restaurering-antika-klockor-insight-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.restaurering-antika-klockor-conclusion {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-conclusion {
    padding: 6rem 0;
  }
}

.restaurering-antika-klockor-deco-glow-3 {
  position: absolute;
  bottom: -15%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.restaurering-antika-klockor-deco-line {
  position: absolute;
  top: 20%;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.restaurering-antika-klockor-conclusion-content {
  position: relative;
  z-index: 10;
}

.restaurering-antika-klockor-conclusion-content h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-conclusion-content p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.restaurering-antika-klockor-cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(59, 130, 246, 0.1));
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
  margin-top: 2.5rem;
}

.restaurering-antika-klockor-cta-box h3 {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-cta-box p {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin-bottom: 1.5rem;
}

.restaurering-antika-klockor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-align: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.restaurering-antika-klockor-btn-primary {
  background: var(--color-primary);
  color: #0f172a;
  border: 2px solid var(--color-primary);
}

.restaurering-antika-klockor-btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
}

.restaurering-antika-klockor-disclaimer {
  position: relative;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.08);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  padding: 3rem 0;
}

.restaurering-antika-klockor-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-disclaimer-content {
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.restaurering-antika-klockor-disclaimer-content i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.restaurering-antika-klockor-disclaimer-content h3 {
  color: #ffffff;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-disclaimer-content p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.restaurering-antika-klockor-related {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-related {
    padding: 6rem 0;
  }
}

.restaurering-antika-klockor-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .restaurering-antika-klockor-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .restaurering-antika-klockor-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.restaurering-antika-klockor-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.3s ease;
}

.restaurering-antika-klockor-related-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.restaurering-antika-klockor-related-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.restaurering-antika-klockor-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.restaurering-antika-klockor-related-card:hover .restaurering-antika-klockor-related-image img {
  transform: scale(1.05);
}

.restaurering-antika-klockor-related-content h3 {
  color: #ffffff;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.restaurering-antika-klockor-related-content p {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.restaurering-antika-klockor-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.restaurering-antika-klockor-related-card:hover .restaurering-antika-klockor-read-more {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

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

.post-grundlaggande-klockvard {
  width: 100%;
}

.grundlaggande-klockvard-breadcrumbs-section {
  background: var(--color-bg-primary);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grundlaggande-klockvard-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.grundlaggande-klockvard-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.grundlaggande-klockvard-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.grundlaggande-klockvard-breadcrumb-separator {
  color: var(--color-text-muted);
}

.grundlaggande-klockvard-breadcrumb-current {
  color: var(--color-text-secondary);
}

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

.grundlaggande-klockvard-hero-ambient-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-hero-gradient-mesh {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-hero-accent-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-hero-accent-shape-2 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 30% 70% 40% 60% / 70% 40% 60% 30%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-hero-corner-accent {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-hero-glow-orb {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.post-grundlaggande-klockvard .container {
  position: relative;
  z-index: 10;
}

.grundlaggande-klockvard-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
  .grundlaggande-klockvard-hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

.grundlaggande-klockvard-hero-title {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
}

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

.grundlaggande-klockvard-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.grundlaggande-klockvard-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.grundlaggande-klockvard-meta-badge i {
  font-size: 0.875rem;
}

.grundlaggande-klockvard-hero-image-block {
  display: flex;
  justify-content: center;
}

.grundlaggande-klockvard-hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.grundlaggande-klockvard-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.grundlaggande-klockvard-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grundlaggande-klockvard-stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.grundlaggande-klockvard-stat-label {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.grundlaggande-klockvard-introduction-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-introduction-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .grundlaggande-klockvard-introduction-content {
    grid-template-columns: 1fr 1fr;
  }
}

.grundlaggande-klockvard-intro-heading {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.grundlaggande-klockvard-intro-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.grundlaggande-klockvard-intro-paragraph:last-of-type {
  margin-bottom: 0;
}

.grundlaggande-klockvard-intro-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.grundlaggande-klockvard-daily-care-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-daily-glow {
  position: absolute;
  top: 10%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-daily-shape-accent {
  position: absolute;
  bottom: 15%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-daily-care-content {
  position: relative;
  z-index: 10;
}

.grundlaggande-klockvard-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.grundlaggande-klockvard-section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grundlaggande-klockvard-section-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1vw, 1.5rem);
}

.grundlaggande-klockvard-section-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.grundlaggande-klockvard-steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.grundlaggande-klockvard-step-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.grundlaggande-klockvard-step-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-3px);
}

.grundlaggande-klockvard-step-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: rgba(245, 158, 11, 0.25);
  line-height: 1;
}

.grundlaggande-klockvard-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.grundlaggande-klockvard-step-title {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

.grundlaggande-klockvard-step-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.grundlaggande-klockvard-daily-care-image-block {
  display: flex;
  justify-content: center;
}

.grundlaggande-klockvard-daily-care-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.grundlaggande-klockvard-maintenance-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-maintenance-gradient {
  position: absolute;
  top: -15%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-maintenance-accent-1 {
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-maintenance-accent-2 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-maintenance-content {
  position: relative;
  z-index: 10;
}

.grundlaggande-klockvard-maintenance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grundlaggande-klockvard-maintenance-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.grundlaggande-klockvard-maintenance-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.grundlaggande-klockvard-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.grundlaggande-klockvard-card-title {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

.grundlaggande-klockvard-card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.grundlaggande-klockvard-maintenance-image-block {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.grundlaggande-klockvard-maintenance-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.grundlaggande-klockvard-water-resistance-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-water-mesh {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-water-glow-left {
  position: absolute;
  bottom: 10%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-water-glow-right {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-water-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .grundlaggande-klockvard-water-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

.grundlaggande-klockvard-water-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.grundlaggande-klockvard-water-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.grundlaggande-klockvard-water-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.grundlaggande-klockvard-water-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.grundlaggande-klockvard-water-list li::before {
  content: '';
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
}

.grundlaggande-klockvard-featured-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--radius-md);
}

.grundlaggande-klockvard-featured-quote p {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.grundlaggande-klockvard-featured-quote cite {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
  display: block;
}

.grundlaggande-klockvard-water-image-block {
  display: flex;
  justify-content: center;
}

.grundlaggande-klockvard-water-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.grundlaggande-klockvard-storage-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-storage-accent-1 {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-storage-accent-2 {
  position: absolute;
  bottom: 15%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 45% 55% 35% 65% / 55% 45% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-storage-accent-3 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-storage-content {
  position: relative;
  z-index: 10;
}

.grundlaggande-klockvard-storage-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.grundlaggande-klockvard-storage-tip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.grundlaggande-klockvard-storage-tip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
}

.grundlaggande-klockvard-tip-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: rgba(59, 130, 246, 0.3);
  line-height: 1;
}

.grundlaggande-klockvard-tip-title {
  color: #ffffff;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

.grundlaggande-klockvard-tip-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.grundlaggande-klockvard-storage-image-block {
  display: flex;
  justify-content: center;
}

.grundlaggande-klockvard-storage-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.grundlaggande-klockvard-disclaimer-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.grundlaggande-klockvard-disclaimer-content {
  position: relative;
  z-index: 10;
}

.grundlaggande-klockvard-disclaimer-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .grundlaggande-klockvard-disclaimer-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.grundlaggande-klockvard-disclaimer-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.grundlaggande-klockvard-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.grundlaggande-klockvard-disclaimer-title {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

.grundlaggande-klockvard-disclaimer-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.grundlaggande-klockvard-conclusion-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-conclusion-glow {
  position: absolute;
  top: 10%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-conclusion-shape {
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-conclusion-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .grundlaggande-klockvard-conclusion-content {
    grid-template-columns: 1fr 1fr;
  }
}

.grundlaggande-klockvard-conclusion-text-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.grundlaggande-klockvard-conclusion-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.grundlaggande-klockvard-conclusion-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.grundlaggande-klockvard-conclusion-cta {
  display: flex;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.grundlaggande-klockvard-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.grundlaggande-klockvard-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
}

.grundlaggande-klockvard-conclusion-image-block {
  display: flex;
  justify-content: center;
}

.grundlaggande-klockvard-conclusion-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.grundlaggande-klockvard-related-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.grundlaggande-klockvard-related-mesh {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 65%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-related-accent {
  position: absolute;
  bottom: 10%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.grundlaggande-klockvard-related-content {
  position: relative;
  z-index: 10;
}

.grundlaggande-klockvard-related-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.grundlaggande-klockvard-related-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.grundlaggande-klockvard-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grundlaggande-klockvard-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  text-decoration: none;
}

.grundlaggande-klockvard-related-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.grundlaggande-klockvard-related-card-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.grundlaggande-klockvard-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grundlaggande-klockvard-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.grundlaggande-klockvard-related-card-title {
  color: #ffffff;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.grundlaggande-klockvard-related-card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .grundlaggande-klockvard-hero-content {
    grid-template-columns: 1fr;
  }

  .grundlaggande-klockvard-introduction-content {
    grid-template-columns: 1fr;
  }

  .grundlaggande-klockvard-water-content {
    grid-template-columns: 1fr;
  }

  .grundlaggande-klockvard-conclusion-content {
    grid-template-columns: 1fr;
  }

  .grundlaggande-klockvard-disclaimer-box {
    flex-direction: column;
  }
}

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

.post-verktyg-klockreparation {
  width: 100%;
  margin: 0;
  padding: 0;
}

.verktyg-klockreparation-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.verktyg-klockreparation-hero-deco-1 {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-hero-deco-2 {
  position: absolute;
  bottom: -150px;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-hero-deco-3 {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-hero-deco-4 {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-hero-deco-5 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  position: relative;
  z-index: 10;
}

.verktyg-klockreparation-breadcrumb a {
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.verktyg-klockreparation-breadcrumb a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.verktyg-klockreparation-breadcrumb span {
  color: var(--color-text-secondary);
}

.verktyg-klockreparation-breadcrumb-sep {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.verktyg-klockreparation-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.verktyg-klockreparation-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verktyg-klockreparation-hero-title {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
}

.verktyg-klockreparation-hero-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.verktyg-klockreparation-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1rem;
}

.verktyg-klockreparation-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.verktyg-klockreparation-stat-number {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.verktyg-klockreparation-stat-label {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.verktyg-klockreparation-hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-hero-image {
    display: block;
    position: relative;
  }
}

.verktyg-klockreparation-hero-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.verktyg-klockreparation-introduction {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-introduction {
    padding: 6rem 0;
  }
}

.verktyg-klockreparation-intro-deco-1 {
  position: absolute;
  top: 10%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-intro-deco-2 {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-intro-deco-3 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.verktyg-klockreparation-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verktyg-klockreparation-intro-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.verktyg-klockreparation-intro-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.verktyg-klockreparation-featured-quote {
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-lg);
  font-style: italic;
  margin: 1rem 0;
}

.verktyg-klockreparation-featured-quote p {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.verktyg-klockreparation-featured-quote cite {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-style: normal;
  opacity: 0.9;
}

.verktyg-klockreparation-intro-image {
  display: none;
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-intro-image {
    display: block;
  }
}

.verktyg-klockreparation-intro-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.verktyg-klockreparation-essential-tools {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-essential-tools {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-essential-tools {
    padding: 6rem 0;
  }
}

.verktyg-klockreparation-tools-deco-1 {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.11) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-tools-deco-2 {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.09) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-tools-deco-3 {
  position: absolute;
  top: 40%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-tools-content {
  position: relative;
  z-index: 10;
}

.verktyg-klockreparation-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.verktyg-klockreparation-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.verktyg-klockreparation-section-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.verktyg-klockreparation-section-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.verktyg-klockreparation-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .verktyg-klockreparation-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.verktyg-klockreparation-tool-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.verktyg-klockreparation-tool-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.verktyg-klockreparation-tool-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.verktyg-klockreparation-tool-title {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
}

.verktyg-klockreparation-tool-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.verktyg-klockreparation-advanced-techniques {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-advanced-techniques {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-advanced-techniques {
    padding: 6rem 0;
  }
}

.verktyg-klockreparation-adv-deco-1 {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-adv-deco-2 {
  position: absolute;
  top: 30%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-adv-deco-3 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-adv-deco-4 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-adv-content {
  position: relative;
  z-index: 10;
}

.verktyg-klockreparation-adv-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-adv-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.verktyg-klockreparation-adv-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verktyg-klockreparation-adv-subtitle {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

.verktyg-klockreparation-adv-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.verktyg-klockreparation-adv-image {
  display: none;
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-adv-image {
    display: block;
  }
}

.verktyg-klockreparation-adv-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.verktyg-klockreparation-maintenance-practices {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-maintenance-practices {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-maintenance-practices {
    padding: 6rem 0;
  }
}

.verktyg-klockreparation-maint-deco-1 {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-maint-deco-2 {
  position: absolute;
  bottom: -100px;
  left: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-maint-deco-3 {
  position: absolute;
  top: 50%;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 50% 50% / 50% 60% 30% 40%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-maint-content {
  position: relative;
  z-index: 10;
}

.verktyg-klockreparation-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.verktyg-klockreparation-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.verktyg-klockreparation-step-number {
  color: var(--color-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0.2;
  flex-shrink: 0;
}

.verktyg-klockreparation-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.verktyg-klockreparation-step-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

.verktyg-klockreparation-step-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.verktyg-klockreparation-maint-image {
  display: none;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-maint-image {
    display: block;
  }
}

.verktyg-klockreparation-maint-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.verktyg-klockreparation-conclusion {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-conclusion {
    padding: 6rem 0;
  }
}

.verktyg-klockreparation-conc-deco-1 {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-conc-deco-2 {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-conc-deco-3 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-conc-deco-4 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-conc-deco-5 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 140px;
  height: 140px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-conc-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.verktyg-klockreparation-conc-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.verktyg-klockreparation-conc-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.verktyg-klockreparation-cta-box {
  background: linear-gradient(135deg, var(--color-primary), rgba(245, 158, 11, 0.8));
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 1.5rem;
}

.verktyg-klockreparation-cta-title {
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.verktyg-klockreparation-cta-description {
  color: rgba(15, 23, 42, 0.85);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.verktyg-klockreparation-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #0f172a;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verktyg-klockreparation-cta-link:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.verktyg-klockreparation-disclaimer {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-disclaimer {
    padding: 4rem 0;
  }
}

.verktyg-klockreparation-disc-deco-1 {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-disc-content {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.verktyg-klockreparation-disc-icon {
  color: var(--color-accent-alt);
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.verktyg-klockreparation-disc-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.verktyg-klockreparation-disc-title {
  color: var(--color-accent-alt);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.verktyg-klockreparation-disc-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.verktyg-klockreparation-related {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .verktyg-klockreparation-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-related {
    padding: 6rem 0;
  }
}

.verktyg-klockreparation-rel-deco-1 {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-rel-deco-2 {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.verktyg-klockreparation-rel-content {
  position: relative;
  z-index: 10;
}

.verktyg-klockreparation-rel-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.verktyg-klockreparation-rel-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.verktyg-klockreparation-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .verktyg-klockreparation-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .verktyg-klockreparation-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.verktyg-klockreparation-related-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.verktyg-klockreparation-related-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.verktyg-klockreparation-related-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verktyg-klockreparation-related-card-title {
  color: var(--color-text-primary);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

.verktyg-klockreparation-related-card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.verktyg-klockreparation-related-card-arrow {
  color: var(--color-primary);
  font-size: 1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.verktyg-klockreparation-related-card:hover .verktyg-klockreparation-related-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-diagnostisering-klockkfel {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.diagnostisering-klockkfel-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 8rem) 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-glow-1 {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-shape-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  z-index: 2;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 35% 65% 30% 70% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
  z-index: 3;
  pointer-events: none;
}

.diagnostisering-klockkfel-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 10;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
}

.diagnostisering-klockkfel-breadcrumb-link {
  color: var(--color-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.diagnostisering-klockkfel-breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.diagnostisering-klockkfel-breadcrumb-separator {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.diagnostisering-klockkfel-breadcrumb-current {
  color: var(--color-text-secondary);
}

.diagnostisering-klockkfel-hero-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-hero-title {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: #ffffff;
}

.diagnostisering-klockkfel-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 650px;
  line-height: 1.6;
}

.diagnostisering-klockkfel-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.diagnostisering-klockkfel-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
}

.diagnostisering-klockkfel-hero-image-wrapper {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.diagnostisering-klockkfel-hero-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

.diagnostisering-klockkfel-introduction {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-accent-1 {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-accent-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-intro-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-intro-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 750px;
}

.diagnostisering-klockkfel-intro-image-wrapper {
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.diagnostisering-klockkfel-intro-image {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.diagnostisering-klockkfel-symptoms {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-field-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse 800px 300px at 50% 0%, rgba(245, 158, 11, 0.08), transparent);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-orb-1 {
  position: absolute;
  bottom: 20%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-symptoms-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  line-height: 1.2;
}

.diagnostisering-klockkfel-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 600px;
}

.diagnostisering-klockkfel-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.diagnostisering-klockkfel-symptom-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.diagnostisering-klockkfel-symptom-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.1);
}

.diagnostisering-klockkfel-symptom-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.diagnostisering-klockkfel-symptom-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.diagnostisering-klockkfel-symptom-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.diagnostisering-klockkfel-diagnostic-steps {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-gradient-1 {
  position: absolute;
  top: 10%;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-shape-large {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-steps-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.diagnostisering-klockkfel-step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 767px) {
  .diagnostisering-klockkfel-step-item {
    grid-template-columns: 1fr;
  }
}

.diagnostisering-klockkfel-step-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 100px;
}

.diagnostisering-klockkfel-step-body {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.diagnostisering-klockkfel-step-title {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.diagnostisering-klockkfel-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.diagnostisering-klockkfel-step-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
  display: block;
}

.diagnostisering-klockkfel-when-to-seek {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-accent-3 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-glow-3 {
  position: absolute;
  bottom: 15%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-when-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-highlight-box {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.diagnostisering-klockkfel-highlight-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #f1f5f9;
  line-height: 1.8;
  font-style: italic;
}

.diagnostisering-klockkfel-when-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.diagnostisering-klockkfel-when-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.diagnostisering-klockkfel-when-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.diagnostisering-klockkfel-when-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.diagnostisering-klockkfel-when-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.diagnostisering-klockkfel-when-list li::before {
  content: '';
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.diagnostisering-klockkfel-when-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.diagnostisering-klockkfel-when-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.diagnostisering-klockkfel-prevention {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-shape-3 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 70% 30% 40% 60% / 60% 70% 30% 40%;
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-line-accent {
  position: absolute;
  bottom: 30%;
  right: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.diagnostisering-klockkfel-prevention-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-prevention-intro {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
  line-height: 1.8;
}

.diagnostisering-klockkfel-prevention-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.diagnostisering-klockkfel-prevention-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.diagnostisering-klockkfel-prevention-card:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-5px);
}

.diagnostisering-klockkfel-prevention-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent-alt);
}

.diagnostisering-klockkfel-prevention-card-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.diagnostisering-klockkfel-prevention-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.diagnostisering-klockkfel-conclusion {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-glow-4 {
  position: absolute;
  top: 5%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-accent-4 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-conclusion-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-quote-box {
  background: rgba(245, 158, 11, 0.12);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.diagnostisering-klockkfel-quote-text {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #f1f5f9;
  font-style: italic;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.diagnostisering-klockkfel-quote-source {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
}

.diagnostisering-klockkfel-conclusion-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
}

.diagnostisering-klockkfel-cta-box {
  background: linear-gradient(135deg, var(--color-primary), #fbbf24);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.diagnostisering-klockkfel-cta-title {
  font-size: clamp(1.375rem, 3vw + 0.5rem, 1.875rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.diagnostisering-klockkfel-cta-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.diagnostisering-klockkfel-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 2.75rem);
  background: #0f172a;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #0f172a;
}

.diagnostisering-klockkfel-cta-button:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.diagnostisering-klockkfel-disclaimer {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.diagnostisering-klockkfel-disclaimer-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-disclaimer-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.diagnostisering-klockkfel-disclaimer-box i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.diagnostisering-klockkfel-disclaimer-text {
  flex: 1;
}

.diagnostisering-klockkfel-disclaimer-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.diagnostisering-klockkfel-disclaimer-text p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.diagnostisering-klockkfel-related {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.diagnostisering-klockkfel-deco-accent-5 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-deco-glow-5 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.diagnostisering-klockkfel-related-content {
  position: relative;
  z-index: 10;
}

.diagnostisering-klockkfel-related-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
}

.diagnostisering-klockkfel-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.diagnostisering-klockkfel-related-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.diagnostisering-klockkfel-related-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.diagnostisering-klockkfel-related-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(245, 158, 11, 0.08);
}

.diagnostisering-klockkfel-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.diagnostisering-klockkfel-related-card:hover .diagnostisering-klockkfel-related-card-image img {
  transform: scale(1.05);
}

.diagnostisering-klockkfel-related-card-body {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.diagnostisering-klockkfel-related-card-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.diagnostisering-klockkfel-related-card-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .diagnostisering-klockkfel-hero {
    padding: 2rem 0;
  }

  .diagnostisering-klockkfel-intro-content {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .diagnostisering-klockkfel-symptoms-grid {
    grid-template-columns: 1fr;
  }

  .diagnostisering-klockkfel-when-grid {
    grid-template-columns: 1fr;
  }

  .diagnostisering-klockkfel-prevention-cards {
    grid-template-columns: 1fr;
  }

  .diagnostisering-klockkfel-related-grid {
    grid-template-columns: 1fr;
  }

  .diagnostisering-klockkfel-disclaimer-box {
    flex-direction: column;
    text-align: center;
  }

  .diagnostisering-klockkfel-disclaimer-box i {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .diagnostisering-klockkfel-prevention-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diagnostisering-klockkfel-prevention-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-certifiering-garansi-reparationer {
  width: 100%;
}

.post-certifiering-garansi-reparationer * {
  box-sizing: border-box;
}

.certifiering-garansi-reparationer-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
  overflow: hidden;
}

.certifiering-garansi-reparationer-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.certifiering-garansi-reparationer-breadcrumb-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.certifiering-garansi-reparationer-breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.certifiering-garansi-reparationer-breadcrumb-separator {
  color: var(--color-text-secondary);
  margin: 0 0.25rem;
}

.certifiering-garansi-reparationer-breadcrumb-current {
  color: var(--color-text-secondary);
}

.certifiering-garansi-reparationer-hero-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationer-hero-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  top: -10%;
  left: -5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  bottom: 10%;
  right: -8%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-hero-gradient-field {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.08) 0%, transparent 65%);
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-hero-accent-shape {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  bottom: 5%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.certifiering-garansi-reparationer-hero-floating-element {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  top: 20%;
  right: 5%;
  transform: rotate(15deg);
  z-index: 2;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.certifiering-garansi-reparationer-hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .certifiering-garansi-reparationer-hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.certifiering-garansi-reparationer-hero-text {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.certifiering-garansi-reparationer-hero-title {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
}

.certifiering-garansi-reparationer-hero-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.6;
  max-width: 550px;
}

.certifiering-garansi-reparationer-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.certifiering-garansi-reparationer-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.certifiering-garansi-reparationer-meta-badge i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.certifiering-garansi-reparationer-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(300px, 50vw, 500px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.certifiering-garansi-reparationer-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.certifiering-garansi-reparationer-introduction-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationer-intro-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-intro-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -5%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-introduction-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .certifiering-garansi-reparationer-introduction-content {
    grid-template-columns: 1fr 1fr;
  }
}

.certifiering-garansi-reparationer-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.certifiering-garansi-reparationer-intro-heading {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.certifiering-garansi-reparationer-intro-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.certifiering-garansi-reparationer-intro-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 400px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.certifiering-garansi-reparationer-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.certifiering-garansi-reparationer-standards-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationer-standards-glow-left {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: 20%;
  left: -8%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-standards-glow-right {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  bottom: 15%;
  right: -5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-standards-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-standards-content {
  position: relative;
  z-index: 10;
}

.certifiering-garansi-reparationer-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.certifiering-garansi-reparationen-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.certifiering-garansi-reparationer-standards-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.certifiering-garansi-reparationer-standards-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.certifiering-garansi-reparationer-standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.certifiering-garansi-reparationer-standard-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.certifiering-garansi-reparationer-standard-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.certifiering-garansi-reparationer-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.certifiering-garansi-reparationer-card-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.3;
  font-weight: 700;
}

.certifiering-garansi-reparationer-card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.certifiering-garansi-reparationer-warranty-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationer-warranty-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 5%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-warranty-shape-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-warranty-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-warranty-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .certifiering-garansi-reparationer-warranty-content {
    grid-template-columns: 1fr 1fr;
  }
}

.certifiering-garansi-reparationer-warranty-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.certifiering-garansi-reparationer-warranty-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.certifiering-garansi-reparationer-warranty-paragraph {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.certifiering-garansi-reparationer-warranty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}

.certifiering-garansi-reparationer-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.certifiering-garansi-reparationer-list-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.certifiering-garansi-reparationen-list-text {
  flex: 1;
}

.certifiering-garansi-reparationen-list-text strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.certifiering-garansi-reparationer-featured-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.certifiering-garansi-reparationer-featured-quote p {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.certifiering-garansi-reparationer-featured-quote cite {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.certifiering-garansi-reparationer-warranty-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 400px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.certifiering-garansi-reparationer-warranty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.certifiering-garansi-reparationer-process-glow-top {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -10%;
  left: 20%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-process-accent-left {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  bottom: 20%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-process-accent-right {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationer-process-content {
  position: relative;
  z-index: 10;
}

.certifiering-garansi-reparationer-process-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.certifiering-garansi-reparationer-process-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.certifiering-garansi-reparationer-process-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.certifiering-garansi-reparationer-step-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.35s ease;
}

.certifiering-garansi-reparationer-step-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(4px);
}

.certifiering-garansi-reparationer-step-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.certifiering-garansi-reparationer-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.certifiering-garansi-reparationen-step-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  font-weight: 700;
}

.certifiering-garansi-reparationen-step-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.certifiering-garansi-reparationen-knowledge-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationen-knowledge-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  top: 20%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-knowledge-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 5%;
  left: 3%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-knowledge-content {
  position: relative;
  z-index: 10;
}

.certifiering-garansi-reparationen-knowledge-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.certifiering-garansi-reparationen-knowledge-intro {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.certifiering-garansi-reparationen-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.certifiering-garansi-reparationen-knowledge-item {
  background: var(--color-bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s ease;
}

.certifiering-garansi-reparationen-knowledge-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.certifiering-garansi-reparationen-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.certifiering-garansi-reparationen-item-title {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
}

.certifiering-garansi-reparationen-item-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.certifiering-garansi-reparationen-knowledge-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(300px, 50vw, 450px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.certifiering-garansi-reparationen-knowledge-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.certifiering-garansi-reparationen-conclusion-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationen-conclusion-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-conclusion-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  bottom: 10%;
  right: -5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-conclusion-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-conclusion-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.certifiering-garansi-reparationen-conclusion-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.certifiering-garansi-reparationen-conclusion-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.certifiering-garansi-reparationen-cta-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.certifiering-garansi-reparationen-cta-title {
  color: #000000;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}

.certifiering-garansi-reparationen-cta-text {
  color: rgba(0, 0, 0, 0.85);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.certifiering-garansi-reparationen-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.certifiering-garansi-reparationen-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.certifiering-garansi-reparationen-disclaimer-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationen-disclaimer-box {
  position: relative;
  z-index: 10;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.certifiering-garansi-reparationen-disclaimer-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.certifiering-garansi-reparationen-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.certifiering-garansi-reparationen-disclaimer-title {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
}

.certifiering-garansi-reparationen-disclaimer-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
}

.certifiering-garansi-reparationen-related-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.certifiering-garansi-reparationen-related-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: 20%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-related-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 5%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.certifiering-garansi-reparationen-related-content {
  position: relative;
  z-index: 10;
}

.certifiering-garansi-reparationen-related-title {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.certifiering-garansi-reparationen-related-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.certifiering-garansi-reparationen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.certifiering-garansi-reparationen-related-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.certifiering-garansi-reparationen-related-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.certifiering-garansi-reparationen-related-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.certifiering-garansi-reparationen-related-card-title {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.3;
  font-weight: 700;
}

.certifiering-garansi-reparationen-related-card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
  flex-grow: 1;
}

.certifiering-garansi-reparationen-related-card-arrow {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  transition: all 0.3s ease;
}

.certifiering-garansi-reparationen-related-card:hover .certifiering-garansi-reparationen-related-card-arrow {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .certifiering-garansi-reparationer-hero-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .certifiering-garansi-reparationer-standards-section {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .certifiering-garansi-reparationer-process-section {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

@media (max-width: 767px) {
  .certifiering-garansi-reparationen-disclaimer-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .certifiering-garansi-reparationen-disclaimer-icon {
    margin-top: 0;
  }

  .certifiering-garansi-reparationen-knowledge-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(15deg);
  }
  50% {
    transform: translateY(-15px) rotate(15deg);
  }
}

.watchcare-premium {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

.heritage-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.heritage-corner-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  bottom: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.heritage-float-element {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  top: 15%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-8deg);
}

.heritage-deco-line {
  position: absolute;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.25), transparent);
  bottom: 20%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.heritage-hero-content {
  position: relative;
  z-index: 10;
}

.heritage-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.heritage-hero p {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.heritage-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
}

.heritage-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.heritage-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.heritage-stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heritage-hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  border-radius: var(--radius-lg);
  display: block;
}

.expertise-section {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.expertise-colored-field {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  top: 10%;
  left: -50px;
  z-index: 1;
  pointer-events: none;
}

.expertise-organic-shape {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 5%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.expertise-accent-dot {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.expertise-content {
  position: relative;
  z-index: 10;
}

.expertise-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.expertise-tag {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expertise-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.expertise-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.expertise-card {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.expertise-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.expertise-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.expertise-card p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.craft-philosophy {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.craft-glow-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.11) 0%, transparent 70%);
  filter: blur(75px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.craft-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  filter: blur(60px);
  bottom: 10%;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.craft-panel {
  position: absolute;
  width: 220px;
  height: 160px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  bottom: 20%;
  right: 12%;
  z-index: 2;
  pointer-events: none;
  transform: rotate(6deg);
}

.craft-content {
  position: relative;
  z-index: 10;
}

.craft-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.craft-intro {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 750px;
  margin-bottom: 2.5rem;
}

.craft-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.craft-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.craft-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.craft-step-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.craft-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.craft-step-description {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
}

.commitment-section {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-field {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(85px);
  top: -150px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.commitment-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -80px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.commitment-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

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

.commitment-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.commitment-text p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.commitment-text p:last-of-type {
  margin-bottom: 0;
}

.commitment-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.commitment-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.commitment-check {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.commitment-highlight-text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.commitment-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.featured-quote-block {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.featured-quote-block p {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  margin: 0;
}

.featured-quote-block cite {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.disclaimer-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  top: 20%;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.disclaimer-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.disclaimer-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.disclaimer-content p {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .heritage-hero {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .craft-philosophy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .commitment-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 767px) {
  .heritage-float-element {
    display: none;
  }

  .craft-panel {
    display: none;
  }

  .expertise-card {
    padding: 1.25rem;
  }
}

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

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

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

.legal-docs-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.legal-docs .update-date {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: block;
}

.legal-docs section {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

.legal-docs h2:first-child {
  margin-top: 0;
}

.legal-docs p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-docs ul,
.legal-docs ol {
  margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.legal-docs li {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.6;
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .contact-section {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.legal-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .legal-docs-content {
    padding: clamp(3rem, 7vw, 5rem) 0;
  }

  .legal-docs section {
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
  }
}

@media (min-width: 1024px) {
  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs section {
    margin-bottom: 5rem;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-hero-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.thank-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.success-icon-wrapper {
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  animation: icon-scale 0.6s ease-out;
}

.success-icon-wrapper i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

@keyframes icon-scale {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.thank-confirmation-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.confirmation-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 700px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.confirmation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 100%, 300px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.detail-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.detail-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.closing-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 700px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-top: clamp(1rem, 2vw, 2rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

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

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

@media (min-width: 768px) {
  .thank-hero-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
  }

  .thank-confirmation-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .confirmation-details {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-item {
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-hero-section {
    padding: 8rem 0;
  }

  .thank-confirmation-section {
    padding: 8rem 0;
  }

  .thank-hero-content {
    gap: 3rem;
  }

  .success-icon-wrapper {
    width: 140px;
    height: 140px;
  }

  .success-icon-wrapper i {
    font-size: 4.5rem;
  }

  .confirmation-details {
    gap: 3rem;
  }

  .detail-item {
    padding: 2.5rem;
  }

  .btn {
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
  }

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

@media (min-width: 1440px) {
  .thank-hero-section {
    padding: 10rem 0;
  }

  .thank-confirmation-section {
    padding: 10rem 0;
  }

  .thank-hero-section h1 {
    font-size: 3.75rem;
  }

  .thank-lead {
    font-size: 1.25rem;
  }

  .thank-confirmation-section h2 {
    font-size: 2.75rem;
  }

  .confirmation-text,
  .closing-text {
    font-size: 1.0625rem;
  }

  .detail-item p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon-wrapper {
    animation: none;
  }

  .detail-item,
  .btn {
    transition: none;
  }
}

.error-page {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.error-hero-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.error-illustration {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-broken {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-face {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 4px solid var(--color-primary);
  position: relative;
  box-shadow: 
    0 0 30px rgba(245, 158, 11, 0.3),
    inset 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: watch-glow 3s ease-in-out infinite;
}

@keyframes watch-glow {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(245, 158, 11, 0.3),
      inset 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 
      0 0 50px rgba(245, 158, 11, 0.5),
      inset 0 2px 8px rgba(0, 0, 0, 0.5);
  }
}

.watch-crack-1,
.watch-crack-2,
.watch-crack-3 {
  position: absolute;
  background: var(--color-primary);
  opacity: 0.7;
}

.watch-crack-1 {
  width: 3px;
  height: 50px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.watch-crack-2 {
  width: 2px;
  height: 45px;
  top: 30px;
  right: 25px;
  transform: rotate(25deg);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.watch-crack-3 {
  width: 2px;
  height: 40px;
  bottom: 25px;
  left: 30px;
  transform: rotate(-35deg);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.hand {
  position: absolute;
  background: var(--color-text-primary);
  transform-origin: center;
  left: 50%;
  top: 50%;
  border-radius: 2px;
}

.hand-hour {
  width: 4px;
  height: 40px;
  margin-left: -2px;
  margin-top: -40px;
  transform: translateX(-50%) rotate(45deg);
  animation: hand-rotate-hour 12s linear infinite;
}

.hand-minute {
  width: 3px;
  height: 55px;
  margin-left: -1.5px;
  margin-top: -55px;
  transform: translateX(-50%) rotate(120deg);
  animation: hand-rotate-minute 2s linear infinite;
}

@keyframes hand-rotate-hour {
  from { transform: translateX(-50%) rotate(45deg); }
  to { transform: translateX(-50%) rotate(405deg); }
}

@keyframes hand-rotate-minute {
  from { transform: translateX(-50%) rotate(120deg); }
  to { transform: translateX(-50%) rotate(480deg); }
}

.center-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.watch-band-left,
.watch-band-right {
  position: absolute;
  background: linear-gradient(90deg, #1a1f35 0%, #0f1425 100%);
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 4px;
}

.watch-band-left {
  width: 30px;
  height: 60px;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  animation: band-wobble-left 2s ease-in-out infinite;
}

.watch-band-right {
  width: 30px;
  height: 60px;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  animation: band-wobble-right 2s ease-in-out infinite;
}

@keyframes band-wobble-left {
  0%, 100% { transform: translateY(-50%) rotateZ(-5deg); }
  50% { transform: translateY(-50%) rotateZ(5deg); }
}

@keyframes band-wobble-right {
  0%, 100% { transform: translateY(-50%) rotateZ(5deg); }
  50% { transform: translateY(-50%) rotateZ(-5deg); }
}

.floating-tools {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tool {
  position: absolute;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-primary);
  animation: float-tool 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

.tool-1 {
  top: -10px;
  left: 10px;
  animation-delay: 0s;
}

.tool-2 {
  top: 50px;
  right: 5px;
  animation-delay: 1s;
}

.tool-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

@keyframes float-tool {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.error-content {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
  font-family: var(--font-heading);
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.error-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.error-message {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}

.error-message p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.btn-large {
  display: inline-block;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

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

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

.error-suggestions-content {
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.suggestions-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-align: center;
  margin: 0 0 3rem 0;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.suggestions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
}

.suggestion-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.suggestion-card:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.suggestion-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
}

.suggestion-card h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.suggestion-card p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.error-footer-message {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.5rem);
  background: rgba(245, 158, 11, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.error-footer-message p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .error-hero-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .error-hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }

  .error-illustration {
    flex: 0 0 auto;
    width: 350px;
    height: 350px;
  }

  .error-content {
    text-align: left;
    flex: 1;
  }

  .error-title {
    margin-bottom: 1.5rem;
  }

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

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

  .error-suggestions-section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .error-hero-section {
    padding: 8rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-illustration {
    width: 400px;
    height: 400px;
  }

  .error-suggestions-section {
    padding: 6rem 0;
  }
}

@media (min-width: 1440px) {
  .error-hero-content {
    gap: 4rem;
  }

  .error-illustration {
    width: 450px;
    height: 450px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .watch-glow,
  .hand-rotate-hour,
  .hand-rotate-minute,
  .band-wobble-left,
  .band-wobble-right,
  .float-tool {
    animation: none;
  }

  .btn-large,
  .suggestion-card {
    transition: none;
  }
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.header-chrono-vault-mobile-toggle[aria-expanded="true"]{
  display: none !important;
}