/* ================================================
   CORKULOUS REDESIGN - Clean, Balanced, Cork-Focused
   A refined design that celebrates cork while using
   glass effects strategically
   ================================================ */

/* ================================================
   1. HERO SECTION - Clean & Product-Focused
   ================================================ */

.hero-clean {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f3ed 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-clean {
  background: linear-gradient(135deg, #1a1410 0%, #0a0a0a 100%);
}

.hero-clean-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-image {
  position: relative;
}

.device-lineup {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-lineup:hover {
  transform: scale(1.02) translateY(-8px);
}

/* ================================================
   2. CORK BOARD SECTION - The Star of the Show
   ================================================ */

.cork-board-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #d4a574 0%, #c49563 100%);
  position: relative;
  overflow: hidden;
}

/* Cork texture overlay */
.cork-board-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cork-texture);
  opacity: 0.6;
  pointer-events: none;
}

[data-theme="dark"] .cork-board-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #7d5a35 0%, #5c3d22 100%);
}

.cork-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

/* Pinned Card - Looks like paper pinned to cork */
.pinned-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(0deg);
}

.pinned-card:nth-child(even) {
  transform: rotate(1deg);
}

.pinned-card:nth-child(odd) {
  transform: rotate(-0.5deg);
}

.pinned-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .pinned-card {
  background: #1a1a1a;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Pin graphic at top of card */
.pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle at 30% 30%, #ff6b6b, #d32f2f);
  border-radius: 50%;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.pin::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.card-content {
  position: relative;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-icon i {
  font-size: 28px;
  color: white;
}

.pinned-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pinned-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Feature tags */
.feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.5rem 1rem;
  background: var(--cork-100);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cork-700);
  border: 1px solid var(--cork-300);
}

[data-theme="dark"] .tag {
  background: var(--cork-800);
  color: var(--cork-200);
  border-color: var(--cork-700);
}

/* Drawing tools */
.drawing-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--neutral-300);
}

[data-theme="dark"] .tool-item {
  background: var(--neutral-800);
  border-color: var(--neutral-700);
}

.tool-item i {
  font-size: 1.5rem;
  color: var(--glass-purple-500);
}

.tool-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Platform icons */
.platform-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.platform-icons i {
  font-size: 2rem;
  color: var(--glass-blue-500);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.platform-icons i:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.list-item i {
  color: var(--accent);
  font-size: 0.875rem;
}

/* ================================================
   3. VIDEO SECTION - Clean & Simple
   ================================================ */

.video-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--neutral-200);
}

[data-theme="dark"] .video-wrapper {
  border-color: var(--neutral-800);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

/* ================================================
   4. BLOG SECTION - Clean Cards
   ================================================ */

.blog-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #d4a574 0%, #c49563 100%);
  position: relative;
  overflow: hidden;
}

/* Cork texture overlay */
.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cork-texture);
  opacity: 0.6;
  pointer-events: none;
}

[data-theme="dark"] .blog-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #7d5a35 0%, #5c3d22 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(0deg);
  text-decoration: none;
  color: inherit;
}

.blog-card:nth-child(even) {
  transform: rotate(1deg);
}

.blog-card:nth-child(odd) {
  transform: rotate(-0.5deg);
}

[data-theme="dark"] .blog-card {
  background: #1a1a1a;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 0;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ================================================
   5. CTA SECTION - Simple & Effective
   ================================================ */

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--brand-red-500), var(--brand-red-600));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* ================================================
   6. SECTION HEADERS - Consistent Styling
   ================================================ */

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   7. RESPONSIVE DESIGN
   ================================================ */

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

  .hero-image {
    order: -1;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-clean {
    padding: 80px 0 60px;
  }

  .cork-board-section {
    padding: 60px 0;
  }

  .cork-board {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-section,
  .blog-section {
    padding: 60px 0;
  }

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

  .cta-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-clean {
    padding: 60px 0 40px;
  }

  .cork-board-section {
    padding: 40px 0;
  }

  .pinned-card {
    padding: 1.5rem;
  }

  .drawing-tools {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 0;
  }
}

/* ================================================
   8. DARK MODE SPECIFIC ADJUSTMENTS
   ================================================ */

[data-theme="dark"] .hero-title {
  color: var(--text-primary);
}

[data-theme="dark"] .section-title {
  color: var(--text-primary);
}

/* Ensure all text is readable on cork background in dark mode */
[data-theme="dark"] .cork-board-section .section-title,
[data-theme="dark"] .cork-board-section .section-subtitle {
  color: var(--cork-100);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ================================================
   9. ACCESSIBILITY & MOTION
   ================================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .device-lineup:hover,
  .pinned-card:hover,
  .blog-card:hover {
    transform: none;
  }
}

/* Focus states for keyboard navigation */
.btn-premium:focus-visible,
.blog-card:focus-visible {
  outline: 3px solid var(--brand-red-500);
  outline-offset: 4px;
}

/* ================================================
   10. PAGE HEADER - Clean Headers for All Pages
   ================================================ */

.page-header-clean {
  padding: 100px 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--neutral-200);
}

[data-theme="dark"] .page-header-clean {
  border-bottom-color: var(--neutral-800);
}

.page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-header-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   11. ARTICLE PAGE STYLES
   ================================================ */

.article-header {
  padding: 100px 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--neutral-200);
}

[data-theme="dark"] .article-header {
  border-bottom-color: var(--neutral-800);
}

.article-header-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--brand-red-500);
  transform: translateX(-4px);
}

.article-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
}

.article-featured-image {
  margin-bottom: 3rem;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  max-height: 500px;
}

.article-content-card {
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .article-content-card {
  border-color: var(--neutral-800);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.article-abstract {
  background: var(--bg-secondary);
  border-left: 4px solid var(--brand-red-500);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Article body typography */
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.article-body h1 {
  font-size: 2.5rem;
}

.article-body h2 {
  font-size: 2rem;
}

.article-body h3 {
  font-size: 1.625rem;
}

.article-body h4 {
  font-size: 1.375rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body a {
  color: var(--brand-red-500);
  text-decoration: underline;
  text-decoration-color: rgba(255, 79, 90, 0.3);
  text-underline-offset: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.article-body a:hover {
  color: var(--glass-purple-500);
  text-decoration-color: rgba(132, 94, 247, 0.5);
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}

.article-body li {
  margin-bottom: 0.75rem;
}

.article-body code {
  background: var(--bg-secondary);
  color: var(--brand-red-500);
  padding: 0.2em 0.5em;
  border-radius: 6px;
  font-size: 0.9em;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.article-body pre {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 16px;
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--neutral-200);
}

[data-theme="dark"] .article-body pre {
  border-color: var(--neutral-800);
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
  text-align: center;
}

[data-theme="dark"] .article-footer {
  border-top-color: var(--neutral-800);
}

/* ================================================
   12. PAGE CONTENT STYLES (Documentation, etc.)
   ================================================ */

.page-content-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.page-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-content-card {
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .page-content-card {
  border-color: var(--neutral-800);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Reuse article body styles for page content */
.page-content-card h1,
.page-content-card h2,
.page-content-card h3,
.page-content-card h4,
.page-content-card h5,
.page-content-card h6 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.page-content-card h1 {
  font-size: 2.5rem;
}

.page-content-card h2 {
  font-size: 2rem;
}

.page-content-card h3 {
  font-size: 1.625rem;
}

.page-content-card h4 {
  font-size: 1.375rem;
}

.page-content-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.page-content-card a {
  color: var(--brand-red-500);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-content-card a:hover {
  color: var(--glass-purple-500);
}

.page-content-card ul,
.page-content-card ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}

.page-content-card li {
  margin-bottom: 0.75rem;
}

.page-content-card img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ================================================
   13. CONTACT FORM STYLES
   ================================================ */

.contact-form-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .contact-form-card {
  border-color: var(--neutral-800);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-error {
  color: var(--brand-red-600);
  background: rgba(255, 79, 90, 0.1);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--brand-red-300);
}

.contact-info-box {
  background: var(--bg-secondary);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

[data-theme="dark"] .contact-info-box {
  border-color: var(--neutral-800);
}

.contact-info-box p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.contact-info-box a {
  color: var(--brand-red-500);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

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

.form-checkbox-row {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.form-checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 500;
}

.form-checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--brand-red-500);
}

.captcha-reload {
  display: inline-block;
  margin: 0.75rem 0 1.5rem;
  color: var(--brand-red-500);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.captcha-reload:hover {
  text-decoration: underline;
}

#captcha {
  margin: 0.75rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--neutral-300);
}

[data-theme="dark"] #captcha {
  border-color: var(--neutral-700);
}

.w-100 {
  width: 100%;
}

/* ================================================
   14. EMPTY STATE
   ================================================ */

.empty-state {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-radius: 24px;
  border: 1px solid var(--neutral-200);
}

[data-theme="dark"] .empty-state {
  border-color: var(--neutral-800);
}

.empty-state i {
  font-size: 4rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.empty-state p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ================================================
   15. RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {

  .page-header-clean,
  .article-header {
    padding: 60px 0 40px;
  }

  .article-content-card,
  .page-content-card,
  .contact-form-card {
    padding: 2rem;
  }

  .article-body,
  .page-content-card p,
  .page-content-card ul,
  .page-content-card ol {
    font-size: 1rem;
  }

  .article-body h1,
  .page-content-card h1 {
    font-size: 2rem;
  }

  .article-body h2,
  .page-content-card h2 {
    font-size: 1.75rem;
  }

  .article-body h3,
  .page-content-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {

  .article-content-card,
  .page-content-card,
  .contact-form-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .page-header-clean,
  .article-header {
    padding: 40px 0 30px;
  }
}
/* ================================================
   HERO LIQUID REDESIGN
   ================================================ */

.hero-liquid {
  padding: 140px 0 100px;
  background: radial-gradient(circle at top right, #fff5f5 0%, #fff 40%, #f8f3ed 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-liquid {
  background: radial-gradient(circle at top right, #2a1a1a 0%, #1a1a1a 40%, #0a0a0a 100%);
}

/* Liquid background blobs */
.hero-liquid::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 79, 90, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  animation: liquid-pulse 10s ease-in-out infinite alternate;
}

.hero-liquid::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(132, 94, 247, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  animation: liquid-pulse 15s ease-in-out infinite alternate-reverse;
}

@keyframes liquid-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.hero-liquid-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-red-500), #845ef7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.liquid-animate {
  animation: float-liquid 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
  max-width: 100%;
  height: auto;
}

[data-theme="dark"] .liquid-animate {
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-liquid-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-liquid {
    padding: 100px 0 60px;
  }
  
  .hero-text {
    margin: 0 auto;
  }
}
