/* ==========================================================================
   WebForCheap Design System - Dark Confidence
   A premium dark theme with electric cyan accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Core Palette */
  --color-bg: #0A0E14;
  --color-bg-deep: #050709;
  --color-surface: #151A23;
  --color-border: #1E242F;
  --color-border-subtle: rgba(30, 36, 47, 0.5);

  /* Primary Accent - Electric Cyan */
  --color-primary: #00D9FF;
  --color-primary-dark: #0091FF;
  --color-primary-light: #33E3FF;
  --color-primary-glow: rgba(0, 217, 255, 0.3);
  --color-primary-glow-intense: rgba(0, 217, 255, 0.5);

  /* Secondary Accents */
  --color-secondary: #8B5CF6;
  --color-accent: #F72585;

  /* Text Colors */
  --color-text: #F8FAFC;
  --color-text-secondary: #94A3B8;
  --color-text-muted: #64748B;

  /* Semantic Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #0091FF 100%);
  --gradient-hero:
    radial-gradient(ellipse at top right, rgba(0, 217, 255, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.15), transparent 50%);
  --gradient-subtle: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);

  /* Shadows */
  --shadow-subtle: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-default: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 10px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 4px 24px rgba(0, 217, 255, 0.3);
  --shadow-glow-intense: 0 8px 32px rgba(0, 217, 255, 0.4);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;
  --space-12: 200px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1200px;
  --max-width-prose: 720px;
  --gutter: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-default: 0.3s ease;
  --transition-slow: 0.6s ease-out;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

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

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

/* Hero Headline - The Big Statement */
.text-hero {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Page Title */
.text-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Section Headings */
.text-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

/* Subsection Headings */
.text-h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

/* Minor Headings */
.text-h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

/* Large Body Text */
.text-large {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}

/* Default Body */
.text-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
}

/* Small Text */
.text-small {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* Caption */
.text-caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* Accent Text - Cyan Highlight */
.text-accent {
  color: var(--color-primary);
  font-weight: 700;
}

/* Secondary Text */
.text-secondary {
  color: var(--color-text-secondary);
}

/* Muted Text */
.text-muted {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-7);
    padding-right: var(--space-7);
  }
}

/* Prose Container - Optimal Reading Width */
.container--prose {
  max-width: var(--max-width-prose);
}

/* Section */
.section {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--space-11);
    padding-bottom: var(--space-11);
  }
}

/* Alternate Section Background */
.section--surface {
  background-color: var(--color-surface);
}

/* Section with Decorative Blob */
.section--decorated {
  position: relative;
  overflow: hidden;
}

.section__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  opacity: 0.2;
  pointer-events: none;
  filter: blur(40px);
}

.section__blob--top-right {
  top: -200px;
  right: -200px;
}

.section__blob--bottom-left {
  bottom: -200px;
  left: -200px;
}

/* --------------------------------------------------------------------------
   Grid System
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: var(--gutter);
}

/* 2-Column Grid */
.grid--2 {
  grid-template-columns: 1fr;
}

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

/* 3-Column Grid */
.grid--3 {
  grid-template-columns: 1fr;
}

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

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

/* 4-Column Grid */
.grid--4 {
  grid-template-columns: 1fr;
}

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

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

/* 5-Column Grid */
.grid--5 {
  grid-template-columns: 1fr;
}

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

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

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

/* 2-Column Asymmetric Grid (60/40 split) */
.grid--2-asymmetric {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2-asymmetric {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .grid--2-asymmetric.grid--reverse {
    grid-template-columns: 1fr 1.2fr;
  }

  .grid--2-asymmetric.grid--reverse > :first-child {
    order: 2;
  }

  .grid--2-asymmetric.grid--reverse > :last-child {
    order: 1;
  }
}

/* Two-Column Content Layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background-color: transparent;
  transition: background-color var(--transition-default), backdrop-filter var(--transition-default);
}

.nav--scrolled {
  background-color: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .nav__inner {
    padding: 0 var(--space-5);
  }
}

@media (min-width: 1024px) {
  .nav__inner {
    padding: 0 var(--space-7);
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 20px;
  width: auto;
}

.nav__logo:hover {
  opacity: 0.9;
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link--active {
  position: relative;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: block;
  }
}

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

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-surface);
  padding: var(--space-8) var(--space-5);
  transition: right var(--transition-default);
  z-index: 1001;
}

.nav__mobile--open {
  right: 0;
}

.nav__mobile-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2);
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 24px;
  cursor: pointer;
}

.nav__mobile-links {
  list-style: none;
  margin-top: var(--space-8);
}

.nav__mobile-link {
  display: block;
  padding: var(--space-4) 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-default), visibility var(--transition-default);
  z-index: 1000;
}

.nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--space-9);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero__background-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  opacity: 0.85;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,1) 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,1) 50%);
}

.hero__background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to right, var(--color-bg) 0%, var(--color-bg) 35%, transparent 65%),
    var(--gradient-hero);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

.hero__content {
  max-width: 640px;
}

.hero__video {
  display: none;
}

@media (min-width: 1024px) {
  .hero__video {
    display: block;
  }
}

.hero__headline {
  margin-bottom: var(--space-5);
}

.hero__subheadline {
  margin-bottom: var(--space-7);
  color: var(--color-text-secondary);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.video-trigger-mobile {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.video-trigger-mobile svg {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .video-trigger-mobile,
  .btn.video-trigger-mobile {
    display: none;
  }
}

.hero__price {
  margin-top: var(--space-6);
}

.hero__price-text {
  font-size: 16px;
  color: var(--color-text-secondary);
}

.hero__price-amount {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-tertiary);
}

/* Hero Services Links */
.hero__services {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.hero__services--desktop {
  display: none;
}

.hero__services--mobile {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .hero__services--desktop {
    display: flex;
    justify-content: center;
  }

  .hero__services--mobile {
    display: none;
  }
}

.hero__service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background-color: rgba(0, 217, 255, 0.05);
  transition: all var(--transition-fast);
}

.hero__service-link:hover {
  background-color: rgba(0, 217, 255, 0.1);
  border-color: var(--color-primary);
}

/* Interior Page Header */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-9);
  overflow: hidden;
}

.page-header__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero), var(--color-bg);
  z-index: -1;
}

.page-header__content {
  text-align: center;
  width: 100%;
}

.page-header__title {
  margin-bottom: var(--space-4);
}

.page-header__subtitle {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Video Embed
   -------------------------------------------------------------------------- */

.video-embed {
  position: relative;
}

.video-embed__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-elevated);
}

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

.video-embed__glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
  transition: opacity var(--transition-default);
}

.video-embed:hover .video-embed__glow {
  opacity: 0.6;
}

/* Video Trigger Button */
.video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.video-trigger__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
}

.video-trigger__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-default);
}

.video-trigger:hover .video-trigger__image {
  transform: scale(1.05);
}

.video-trigger__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 20, 0.4);
  transition: background var(--transition-default);
}

.video-trigger:hover .video-trigger__overlay {
  background: rgba(10, 14, 20, 0.2);
}

.video-trigger__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-text);
  transition: transform var(--transition-default), color var(--transition-default);
}

.video-trigger:hover .video-trigger__play {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--color-primary);
}

.video-trigger__glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
  transition: opacity var(--transition-default);
}

.video-trigger:hover .video-trigger__glow {
  opacity: 0.5;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-default), visibility var(--transition-default);
}

.video-modal--open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}

.video-modal__container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  transform: scale(0.9);
  transition: transform var(--transition-default);
}

.video-modal--open .video-modal__container {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 32px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.video-modal__close:hover {
  color: var(--color-primary);
}

.video-modal__content {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-modal__content iframe,
.video-modal__content video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
  background: #000;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

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

/* Primary Button - Gradient with Glow */
.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
  color: var(--color-bg);
}

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

/* Secondary Button - Outline */
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-primary);
}

/* Ghost Button - Text Only */
.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
}

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

.btn--ghost .btn__arrow {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover .btn__arrow {
  transform: translateX(4px);
}

/* Button Sizes */
.btn--small {
  padding: var(--space-3) var(--space-4);
  font-size: 16px;
}

.btn--large {
  padding: var(--space-5) var(--space-7);
  font-size: 20px;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

/* Base Card */
.card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  transition: border-color var(--transition-default), box-shadow var(--transition-default);
}

.card:hover {
  border-color: rgba(0, 217, 255, 0.5);
}

/* Clickable Card */
.card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* Feature Card */
.card--feature {
  text-align: left;
}

.card--feature > h3,
.card--feature > .text-h4 {
  text-align: center;
}

.card--feature > div:last-child {
  text-align: center;
}

.card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-5);
}

/* Large icon variant for split layouts */
.card__icon--large {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

/* Pricing Card */
.card--pricing {
  display: flex;
  flex-direction: column;
}

.card__price {
  margin-bottom: var(--space-5);
}

.card__price-amount {
  display: inline-block;
  white-space: nowrap;
}

.card__price-symbol {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  vertical-align: top;
}

.card__price-value {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
}

.card__price-period {
  font-size: 18px;
  color: var(--color-text-secondary);
}

.card__features {
  list-style: none;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.card__feature:last-child {
  border-bottom: none;
}

.card__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

/* Testimonial Card */
.card--testimonial {
  position: relative;
}

.card__quote {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.card__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.5;
  line-height: 0;
  margin-right: var(--space-1);
}

.card__author {
  font-weight: 600;
  color: var(--color-text);
}

.card__role {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Lists
   -------------------------------------------------------------------------- */

/* Checkmark List */
.list--check {
  list-style: none;
}

.list--check li {
  position: relative;
  padding-left: 36px;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.list--check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--space-2);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D9FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* X List (for prohibited items) */
.list--x {
  list-style: none;
}

.list--x li {
  position: relative;
  padding-left: 36px;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.list--x li::before,
.article__content .list--x li::before,
.article__content .card .list--x li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: var(--space-2) !important;
  width: 24px !important;
  height: 24px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-top: 2px !important;
}

/* Numbered List */
.list--numbered {
  list-style: none;
  counter-reset: list-counter;
}

.list--numbered li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  counter-increment: list-counter;
}

.list--numbered li::before {
  content: counter(list-counter);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-full);
}

/* Feature List - Title + Description pairs */
.list--feature {
  list-style: none;
}

.list--feature li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.list--feature li:last-child {
  border-bottom: none;
}

.list--feature li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D9FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.list--feature li strong {
  display: block;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.list--feature li span {
  display: block;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

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

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

.form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__hint {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Form Row - Side by Side Fields */
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

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

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding: var(--space-9) 0;
  text-align: center;
  overflow: hidden;
}

.cta-band__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cta-band__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-band__content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-band__headline {
  margin-bottom: var(--space-4);
}

.cta-band__subheadline {
  margin-bottom: var(--space-6);
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   Blockquote
   -------------------------------------------------------------------------- */

.blockquote {
  padding-left: var(--space-6);
  border-left: 4px solid var(--color-primary);
}

.blockquote__text {
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.blockquote__author {
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   Showcase Gallery
   -------------------------------------------------------------------------- */

.showcase {
  padding-top: var(--space-7);
  padding-bottom: var(--space-9);
}

@media (min-width: 768px) {
  .showcase {
    padding-top: var(--space-8);
    padding-bottom: var(--space-10);
  }
}

.showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  max-width: var(--max-width);
  margin: 0 auto var(--space-8);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .showcase__header {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .showcase__header {
    padding-left: var(--space-7);
    padding-right: var(--space-7);
  }
}

.showcase__scroll {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  padding-bottom: var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase__scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .showcase__scroll {
    padding-left: calc((100vw - var(--max-width)) / 2 + var(--space-5));
    padding-right: calc((100vw - var(--max-width)) / 2 + var(--space-5));
  }
}

@media (min-width: 1024px) {
  .showcase__scroll {
    padding-left: calc((100vw - var(--max-width)) / 2 + var(--space-7));
    padding-right: calc((100vw - var(--max-width)) / 2 + var(--space-7));
  }
}

.showcase__item {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  transition: border-color var(--transition-default), box-shadow var(--transition-default), transform var(--transition-default);
}

@media (min-width: 768px) {
  .showcase__item {
    width: 350px;
  }
}

@media (min-width: 1024px) {
  .showcase__item {
    width: 400px;
  }
}

.showcase__item:hover {
  border-color: var(--color-primary-glow-intense);
  box-shadow: var(--shadow-default);
  transform: translateY(-4px);
}

.showcase__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}

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

.showcase__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.showcase__type {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat__label {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-top: var(--space-2);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
  padding: var(--space-8) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}

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

.footer__brand {
  max-width: 300px;
}

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

.footer__logo img {
  height: 20px;
  width: auto;
}

.footer__tagline {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.footer__parent {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  padding: var(--space-2) 0;
  font-size: 16px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer__contact-email {
  font-size: 16px;
  color: var(--color-text-secondary);
}

.footer__contact-email a {
  color: var(--color-primary);
}

.footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer__legal {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.footer__legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer__disclaimer {
  font-size: 10px;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

/* Scroll-triggered Fade In */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation Delays */
.animate-stagger > *:nth-child(1) { transition-delay: 0s; }
.animate-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.animate-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.animate-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.animate-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.animate-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Pulse Animation for CTA */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--shadow-glow);
  }
  50% {
    box-shadow: var(--shadow-glow-intense);
  }
}

.animate-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

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

/* --------------------------------------------------------------------------
   Responsive Visibility
   -------------------------------------------------------------------------- */

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

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}

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

/* --------------------------------------------------------------------------
   Blog Styles
   -------------------------------------------------------------------------- */

/* Blog Post Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-default), box-shadow var(--transition-default), transform var(--transition-default);
}

.blog-card:hover {
  border-color: rgba(0, 217, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card__content {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 14px;
  color: var(--color-text-muted);
}

.blog-card__category {
  color: var(--color-primary);
  font-weight: 500;
}

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

.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.blog-card__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}

.blog-card__link:hover {
  gap: var(--space-3);
}

/* Blog Article Styles */
.article {
  padding-top: var(--space-10);
  padding-bottom: var(--space-9);
}

.article__header {
  margin-bottom: var(--space-7);
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 14px;
}

.article__category {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.article__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.article__featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}

/* Article Content Typography */
.article__content {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
  max-width: 720px;
}

/* First paragraphs before any heading - make them stand out */
.article__content > p:first-child,
.article__content > p:first-child ~ p:not(h2 ~ p) {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text);
}

.article__content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-9);
  margin-bottom: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.article__content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.article__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.article__content p {
  margin-bottom: var(--space-6);
  color: var(--color-text-secondary);
}

.article__content p strong {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.article__content ul,
.article__content ol {
  margin-bottom: var(--space-6);
  margin-top: var(--space-4);
  padding-left: var(--space-6);
  list-style: none;
}

.article__content li {
  position: relative;
  padding-left: 32px;
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  line-height: 1.7;
}

.article__content ul:not(.list--check):not(.list--x) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--space-2);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D9FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 4px;
}

/* Override article li styles for styled lists */
.article__content .list--check,
.article__content .list--x {
  padding-left: 0;
}

.article__content .list--x li::before,
.list--x li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
}

.article__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.article__content blockquote {
  margin: var(--space-6) 0;
  padding-left: var(--space-5);
  border-left: 4px solid var(--color-primary);
  font-style: italic;
  color: var(--color-text);
}

.article__content em {
  font-style: italic;
  color: var(--color-text);
}

/* Standalone strong paragraphs (like "Choose WordPress if:") */
.article__content p > strong:only-child {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

/* Blog Navigation */
.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-8);
}

.blog-nav__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.blog-nav__back:hover {
  color: var(--color-primary-light);
  gap: var(--space-4);
}

.blog-nav__back svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

.blog-nav__back img {
  display: none;
}

/* Related Posts */
.related-posts {
  margin-top: var(--space-9);
}

.related-posts__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

/* --------------------------------------------------------------------------
   Showcase Cards (Portfolio)
   -------------------------------------------------------------------------- */

/* Showcase Card Variant */
.card--showcase {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__image-link {
  display: block;
  overflow: hidden;
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-default);
}

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

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

/* Stat Card Variant */
.card--stat {
  text-align: center;
  padding: var(--space-5);
}

.card__stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.card__stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   Inline List (Tags)
   -------------------------------------------------------------------------- */

.list--inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.list--inline li {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background-color: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--color-text-secondary);
}
